From 5621fed11a1c3071c0e8f96ae2e559ad4dcacbe2 Mon Sep 17 00:00:00 2001 From: Vishal Date: Mon, 29 Jul 2024 18:50:48 +0530 Subject: [PATCH 1/3] Added Various Different Schemas remaining Signed-off-by: Vishal --- grammar.js | 5 + src/grammar.json | 29 + src/node-types.json | 10 + src/parser.c | 140736 +++++++++++++++++++------------------- test/corpus/schema.txt | 26 +- 5 files changed, 71002 insertions(+), 69804 deletions(-) diff --git a/grammar.js b/grammar.js index 31ad6df..993db44 100644 --- a/grammar.js +++ b/grammar.js @@ -424,6 +424,11 @@ module.exports = grammar({ schema_statement: $ => prec.left(seq( 'schema', field('name', $.parameter), + optional(seq( + '(', + field('base', $.identifier), + ')' + )), ':', field('body', $._suite), )), diff --git a/src/grammar.json b/src/grammar.json index fd42e9b..67aa4dd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -962,6 +962,35 @@ "name": "parameter" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "base", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": ":" diff --git a/src/node-types.json b/src/node-types.json index bf0e1cc..fb8242b 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2074,6 +2074,16 @@ "type": "schema_statement", "named": true, "fields": { + "base": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, "body": { "multiple": false, "required": true, diff --git a/src/parser.c b/src/parser.c index fba565f..cbf9191 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3296 -#define LARGE_STATE_COUNT 195 +#define STATE_COUNT 3318 +#define LARGE_STATE_COUNT 199 #define SYMBOL_COUNT 227 #define ALIAS_COUNT 3 #define TOKEN_COUNT 114 #define EXTERNAL_TOKEN_COUNT 11 -#define FIELD_COUNT 42 +#define FIELD_COUNT 43 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 83 +#define PRODUCTION_ID_COUNT 85 enum { sym_identifier = 1, @@ -1647,42 +1647,43 @@ enum { field_arguments = 4, field_attr_alias = 5, field_attribute = 6, - field_body = 7, - field_condition = 8, - field_consequence = 9, - field_constructor = 10, - field_default = 11, - field_definition = 12, - field_dictionary_or_list = 13, - field_dotted_name = 14, - field_error_message = 15, - field_expr1 = 16, - field_expr2 = 17, - field_function = 18, - field_identifier = 19, - field_index = 20, - field_initialization = 21, - field_integer = 22, - field_is_mutable = 23, - field_key = 24, - field_key_type = 25, - field_left = 26, - field_name = 27, - field_object = 28, - field_operand_name = 29, - field_operator = 30, - field_operators = 31, - field_parameters = 32, - field_protocol = 33, - field_quant_op = 34, - field_quant_target = 35, - field_return_type = 36, - field_right = 37, - field_string = 38, - field_subscript = 39, - field_type = 40, - field_value = 41, - field_value_type = 42, + field_base = 7, + field_body = 8, + field_condition = 9, + field_consequence = 10, + field_constructor = 11, + field_default = 12, + field_definition = 13, + field_dictionary_or_list = 14, + field_dotted_name = 15, + field_error_message = 16, + field_expr1 = 17, + field_expr2 = 18, + field_function = 19, + field_identifier = 20, + field_index = 21, + field_initialization = 22, + field_integer = 23, + field_is_mutable = 24, + field_key = 25, + field_key_type = 26, + field_left = 27, + field_name = 28, + field_object = 29, + field_operand_name = 30, + field_operator = 31, + field_operators = 32, + field_parameters = 33, + field_protocol = 34, + field_quant_op = 35, + field_quant_target = 36, + field_return_type = 37, + field_right = 38, + field_string = 39, + field_subscript = 40, + field_type = 41, + field_value = 42, + field_value_type = 43, }; static const char * const ts_field_names[] = { @@ -1693,6 +1694,7 @@ static const char * const ts_field_names[] = { [field_arguments] = "arguments", [field_attr_alias] = "attr_alias", [field_attribute] = "attribute", + [field_base] = "base", [field_body] = "body", [field_condition] = "condition", [field_consequence] = "consequence", @@ -1795,25 +1797,27 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [61] = {.index = 125, .length = 2}, [62] = {.index = 127, .length = 1}, [63] = {.index = 128, .length = 3}, - [64] = {.index = 131, .length = 4}, - [65] = {.index = 135, .length = 2}, - [66] = {.index = 137, .length = 2}, - [67] = {.index = 139, .length = 4}, - [68] = {.index = 143, .length = 2}, - [69] = {.index = 145, .length = 3}, + [64] = {.index = 131, .length = 3}, + [65] = {.index = 134, .length = 4}, + [66] = {.index = 138, .length = 2}, + [67] = {.index = 140, .length = 2}, + [68] = {.index = 142, .length = 4}, + [69] = {.index = 146, .length = 2}, [70] = {.index = 148, .length = 3}, - [71] = {.index = 151, .length = 4}, - [72] = {.index = 155, .length = 5}, - [73] = {.index = 160, .length = 3}, - [74] = {.index = 163, .length = 3}, - [75] = {.index = 166, .length = 5}, - [76] = {.index = 171, .length = 5}, - [77] = {.index = 176, .length = 4}, - [78] = {.index = 180, .length = 6}, - [79] = {.index = 186, .length = 6}, - [80] = {.index = 192, .length = 4}, - [81] = {.index = 196, .length = 6}, - [82] = {.index = 202, .length = 7}, + [71] = {.index = 151, .length = 3}, + [72] = {.index = 154, .length = 4}, + [73] = {.index = 158, .length = 4}, + [74] = {.index = 162, .length = 5}, + [75] = {.index = 167, .length = 3}, + [76] = {.index = 170, .length = 3}, + [77] = {.index = 173, .length = 5}, + [78] = {.index = 178, .length = 5}, + [79] = {.index = 183, .length = 4}, + [80] = {.index = 187, .length = 6}, + [81] = {.index = 193, .length = 6}, + [82] = {.index = 199, .length = 4}, + [83] = {.index = 203, .length = 6}, + [84] = {.index = 209, .length = 7}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2011,95 +2015,104 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 1}, {field_return_type, 3}, [131] = + {field_base, 3}, + {field_body, 6}, + {field_name, 1}, + [134] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_protocol, 3}, - [135] = + [138] = {field_integer, 1}, {field_integer, 2, .inherited = true}, - [137] = + [140] = {field_integer, 0, .inherited = true}, {field_integer, 1, .inherited = true}, - [139] = + [142] = {field_expr1, 5}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, - [143] = + [146] = {field_body, 2}, {field_body, 3}, - [145] = + [148] = {field_attr_alias, 1}, {field_key_type, 3}, {field_value_type, 6}, - [148] = + [151] = {field_default, 6}, {field_key_type, 1}, {field_value_type, 4}, - [151] = + [154] = {field_body, 5}, {field_body, 6}, {field_parameters, 1}, {field_return_type, 3}, - [155] = + [158] = + {field_base, 3}, + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + [162] = {field_dotted_name, 5}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, {field_string, 6}, - [160] = + [167] = {field_default, 7}, {field_key_type, 2}, {field_value_type, 5}, - [163] = + [170] = {field_attr_alias, 1}, {field_key_type, 4}, {field_value_type, 7}, - [166] = + [173] = {field_expr1, 7}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, - [171] = + [178] = {field_expr1, 5}, {field_expr2, 7}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, - [176] = + [183] = {field_attr_alias, 1}, {field_default, 8}, {field_key_type, 3}, {field_value_type, 6}, - [180] = + [187] = {field_dotted_name, 7}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, {field_string, 8}, - [186] = + [193] = {field_dotted_name, 5}, {field_expr2, 8}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, {field_string, 6}, - [192] = + [199] = {field_attr_alias, 1}, {field_default, 9}, {field_key_type, 4}, {field_value_type, 7}, - [196] = + [203] = {field_expr1, 7}, {field_expr2, 9}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, - [202] = + [209] = {field_dotted_name, 7}, {field_expr2, 10}, {field_identifier, 1}, @@ -2150,6 +2163,9 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [63] = { [5] = sym_block, }, + [64] = { + [6] = sym_block, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2166,3299 +2182,3321 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, + [3] = 3, [4] = 4, [5] = 5, - [6] = 2, + [6] = 6, [7] = 2, - [8] = 8, - [9] = 9, - [10] = 8, + [8] = 2, + [9] = 6, + [10] = 10, [11] = 11, [12] = 12, [13] = 2, [14] = 14, - [15] = 8, - [16] = 12, - [17] = 4, - [18] = 8, - [19] = 19, + [15] = 6, + [16] = 6, + [17] = 2, + [18] = 6, + [19] = 6, [20] = 2, - [21] = 8, - [22] = 14, - [23] = 8, - [24] = 11, - [25] = 8, - [26] = 2, + [21] = 4, + [22] = 12, + [23] = 11, + [24] = 6, + [25] = 25, + [26] = 10, [27] = 2, [28] = 2, - [29] = 8, - [30] = 9, - [31] = 19, - [32] = 5, - [33] = 8, - [34] = 34, - [35] = 34, + [29] = 25, + [30] = 3, + [31] = 2, + [32] = 6, + [33] = 5, + [34] = 6, + [35] = 14, [36] = 36, [37] = 37, [38] = 37, - [39] = 37, - [40] = 40, - [41] = 41, + [39] = 39, + [40] = 37, + [41] = 39, [42] = 42, - [43] = 41, + [43] = 43, [44] = 44, [45] = 45, [46] = 46, [47] = 47, - [48] = 44, + [48] = 42, [49] = 49, [50] = 44, [51] = 47, - [52] = 44, - [53] = 47, - [54] = 44, + [52] = 47, + [53] = 45, + [54] = 42, [55] = 55, - [56] = 47, - [57] = 40, + [56] = 42, + [57] = 46, [58] = 47, - [59] = 44, - [60] = 44, + [59] = 55, + [60] = 42, [61] = 61, - [62] = 46, - [63] = 45, - [64] = 44, + [62] = 42, + [63] = 47, + [64] = 47, [65] = 65, - [66] = 47, - [67] = 61, - [68] = 65, - [69] = 47, - [70] = 44, - [71] = 55, - [72] = 49, - [73] = 47, - [74] = 47, - [75] = 42, - [76] = 76, - [77] = 76, - [78] = 78, - [79] = 76, - [80] = 76, - [81] = 76, - [82] = 76, - [83] = 76, - [84] = 76, - [85] = 76, - [86] = 86, - [87] = 86, - [88] = 88, - [89] = 89, - [90] = 88, - [91] = 89, + [66] = 42, + [67] = 43, + [68] = 61, + [69] = 69, + [70] = 70, + [71] = 42, + [72] = 47, + [73] = 42, + [74] = 70, + [75] = 69, + [76] = 47, + [77] = 49, + [78] = 65, + [79] = 47, + [80] = 80, + [81] = 80, + [82] = 82, + [83] = 80, + [84] = 80, + [85] = 80, + [86] = 80, + [87] = 80, + [88] = 80, + [89] = 80, + [90] = 90, + [91] = 90, [92] = 92, - [93] = 92, + [93] = 93, [94] = 94, - [95] = 95, - [96] = 94, + [95] = 94, + [96] = 96, [97] = 94, - [98] = 94, - [99] = 92, - [100] = 88, - [101] = 94, + [98] = 92, + [99] = 93, + [100] = 94, + [101] = 96, [102] = 92, - [103] = 89, - [104] = 88, - [105] = 92, - [106] = 94, - [107] = 88, - [108] = 88, - [109] = 92, - [110] = 88, - [111] = 92, - [112] = 92, - [113] = 89, - [114] = 92, - [115] = 89, - [116] = 94, - [117] = 94, - [118] = 89, - [119] = 88, - [120] = 94, - [121] = 88, - [122] = 122, - [123] = 123, - [124] = 124, - [125] = 125, - [126] = 122, - [127] = 122, - [128] = 123, - [129] = 122, - [130] = 123, - [131] = 123, - [132] = 122, - [133] = 124, - [134] = 124, - [135] = 124, - [136] = 124, - [137] = 124, - [138] = 122, - [139] = 123, - [140] = 122, - [141] = 123, - [142] = 123, - [143] = 122, - [144] = 123, - [145] = 124, - [146] = 122, - [147] = 123, - [148] = 124, - [149] = 124, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 150, - [154] = 151, - [155] = 155, - [156] = 150, - [157] = 155, + [103] = 94, + [104] = 96, + [105] = 94, + [106] = 96, + [107] = 92, + [108] = 96, + [109] = 94, + [110] = 96, + [111] = 96, + [112] = 93, + [113] = 92, + [114] = 96, + [115] = 94, + [116] = 92, + [117] = 93, + [118] = 96, + [119] = 93, + [120] = 92, + [121] = 121, + [122] = 94, + [123] = 92, + [124] = 92, + [125] = 93, + [126] = 126, + [127] = 126, + [128] = 128, + [129] = 129, + [130] = 126, + [131] = 131, + [132] = 128, + [133] = 128, + [134] = 128, + [135] = 128, + [136] = 131, + [137] = 131, + [138] = 126, + [139] = 131, + [140] = 128, + [141] = 131, + [142] = 126, + [143] = 131, + [144] = 128, + [145] = 131, + [146] = 126, + [147] = 131, + [148] = 126, + [149] = 126, + [150] = 128, + [151] = 128, + [152] = 126, + [153] = 131, + [154] = 154, + [155] = 154, + [156] = 156, + [157] = 157, [158] = 158, - [159] = 158, - [160] = 155, - [161] = 155, - [162] = 150, - [163] = 163, - [164] = 158, - [165] = 165, - [166] = 150, - [167] = 151, - [168] = 152, - [169] = 152, + [159] = 159, + [160] = 159, + [161] = 161, + [162] = 159, + [163] = 158, + [164] = 156, + [165] = 156, + [166] = 156, + [167] = 157, + [168] = 158, + [169] = 159, [170] = 158, - [171] = 152, - [172] = 151, - [173] = 173, - [174] = 158, - [175] = 158, - [176] = 158, - [177] = 150, - [178] = 151, - [179] = 155, + [171] = 157, + [172] = 158, + [173] = 157, + [174] = 156, + [175] = 157, + [176] = 159, + [177] = 154, + [178] = 154, + [179] = 159, [180] = 158, - [181] = 158, - [182] = 151, - [183] = 152, - [184] = 150, - [185] = 155, - [186] = 151, - [187] = 152, - [188] = 150, - [189] = 155, - [190] = 155, - [191] = 150, - [192] = 151, - [193] = 155, - [194] = 151, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 198, + [181] = 156, + [182] = 157, + [183] = 157, + [184] = 184, + [185] = 157, + [186] = 159, + [187] = 158, + [188] = 159, + [189] = 156, + [190] = 154, + [191] = 156, + [192] = 192, + [193] = 159, + [194] = 158, + [195] = 158, + [196] = 154, + [197] = 156, + [198] = 157, [199] = 199, - [200] = 199, + [200] = 200, [201] = 201, - [202] = 195, - [203] = 195, - [204] = 195, - [205] = 201, - [206] = 206, - [207] = 207, - [208] = 197, - [209] = 199, - [210] = 196, - [211] = 199, - [212] = 195, - [213] = 213, - [214] = 213, - [215] = 199, - [216] = 195, - [217] = 207, - [218] = 199, - [219] = 213, - [220] = 213, - [221] = 221, - [222] = 222, - [223] = 201, - [224] = 197, - [225] = 196, - [226] = 213, - [227] = 197, - [228] = 201, - [229] = 229, + [202] = 202, + [203] = 200, + [204] = 204, + [205] = 199, + [206] = 201, + [207] = 200, + [208] = 208, + [209] = 204, + [210] = 210, + [211] = 210, + [212] = 199, + [213] = 199, + [214] = 200, + [215] = 200, + [216] = 202, + [217] = 200, + [218] = 210, + [219] = 202, + [220] = 208, + [221] = 199, + [222] = 201, + [223] = 200, + [224] = 208, + [225] = 204, + [226] = 208, + [227] = 204, + [228] = 210, + [229] = 201, [230] = 199, - [231] = 195, - [232] = 213, - [233] = 201, + [231] = 201, + [232] = 208, + [233] = 210, [234] = 199, - [235] = 195, - [236] = 213, - [237] = 201, - [238] = 201, - [239] = 207, + [235] = 202, + [236] = 201, + [237] = 204, + [238] = 200, + [239] = 199, [240] = 199, - [241] = 196, - [242] = 195, - [243] = 197, - [244] = 199, - [245] = 213, - [246] = 195, - [247] = 195, - [248] = 201, - [249] = 213, - [250] = 199, - [251] = 195, - [252] = 213, + [241] = 241, + [242] = 202, + [243] = 200, + [244] = 202, + [245] = 200, + [246] = 200, + [247] = 210, + [248] = 200, + [249] = 210, + [250] = 250, + [251] = 202, + [252] = 210, [253] = 201, - [254] = 201, - [255] = 207, - [256] = 213, - [257] = 199, - [258] = 195, - [259] = 207, - [260] = 213, - [261] = 213, - [262] = 201, - [263] = 201, - [264] = 207, - [265] = 199, - [266] = 199, - [267] = 195, - [268] = 213, - [269] = 197, - [270] = 201, - [271] = 196, - [272] = 195, - [273] = 199, - [274] = 195, - [275] = 213, + [254] = 199, + [255] = 208, + [256] = 199, + [257] = 202, + [258] = 199, + [259] = 210, + [260] = 199, + [261] = 202, + [262] = 210, + [263] = 210, + [264] = 200, + [265] = 204, + [266] = 202, + [267] = 200, + [268] = 268, + [269] = 210, + [270] = 204, + [271] = 271, + [272] = 210, + [273] = 202, + [274] = 210, + [275] = 202, [276] = 199, - [277] = 201, - [278] = 207, - [279] = 199, - [280] = 195, - [281] = 213, - [282] = 201, - [283] = 197, - [284] = 213, - [285] = 213, - [286] = 201, - [287] = 196, - [288] = 199, - [289] = 195, - [290] = 197, - [291] = 207, - [292] = 196, - [293] = 213, - [294] = 201, - [295] = 207, - [296] = 201, - [297] = 201, - [298] = 213, - [299] = 213, - [300] = 195, - [301] = 196, - [302] = 197, - [303] = 303, - [304] = 199, - [305] = 195, - [306] = 199, - [307] = 196, - [308] = 213, - [309] = 201, - [310] = 201, - [311] = 199, - [312] = 201, - [313] = 199, - [314] = 195, - [315] = 195, - [316] = 316, - [317] = 316, - [318] = 318, - [319] = 319, + [277] = 200, + [278] = 199, + [279] = 202, + [280] = 204, + [281] = 200, + [282] = 199, + [283] = 199, + [284] = 202, + [285] = 208, + [286] = 210, + [287] = 210, + [288] = 202, + [289] = 200, + [290] = 199, + [291] = 202, + [292] = 200, + [293] = 200, + [294] = 294, + [295] = 208, + [296] = 210, + [297] = 200, + [298] = 298, + [299] = 208, + [300] = 202, + [301] = 210, + [302] = 201, + [303] = 199, + [304] = 204, + [305] = 210, + [306] = 210, + [307] = 202, + [308] = 199, + [309] = 200, + [310] = 200, + [311] = 202, + [312] = 202, + [313] = 210, + [314] = 210, + [315] = 202, + [316] = 199, + [317] = 199, + [318] = 202, + [319] = 201, [320] = 320, [321] = 321, - [322] = 322, + [322] = 321, [323] = 323, - [324] = 320, + [324] = 324, [325] = 325, - [326] = 323, - [327] = 323, - [328] = 328, - [329] = 323, - [330] = 323, - [331] = 323, + [326] = 326, + [327] = 326, + [328] = 326, + [329] = 326, + [330] = 326, + [331] = 331, [332] = 332, - [333] = 323, + [333] = 333, [334] = 334, - [335] = 323, + [335] = 335, [336] = 336, [337] = 323, - [338] = 323, + [338] = 338, [339] = 339, [340] = 340, - [341] = 341, - [342] = 323, - [343] = 336, - [344] = 323, - [345] = 345, - [346] = 346, + [341] = 339, + [342] = 326, + [343] = 335, + [344] = 336, + [345] = 340, + [346] = 323, [347] = 347, [348] = 348, [349] = 349, [350] = 350, [351] = 351, - [352] = 352, + [352] = 333, [353] = 353, [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, + [355] = 353, + [356] = 333, + [357] = 347, [358] = 358, [359] = 359, [360] = 360, [361] = 361, [362] = 362, [363] = 363, - [364] = 364, - [365] = 336, - [366] = 336, - [367] = 323, - [368] = 323, + [364] = 334, + [365] = 334, + [366] = 366, + [367] = 367, + [368] = 368, [369] = 369, [370] = 370, - [371] = 364, - [372] = 363, + [371] = 371, + [372] = 372, [373] = 373, - [374] = 374, + [374] = 333, [375] = 375, - [376] = 334, + [376] = 376, [377] = 377, - [378] = 359, - [379] = 346, - [380] = 347, - [381] = 351, - [382] = 352, - [383] = 354, - [384] = 355, - [385] = 336, - [386] = 323, + [378] = 378, + [379] = 379, + [380] = 378, + [381] = 333, + [382] = 382, + [383] = 334, + [384] = 384, + [385] = 384, + [386] = 386, [387] = 387, - [388] = 359, - [389] = 346, + [388] = 388, + [389] = 389, [390] = 390, - [391] = 347, - [392] = 351, - [393] = 352, - [394] = 354, - [395] = 355, - [396] = 362, - [397] = 334, - [398] = 377, - [399] = 377, - [400] = 400, - [401] = 334, - [402] = 350, + [391] = 391, + [392] = 335, + [393] = 386, + [394] = 332, + [395] = 387, + [396] = 331, + [397] = 397, + [398] = 388, + [399] = 389, + [400] = 390, + [401] = 391, + [402] = 323, [403] = 336, - [404] = 323, + [404] = 335, [405] = 405, - [406] = 400, - [407] = 362, - [408] = 363, - [409] = 364, - [410] = 375, + [406] = 353, + [407] = 407, + [408] = 332, + [409] = 348, + [410] = 331, [411] = 411, - [412] = 375, + [412] = 412, [413] = 413, [414] = 414, [415] = 415, - [416] = 341, - [417] = 340, - [418] = 332, - [419] = 419, - [420] = 419, - [421] = 419, - [422] = 375, - [423] = 423, - [424] = 319, - [425] = 336, - [426] = 323, - [427] = 413, - [428] = 414, - [429] = 415, - [430] = 336, - [431] = 364, - [432] = 432, - [433] = 433, - [434] = 364, - [435] = 353, - [436] = 325, - [437] = 364, - [438] = 390, - [439] = 323, - [440] = 364, - [441] = 441, - [442] = 359, - [443] = 353, - [444] = 364, - [445] = 419, - [446] = 364, - [447] = 375, - [448] = 400, - [449] = 332, - [450] = 362, - [451] = 364, - [452] = 340, - [453] = 364, + [416] = 324, + [417] = 417, + [418] = 323, + [419] = 391, + [420] = 390, + [421] = 389, + [422] = 348, + [423] = 405, + [424] = 424, + [425] = 388, + [426] = 387, + [427] = 427, + [428] = 386, + [429] = 384, + [430] = 397, + [431] = 411, + [432] = 348, + [433] = 378, + [434] = 324, + [435] = 377, + [436] = 436, + [437] = 323, + [438] = 438, + [439] = 336, + [440] = 353, + [441] = 438, + [442] = 442, + [443] = 335, + [444] = 348, + [445] = 336, + [446] = 334, + [447] = 447, + [448] = 438, + [449] = 449, + [450] = 333, + [451] = 334, + [452] = 353, + [453] = 335, [454] = 454, - [455] = 364, - [456] = 363, - [457] = 341, - [458] = 458, - [459] = 353, - [460] = 340, - [461] = 341, - [462] = 400, - [463] = 346, - [464] = 364, + [455] = 347, + [456] = 413, + [457] = 375, + [458] = 413, + [459] = 413, + [460] = 348, + [461] = 413, + [462] = 462, + [463] = 413, + [464] = 333, [465] = 323, - [466] = 325, - [467] = 321, - [468] = 390, - [469] = 469, - [470] = 350, - [471] = 320, - [472] = 322, - [473] = 374, - [474] = 364, - [475] = 361, - [476] = 476, - [477] = 349, - [478] = 347, - [479] = 336, - [480] = 323, - [481] = 481, - [482] = 320, - [483] = 323, - [484] = 484, - [485] = 355, - [486] = 400, - [487] = 322, - [488] = 488, - [489] = 325, - [490] = 321, - [491] = 341, - [492] = 354, - [493] = 390, - [494] = 340, - [495] = 353, - [496] = 350, - [497] = 497, - [498] = 364, - [499] = 363, - [500] = 362, - [501] = 320, - [502] = 322, - [503] = 374, - [504] = 400, - [505] = 352, - [506] = 351, - [507] = 390, - [508] = 341, - [509] = 340, - [510] = 353, - [511] = 511, - [512] = 361, - [513] = 347, - [514] = 364, - [515] = 363, - [516] = 362, - [517] = 319, - [518] = 349, - [519] = 346, - [520] = 359, - [521] = 351, - [522] = 374, - [523] = 400, - [524] = 361, - [525] = 341, - [526] = 526, - [527] = 527, - [528] = 400, - [529] = 364, - [530] = 363, - [531] = 362, - [532] = 377, - [533] = 533, - [534] = 340, - [535] = 400, - [536] = 353, - [537] = 537, + [466] = 413, + [467] = 413, + [468] = 468, + [469] = 375, + [470] = 348, + [471] = 333, + [472] = 472, + [473] = 449, + [474] = 348, + [475] = 353, + [476] = 413, + [477] = 413, + [478] = 413, + [479] = 413, + [480] = 413, + [481] = 324, + [482] = 348, + [483] = 413, + [484] = 438, + [485] = 334, + [486] = 334, + [487] = 487, + [488] = 417, + [489] = 405, + [490] = 490, + [491] = 353, + [492] = 336, + [493] = 415, + [494] = 494, + [495] = 335, + [496] = 348, + [497] = 417, + [498] = 498, + [499] = 415, + [500] = 353, + [501] = 414, + [502] = 412, + [503] = 333, + [504] = 407, + [505] = 347, + [506] = 353, + [507] = 507, + [508] = 333, + [509] = 324, + [510] = 414, + [511] = 353, + [512] = 413, + [513] = 333, + [514] = 347, + [515] = 348, + [516] = 334, + [517] = 335, + [518] = 518, + [519] = 412, + [520] = 413, + [521] = 336, + [522] = 522, + [523] = 323, + [524] = 324, + [525] = 407, + [526] = 331, + [527] = 332, + [528] = 353, + [529] = 333, + [530] = 375, + [531] = 348, + [532] = 335, + [533] = 336, + [534] = 334, + [535] = 323, + [536] = 449, + [537] = 438, [538] = 334, - [539] = 539, - [540] = 349, + [539] = 391, + [540] = 347, [541] = 541, - [542] = 364, - [543] = 400, - [544] = 363, - [545] = 362, - [546] = 341, - [547] = 340, - [548] = 332, - [549] = 334, + [542] = 323, + [543] = 336, + [544] = 335, + [545] = 545, + [546] = 390, + [547] = 335, + [548] = 389, + [549] = 549, [550] = 377, - [551] = 551, - [552] = 325, - [553] = 553, - [554] = 321, - [555] = 400, - [556] = 488, - [557] = 390, - [558] = 362, - [559] = 363, - [560] = 364, - [561] = 341, - [562] = 341, - [563] = 359, - [564] = 346, - [565] = 347, - [566] = 351, - [567] = 352, - [568] = 354, - [569] = 355, - [570] = 353, - [571] = 340, - [572] = 340, - [573] = 350, - [574] = 353, - [575] = 575, - [576] = 332, - [577] = 320, - [578] = 332, - [579] = 400, - [580] = 497, - [581] = 322, - [582] = 364, - [583] = 363, - [584] = 584, - [585] = 362, - [586] = 377, - [587] = 340, - [588] = 374, - [589] = 341, - [590] = 321, - [591] = 341, - [592] = 355, - [593] = 340, - [594] = 332, - [595] = 375, - [596] = 419, - [597] = 597, - [598] = 354, - [599] = 599, - [600] = 400, - [601] = 584, - [602] = 352, - [603] = 353, - [604] = 341, - [605] = 340, - [606] = 553, - [607] = 364, - [608] = 419, - [609] = 609, - [610] = 575, - [611] = 341, - [612] = 340, - [613] = 332, - [614] = 375, - [615] = 537, - [616] = 400, - [617] = 533, - [618] = 526, - [619] = 353, + [551] = 378, + [552] = 388, + [553] = 387, + [554] = 377, + [555] = 386, + [556] = 331, + [557] = 332, + [558] = 378, + [559] = 559, + [560] = 560, + [561] = 324, + [562] = 413, + [563] = 563, + [564] = 348, + [565] = 335, + [566] = 336, + [567] = 323, + [568] = 498, + [569] = 353, + [570] = 391, + [571] = 390, + [572] = 389, + [573] = 388, + [574] = 387, + [575] = 386, + [576] = 384, + [577] = 384, + [578] = 405, + [579] = 334, + [580] = 417, + [581] = 353, + [582] = 378, + [583] = 377, + [584] = 415, + [585] = 333, + [586] = 336, + [587] = 414, + [588] = 334, + [589] = 412, + [590] = 407, + [591] = 336, + [592] = 375, + [593] = 384, + [594] = 449, + [595] = 438, + [596] = 386, + [597] = 333, + [598] = 387, + [599] = 388, + [600] = 389, + [601] = 390, + [602] = 378, + [603] = 377, + [604] = 391, + [605] = 605, + [606] = 323, + [607] = 336, + [608] = 335, + [609] = 563, + [610] = 323, + [611] = 332, + [612] = 324, + [613] = 331, + [614] = 405, + [615] = 615, + [616] = 335, + [617] = 348, + [618] = 377, + [619] = 334, [620] = 347, - [621] = 353, - [622] = 353, - [623] = 353, - [624] = 361, - [625] = 346, - [626] = 364, - [627] = 363, - [628] = 419, - [629] = 364, - [630] = 362, - [631] = 631, - [632] = 363, - [633] = 359, - [634] = 349, - [635] = 400, - [636] = 636, - [637] = 325, - [638] = 341, - [639] = 340, - [640] = 353, - [641] = 325, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 454, - [646] = 332, - [647] = 340, - [648] = 341, - [649] = 362, - [650] = 363, - [651] = 651, - [652] = 652, - [653] = 353, - [654] = 321, - [655] = 527, - [656] = 656, - [657] = 433, - [658] = 364, - [659] = 358, - [660] = 363, - [661] = 362, - [662] = 390, - [663] = 441, - [664] = 419, - [665] = 375, - [666] = 423, - [667] = 362, - [668] = 390, - [669] = 400, - [670] = 419, - [671] = 671, - [672] = 375, - [673] = 673, - [674] = 341, - [675] = 336, - [676] = 400, - [677] = 334, - [678] = 377, - [679] = 362, - [680] = 363, - [681] = 356, - [682] = 340, - [683] = 364, - [684] = 353, - [685] = 359, - [686] = 686, - [687] = 355, - [688] = 364, - [689] = 354, - [690] = 363, - [691] = 362, - [692] = 352, - [693] = 351, - [694] = 351, - [695] = 350, - [696] = 347, - [697] = 346, - [698] = 359, - [699] = 346, - [700] = 320, - [701] = 322, - [702] = 377, - [703] = 400, - [704] = 374, - [705] = 364, - [706] = 341, - [707] = 340, - [708] = 363, - [709] = 334, - [710] = 362, - [711] = 361, - [712] = 347, - [713] = 353, - [714] = 349, - [715] = 355, - [716] = 354, - [717] = 352, - [718] = 364, - [719] = 363, - [720] = 351, - [721] = 347, - [722] = 362, - [723] = 346, - [724] = 359, - [725] = 351, - [726] = 360, - [727] = 364, - [728] = 325, - [729] = 363, - [730] = 321, - [731] = 400, - [732] = 362, - [733] = 390, - [734] = 341, - [735] = 340, - [736] = 353, - [737] = 350, - [738] = 352, - [739] = 364, - [740] = 363, - [741] = 362, - [742] = 354, - [743] = 377, - [744] = 334, - [745] = 352, - [746] = 390, - [747] = 354, - [748] = 334, - [749] = 377, - [750] = 355, - [751] = 322, - [752] = 374, - [753] = 361, - [754] = 400, - [755] = 355, - [756] = 349, - [757] = 362, - [758] = 363, - [759] = 364, - [760] = 373, - [761] = 369, - [762] = 359, - [763] = 346, - [764] = 347, - [765] = 351, - [766] = 352, - [767] = 354, - [768] = 355, - [769] = 432, - [770] = 321, - [771] = 390, - [772] = 348, - [773] = 341, - [774] = 340, - [775] = 350, - [776] = 476, - [777] = 320, - [778] = 377, - [779] = 322, - [780] = 370, - [781] = 781, - [782] = 353, - [783] = 374, - [784] = 361, - [785] = 349, - [786] = 325, - [787] = 321, - [788] = 469, - [789] = 375, - [790] = 419, - [791] = 390, - [792] = 484, - [793] = 673, - [794] = 794, - [795] = 350, - [796] = 364, - [797] = 363, - [798] = 656, - [799] = 320, - [800] = 362, - [801] = 322, - [802] = 374, - [803] = 476, - [804] = 361, - [805] = 334, - [806] = 336, - [807] = 323, - [808] = 349, - [809] = 809, - [810] = 809, - [811] = 809, - [812] = 390, - [813] = 375, - [814] = 353, - [815] = 419, - [816] = 809, - [817] = 390, - [818] = 809, - [819] = 405, - [820] = 652, - [821] = 651, - [822] = 644, - [823] = 319, - [824] = 390, - [825] = 643, - [826] = 642, - [827] = 636, - [828] = 631, + [621] = 377, + [622] = 378, + [623] = 333, + [624] = 353, + [625] = 323, + [626] = 413, + [627] = 417, + [628] = 323, + [629] = 334, + [630] = 498, + [631] = 415, + [632] = 336, + [633] = 414, + [634] = 412, + [635] = 635, + [636] = 335, + [637] = 407, + [638] = 348, + [639] = 386, + [640] = 559, + [641] = 323, + [642] = 336, + [643] = 334, + [644] = 375, + [645] = 335, + [646] = 348, + [647] = 336, + [648] = 449, + [649] = 350, + [650] = 323, + [651] = 635, + [652] = 438, + [653] = 347, + [654] = 333, + [655] = 353, + [656] = 353, + [657] = 405, + [658] = 333, + [659] = 347, + [660] = 360, + [661] = 438, + [662] = 361, + [663] = 663, + [664] = 334, + [665] = 665, + [666] = 417, + [667] = 415, + [668] = 414, + [669] = 334, + [670] = 412, + [671] = 407, + [672] = 424, + [673] = 413, + [674] = 333, + [675] = 353, + [676] = 377, + [677] = 378, + [678] = 454, + [679] = 382, + [680] = 384, + [681] = 375, + [682] = 386, + [683] = 348, + [684] = 387, + [685] = 388, + [686] = 389, + [687] = 390, + [688] = 391, + [689] = 323, + [690] = 336, + [691] = 335, + [692] = 332, + [693] = 449, + [694] = 438, + [695] = 331, + [696] = 696, + [697] = 334, + [698] = 449, + [699] = 336, + [700] = 335, + [701] = 384, + [702] = 332, + [703] = 335, + [704] = 498, + [705] = 363, + [706] = 384, + [707] = 386, + [708] = 387, + [709] = 387, + [710] = 388, + [711] = 389, + [712] = 388, + [713] = 390, + [714] = 436, + [715] = 391, + [716] = 389, + [717] = 390, + [718] = 405, + [719] = 391, + [720] = 323, + [721] = 334, + [722] = 442, + [723] = 336, + [724] = 323, + [725] = 348, + [726] = 447, + [727] = 336, + [728] = 335, + [729] = 333, + [730] = 353, + [731] = 438, + [732] = 468, + [733] = 348, + [734] = 472, + [735] = 349, + [736] = 332, + [737] = 331, + [738] = 518, + [739] = 335, + [740] = 417, + [741] = 487, + [742] = 696, + [743] = 743, + [744] = 744, + [745] = 348, + [746] = 415, + [747] = 615, + [748] = 414, + [749] = 324, + [750] = 413, + [751] = 331, + [752] = 333, + [753] = 332, + [754] = 412, + [755] = 507, + [756] = 323, + [757] = 353, + [758] = 331, + [759] = 332, + [760] = 333, + [761] = 347, + [762] = 407, + [763] = 353, + [764] = 375, + [765] = 358, + [766] = 438, + [767] = 335, + [768] = 336, + [769] = 323, + [770] = 359, + [771] = 449, + [772] = 391, + [773] = 390, + [774] = 389, + [775] = 388, + [776] = 387, + [777] = 386, + [778] = 384, + [779] = 335, + [780] = 336, + [781] = 331, + [782] = 522, + [783] = 438, + [784] = 405, + [785] = 417, + [786] = 415, + [787] = 414, + [788] = 412, + [789] = 323, + [790] = 324, + [791] = 413, + [792] = 605, + [793] = 407, + [794] = 375, + [795] = 323, + [796] = 449, + [797] = 323, + [798] = 391, + [799] = 378, + [800] = 377, + [801] = 376, + [802] = 373, + [803] = 338, + [804] = 334, + [805] = 438, + [806] = 413, + [807] = 324, + [808] = 438, + [809] = 405, + [810] = 390, + [811] = 366, + [812] = 367, + [813] = 368, + [814] = 323, + [815] = 369, + [816] = 370, + [817] = 389, + [818] = 371, + [819] = 372, + [820] = 438, + [821] = 541, + [822] = 417, + [823] = 323, + [824] = 334, + [825] = 348, + [826] = 415, + [827] = 323, + [828] = 333, [829] = 353, - [830] = 609, - [831] = 332, - [832] = 340, - [833] = 341, - [834] = 551, - [835] = 390, - [836] = 599, - [837] = 597, - [838] = 332, - [839] = 340, - [840] = 341, - [841] = 390, - [842] = 390, - [843] = 843, - [844] = 541, - [845] = 539, - [846] = 400, - [847] = 390, - [848] = 390, - [849] = 390, - [850] = 850, - [851] = 400, - [852] = 390, - [853] = 850, - [854] = 809, - [855] = 843, - [856] = 856, - [857] = 856, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, + [830] = 490, + [831] = 323, + [832] = 545, + [833] = 438, + [834] = 323, + [835] = 549, + [836] = 323, + [837] = 377, + [838] = 378, + [839] = 379, + [840] = 840, + [841] = 347, + [842] = 333, + [843] = 353, + [844] = 388, + [845] = 414, + [846] = 387, + [847] = 323, + [848] = 560, + [849] = 438, + [850] = 386, + [851] = 323, + [852] = 438, + [853] = 438, + [854] = 490, + [855] = 412, + [856] = 438, + [857] = 857, + [858] = 384, + [859] = 407, + [860] = 438, + [861] = 348, + [862] = 438, + [863] = 438, [864] = 864, [865] = 865, - [866] = 865, - [867] = 859, - [868] = 864, - [869] = 863, - [870] = 870, - [871] = 871, - [872] = 862, - [873] = 873, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 865, + [871] = 867, + [872] = 872, + [873] = 868, [874] = 874, - [875] = 875, + [875] = 869, [876] = 876, - [877] = 876, + [877] = 877, [878] = 878, - [879] = 876, - [880] = 880, - [881] = 876, - [882] = 882, + [879] = 879, + [880] = 878, + [881] = 881, + [882] = 864, [883] = 883, - [884] = 884, - [885] = 876, - [886] = 870, - [887] = 871, - [888] = 873, - [889] = 874, - [890] = 880, - [891] = 882, - [892] = 892, - [893] = 884, - [894] = 860, - [895] = 858, - [896] = 875, - [897] = 878, - [898] = 876, - [899] = 861, - [900] = 892, - [901] = 883, + [884] = 879, + [885] = 879, + [886] = 886, + [887] = 887, + [888] = 879, + [889] = 877, + [890] = 887, + [891] = 886, + [892] = 876, + [893] = 874, + [894] = 872, + [895] = 866, + [896] = 896, + [897] = 897, + [898] = 896, + [899] = 899, + [900] = 897, + [901] = 899, [902] = 902, - [903] = 903, + [903] = 902, [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, + [905] = 881, + [906] = 904, + [907] = 879, + [908] = 879, + [909] = 883, [910] = 910, [911] = 911, [912] = 912, [913] = 913, [914] = 914, - [915] = 906, + [915] = 915, [916] = 916, - [917] = 907, + [917] = 917, [918] = 918, - [919] = 908, + [919] = 919, [920] = 910, - [921] = 911, + [921] = 921, [922] = 922, [923] = 923, - [924] = 912, - [925] = 913, + [924] = 924, + [925] = 925, [926] = 926, [927] = 927, [928] = 928, [929] = 929, - [930] = 928, - [931] = 909, - [932] = 904, - [933] = 905, - [934] = 916, - [935] = 922, - [936] = 923, - [937] = 926, - [938] = 927, - [939] = 939, - [940] = 940, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 934, + [938] = 913, + [939] = 932, + [940] = 929, [941] = 941, - [942] = 942, - [943] = 929, + [942] = 913, + [943] = 943, [944] = 944, [945] = 945, - [946] = 946, + [946] = 945, [947] = 947, [948] = 947, - [949] = 944, + [949] = 949, [950] = 950, - [951] = 941, - [952] = 952, - [953] = 953, - [954] = 952, + [951] = 951, + [952] = 941, + [953] = 943, + [954] = 954, [955] = 955, - [956] = 914, + [956] = 956, [957] = 957, - [958] = 939, - [959] = 903, - [960] = 952, - [961] = 902, - [962] = 962, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 951, [963] = 963, [964] = 964, - [965] = 965, + [965] = 944, [966] = 966, [967] = 967, [968] = 968, [969] = 969, [970] = 970, [971] = 971, - [972] = 942, + [972] = 972, [973] = 973, - [974] = 918, - [975] = 940, - [976] = 945, - [977] = 946, - [978] = 950, - [979] = 953, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 952, - [984] = 984, - [985] = 985, - [986] = 986, - [987] = 952, - [988] = 988, - [989] = 964, - [990] = 965, - [991] = 966, - [992] = 967, - [993] = 986, - [994] = 985, - [995] = 984, - [996] = 955, - [997] = 968, - [998] = 988, - [999] = 980, - [1000] = 973, - [1001] = 957, - [1002] = 952, - [1003] = 962, - [1004] = 981, - [1005] = 982, - [1006] = 963, - [1007] = 971, - [1008] = 970, - [1009] = 969, - [1010] = 152, - [1011] = 152, - [1012] = 152, - [1013] = 152, - [1014] = 652, - [1015] = 488, - [1016] = 609, - [1017] = 636, - [1018] = 642, - [1019] = 643, - [1020] = 441, - [1021] = 454, - [1022] = 348, - [1023] = 356, - [1024] = 575, - [1025] = 319, - [1026] = 584, - [1027] = 319, - [1028] = 526, - [1029] = 809, - [1030] = 644, - [1031] = 539, - [1032] = 423, - [1033] = 541, - [1034] = 415, - [1035] = 553, - [1036] = 551, - [1037] = 414, - [1038] = 809, - [1039] = 413, - [1040] = 405, - [1041] = 599, - [1042] = 537, - [1043] = 651, - [1044] = 433, - [1045] = 597, - [1046] = 631, - [1047] = 533, - [1048] = 809, - [1049] = 527, - [1050] = 673, - [1051] = 441, - [1052] = 850, - [1053] = 497, - [1054] = 360, - [1055] = 843, - [1056] = 884, - [1057] = 863, - [1058] = 883, - [1059] = 862, - [1060] = 858, - [1061] = 882, - [1062] = 860, - [1063] = 856, - [1064] = 870, - [1065] = 864, - [1066] = 859, - [1067] = 871, - [1068] = 876, - [1069] = 865, - [1070] = 876, - [1071] = 880, - [1072] = 875, - [1073] = 878, - [1074] = 874, - [1075] = 861, - [1076] = 873, - [1077] = 861, - [1078] = 892, - [1079] = 876, - [1080] = 922, - [1081] = 967, - [1082] = 946, - [1083] = 945, - [1084] = 952, - [1085] = 942, - [1086] = 929, - [1087] = 912, - [1088] = 939, - [1089] = 927, - [1090] = 926, - [1091] = 923, - [1092] = 873, - [1093] = 916, - [1094] = 905, - [1095] = 904, - [1096] = 971, - [1097] = 986, - [1098] = 953, - [1099] = 941, - [1100] = 914, - [1101] = 970, - [1102] = 964, - [1103] = 965, - [1104] = 874, - [1105] = 966, - [1106] = 969, - [1107] = 963, - [1108] = 957, - [1109] = 874, - [1110] = 928, - [1111] = 962, - [1112] = 980, - [1113] = 907, - [1114] = 988, - [1115] = 968, - [1116] = 952, - [1117] = 952, - [1118] = 906, - [1119] = 911, - [1120] = 902, - [1121] = 903, - [1122] = 870, - [1123] = 871, - [1124] = 873, - [1125] = 955, - [1126] = 950, - [1127] = 870, - [1128] = 910, - [1129] = 908, - [1130] = 909, - [1131] = 871, - [1132] = 913, - [1133] = 973, - [1134] = 981, - [1135] = 982, - [1136] = 947, - [1137] = 984, + [974] = 966, + [975] = 913, + [976] = 913, + [977] = 973, + [978] = 955, + [979] = 972, + [980] = 911, + [981] = 956, + [982] = 964, + [983] = 971, + [984] = 960, + [985] = 954, + [986] = 950, + [987] = 949, + [988] = 912, + [989] = 970, + [990] = 914, + [991] = 915, + [992] = 916, + [993] = 917, + [994] = 918, + [995] = 919, + [996] = 957, + [997] = 921, + [998] = 922, + [999] = 923, + [1000] = 924, + [1001] = 925, + [1002] = 926, + [1003] = 927, + [1004] = 928, + [1005] = 930, + [1006] = 931, + [1007] = 933, + [1008] = 935, + [1009] = 936, + [1010] = 913, + [1011] = 969, + [1012] = 968, + [1013] = 967, + [1014] = 963, + [1015] = 961, + [1016] = 959, + [1017] = 958, + [1018] = 154, + [1019] = 154, + [1020] = 154, + [1021] = 154, + [1022] = 605, + [1023] = 498, + [1024] = 370, + [1025] = 367, + [1026] = 522, + [1027] = 366, + [1028] = 696, + [1029] = 326, + [1030] = 326, + [1031] = 326, + [1032] = 424, + [1033] = 349, + [1034] = 397, + [1035] = 361, + [1036] = 411, + [1037] = 545, + [1038] = 369, + [1039] = 358, + [1040] = 436, + [1041] = 615, + [1042] = 340, + [1043] = 371, + [1044] = 541, + [1045] = 442, + [1046] = 545, + [1047] = 549, + [1048] = 447, + [1049] = 359, + [1050] = 372, + [1051] = 382, + [1052] = 635, + [1053] = 350, + [1054] = 339, + [1055] = 368, + [1056] = 468, + [1057] = 498, + [1058] = 507, + [1059] = 360, + [1060] = 472, + [1061] = 379, + [1062] = 487, + [1063] = 560, + [1064] = 883, + [1065] = 878, + [1066] = 879, + [1067] = 874, + [1068] = 874, + [1069] = 904, + [1070] = 879, + [1071] = 864, + [1072] = 876, + [1073] = 877, + [1074] = 902, + [1075] = 899, + [1076] = 897, + [1077] = 896, + [1078] = 879, + [1079] = 887, + [1080] = 886, + [1081] = 872, + [1082] = 881, + [1083] = 865, + [1084] = 867, + [1085] = 868, + [1086] = 869, + [1087] = 866, + [1088] = 934, + [1089] = 867, + [1090] = 969, + [1091] = 958, + [1092] = 970, + [1093] = 971, + [1094] = 957, + [1095] = 972, + [1096] = 973, + [1097] = 956, + [1098] = 966, + [1099] = 955, + [1100] = 911, + [1101] = 964, + [1102] = 959, + [1103] = 869, + [1104] = 967, + [1105] = 868, + [1106] = 963, + [1107] = 913, + [1108] = 867, + [1109] = 865, + [1110] = 960, + [1111] = 954, + [1112] = 950, + [1113] = 949, + [1114] = 912, + [1115] = 869, + [1116] = 961, + [1117] = 943, + [1118] = 913, + [1119] = 914, + [1120] = 941, + [1121] = 932, + [1122] = 915, + [1123] = 929, + [1124] = 868, + [1125] = 910, + [1126] = 916, + [1127] = 968, + [1128] = 913, + [1129] = 936, + [1130] = 917, + [1131] = 918, + [1132] = 865, + [1133] = 919, + [1134] = 935, + [1135] = 933, + [1136] = 931, + [1137] = 930, [1138] = 944, - [1139] = 940, - [1140] = 918, - [1141] = 985, - [1142] = 152, - [1143] = 152, - [1144] = 152, - [1145] = 414, - [1146] = 152, - [1147] = 488, - [1148] = 414, - [1149] = 497, - [1150] = 413, - [1151] = 415, - [1152] = 152, - [1153] = 413, - [1154] = 488, - [1155] = 415, - [1156] = 152, - [1157] = 497, - [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 152, - [1162] = 537, - [1163] = 1163, - [1164] = 533, - [1165] = 1159, - [1166] = 454, - [1167] = 1160, - [1168] = 152, - [1169] = 152, - [1170] = 584, - [1171] = 1158, - [1172] = 527, - [1173] = 360, - [1174] = 597, - [1175] = 527, - [1176] = 876, - [1177] = 415, - [1178] = 414, - [1179] = 850, - [1180] = 413, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 843, - [1185] = 1185, - [1186] = 152, - [1187] = 1187, - [1188] = 152, - [1189] = 1163, - [1190] = 1182, - [1191] = 488, - [1192] = 497, - [1193] = 1183, - [1194] = 454, - [1195] = 1185, - [1196] = 319, - [1197] = 152, - [1198] = 1187, - [1199] = 152, - [1200] = 809, - [1201] = 874, - [1202] = 873, - [1203] = 871, - [1204] = 870, - [1205] = 533, - [1206] = 537, - [1207] = 539, - [1208] = 809, - [1209] = 809, - [1210] = 360, - [1211] = 856, - [1212] = 673, - [1213] = 319, - [1214] = 631, - [1215] = 636, - [1216] = 642, - [1217] = 584, - [1218] = 643, - [1219] = 599, - [1220] = 644, - [1221] = 405, - [1222] = 651, - [1223] = 652, - [1224] = 152, - [1225] = 858, - [1226] = 914, - [1227] = 952, - [1228] = 553, - [1229] = 864, - [1230] = 863, - [1231] = 862, - [1232] = 860, - [1233] = 986, - [1234] = 850, - [1235] = 152, - [1236] = 883, - [1237] = 575, - [1238] = 884, - [1239] = 1239, - [1240] = 152, - [1241] = 876, - [1242] = 880, - [1243] = 433, - [1244] = 152, - [1245] = 882, - [1246] = 955, - [1247] = 892, - [1248] = 441, - [1249] = 878, - [1250] = 918, - [1251] = 423, - [1252] = 609, - [1253] = 957, - [1254] = 859, - [1255] = 551, - [1256] = 941, - [1257] = 356, - [1258] = 944, - [1259] = 865, - [1260] = 947, - [1261] = 152, - [1262] = 909, - [1263] = 906, - [1264] = 907, - [1265] = 908, - [1266] = 910, - [1267] = 906, - [1268] = 911, - [1269] = 912, - [1270] = 913, - [1271] = 541, - [1272] = 928, - [1273] = 929, - [1274] = 955, - [1275] = 903, - [1276] = 902, - [1277] = 962, - [1278] = 963, - [1279] = 969, - [1280] = 970, - [1281] = 971, - [1282] = 876, - [1283] = 980, - [1284] = 940, - [1285] = 986, - [1286] = 985, - [1287] = 984, - [1288] = 953, - [1289] = 526, - [1290] = 982, - [1291] = 981, - [1292] = 876, - [1293] = 973, - [1294] = 988, - [1295] = 967, - [1296] = 966, - [1297] = 965, - [1298] = 1239, - [1299] = 964, - [1300] = 953, - [1301] = 950, - [1302] = 946, - [1303] = 945, - [1304] = 152, - [1305] = 942, - [1306] = 939, - [1307] = 927, - [1308] = 926, - [1309] = 923, - [1310] = 922, - [1311] = 870, - [1312] = 871, - [1313] = 873, - [1314] = 874, - [1315] = 348, - [1316] = 968, - [1317] = 916, - [1318] = 843, - [1319] = 152, - [1320] = 905, - [1321] = 904, - [1322] = 152, - [1323] = 968, - [1324] = 988, - [1325] = 980, - [1326] = 882, - [1327] = 319, - [1328] = 497, - [1329] = 488, - [1330] = 922, - [1331] = 981, - [1332] = 982, - [1333] = 809, - [1334] = 967, - [1335] = 984, - [1336] = 965, - [1337] = 985, - [1338] = 916, - [1339] = 905, - [1340] = 952, - [1341] = 904, - [1342] = 415, - [1343] = 414, - [1344] = 413, - [1345] = 952, - [1346] = 963, - [1347] = 884, - [1348] = 927, - [1349] = 939, - [1350] = 883, - [1351] = 966, - [1352] = 942, - [1353] = 971, - [1354] = 970, - [1355] = 969, - [1356] = 962, - [1357] = 539, - [1358] = 902, - [1359] = 152, - [1360] = 923, - [1361] = 903, - [1362] = 964, - [1363] = 875, - [1364] = 319, - [1365] = 929, - [1366] = 809, - [1367] = 880, - [1368] = 862, - [1369] = 856, - [1370] = 861, - [1371] = 928, - [1372] = 860, - [1373] = 597, - [1374] = 599, - [1375] = 940, - [1376] = 918, - [1377] = 950, - [1378] = 957, - [1379] = 914, - [1380] = 913, - [1381] = 952, - [1382] = 946, - [1383] = 859, - [1384] = 941, - [1385] = 631, - [1386] = 636, - [1387] = 642, - [1388] = 643, - [1389] = 644, - [1390] = 944, - [1391] = 651, - [1392] = 652, - [1393] = 865, - [1394] = 809, - [1395] = 945, - [1396] = 405, - [1397] = 912, - [1398] = 673, - [1399] = 947, - [1400] = 864, - [1401] = 863, - [1402] = 973, - [1403] = 907, - [1404] = 858, - [1405] = 909, - [1406] = 926, - [1407] = 908, - [1408] = 910, - [1409] = 911, - [1410] = 609, - [1411] = 551, - [1412] = 892, - [1413] = 360, - [1414] = 809, - [1415] = 454, - [1416] = 533, - [1417] = 537, - [1418] = 1418, - [1419] = 539, - [1420] = 348, - [1421] = 597, - [1422] = 876, - [1423] = 599, - [1424] = 631, - [1425] = 1425, - [1426] = 1426, - [1427] = 488, - [1428] = 636, - [1429] = 642, - [1430] = 643, - [1431] = 644, - [1432] = 651, + [1139] = 945, + [1140] = 928, + [1141] = 921, + [1142] = 922, + [1143] = 923, + [1144] = 924, + [1145] = 947, + [1146] = 951, + [1147] = 925, + [1148] = 927, + [1149] = 926, + [1150] = 154, + [1151] = 154, + [1152] = 154, + [1153] = 154, + [1154] = 424, + [1155] = 154, + [1156] = 635, + [1157] = 397, + [1158] = 696, + [1159] = 154, + [1160] = 411, + [1161] = 696, + [1162] = 397, + [1163] = 424, + [1164] = 411, + [1165] = 635, + [1166] = 154, + [1167] = 1167, + [1168] = 442, + [1169] = 1169, + [1170] = 154, + [1171] = 507, + [1172] = 1172, + [1173] = 1172, + [1174] = 154, + [1175] = 605, + [1176] = 472, + [1177] = 1177, + [1178] = 468, + [1179] = 1167, + [1180] = 541, + [1181] = 1169, + [1182] = 498, + [1183] = 424, + [1184] = 154, + [1185] = 154, + [1186] = 442, + [1187] = 472, + [1188] = 1188, + [1189] = 468, + [1190] = 696, + [1191] = 1188, + [1192] = 349, + [1193] = 326, + [1194] = 339, + [1195] = 411, + [1196] = 340, + [1197] = 397, + [1198] = 879, + [1199] = 635, + [1200] = 865, + [1201] = 867, + [1202] = 868, + [1203] = 869, + [1204] = 507, + [1205] = 154, + [1206] = 358, + [1207] = 359, + [1208] = 1177, + [1209] = 1209, + [1210] = 154, + [1211] = 366, + [1212] = 367, + [1213] = 368, + [1214] = 369, + [1215] = 370, + [1216] = 326, + [1217] = 371, + [1218] = 372, + [1219] = 541, + [1220] = 326, + [1221] = 1221, + [1222] = 379, + [1223] = 1223, + [1224] = 605, + [1225] = 615, + [1226] = 1226, + [1227] = 881, + [1228] = 1221, + [1229] = 498, + [1230] = 1223, + [1231] = 1226, + [1232] = 154, + [1233] = 361, + [1234] = 154, + [1235] = 913, + [1236] = 879, + [1237] = 915, + [1238] = 916, + [1239] = 887, + [1240] = 917, + [1241] = 918, + [1242] = 1242, + [1243] = 154, + [1244] = 919, + [1245] = 899, + [1246] = 914, + [1247] = 1242, + [1248] = 897, + [1249] = 896, + [1250] = 154, + [1251] = 883, + [1252] = 872, + [1253] = 921, + [1254] = 922, + [1255] = 864, + [1256] = 923, + [1257] = 941, + [1258] = 924, + [1259] = 925, + [1260] = 926, + [1261] = 360, + [1262] = 927, + [1263] = 560, + [1264] = 934, + [1265] = 928, + [1266] = 932, + [1267] = 930, + [1268] = 912, + [1269] = 931, + [1270] = 933, + [1271] = 929, + [1272] = 910, + [1273] = 949, + [1274] = 935, + [1275] = 382, + [1276] = 936, + [1277] = 154, + [1278] = 549, + [1279] = 350, + [1280] = 877, + [1281] = 869, + [1282] = 904, + [1283] = 944, + [1284] = 545, + [1285] = 868, + [1286] = 945, + [1287] = 867, + [1288] = 902, + [1289] = 947, + [1290] = 865, + [1291] = 878, + [1292] = 967, + [1293] = 950, + [1294] = 951, + [1295] = 954, + [1296] = 941, + [1297] = 943, + [1298] = 960, + [1299] = 866, + [1300] = 955, + [1301] = 956, + [1302] = 957, + [1303] = 958, + [1304] = 959, + [1305] = 964, + [1306] = 522, + [1307] = 961, + [1308] = 963, + [1309] = 154, + [1310] = 911, + [1311] = 879, + [1312] = 960, + [1313] = 154, + [1314] = 487, + [1315] = 879, + [1316] = 915, + [1317] = 339, + [1318] = 447, + [1319] = 154, + [1320] = 921, + [1321] = 436, + [1322] = 967, + [1323] = 966, + [1324] = 973, + [1325] = 972, + [1326] = 968, + [1327] = 971, + [1328] = 970, + [1329] = 886, + [1330] = 969, + [1331] = 340, + [1332] = 883, + [1333] = 358, + [1334] = 366, + [1335] = 498, + [1336] = 913, + [1337] = 368, + [1338] = 936, + [1339] = 934, + [1340] = 369, + [1341] = 326, + [1342] = 933, + [1343] = 931, + [1344] = 370, + [1345] = 154, + [1346] = 371, + [1347] = 372, + [1348] = 932, + [1349] = 930, + [1350] = 411, + [1351] = 928, + [1352] = 927, + [1353] = 926, + [1354] = 498, + [1355] = 929, + [1356] = 924, + [1357] = 923, + [1358] = 922, + [1359] = 910, + [1360] = 913, + [1361] = 864, + [1362] = 904, + [1363] = 397, + [1364] = 326, + [1365] = 919, + [1366] = 918, + [1367] = 917, + [1368] = 916, + [1369] = 424, + [1370] = 944, + [1371] = 945, + [1372] = 914, + [1373] = 902, + [1374] = 925, + [1375] = 349, + [1376] = 935, + [1377] = 899, + [1378] = 912, + [1379] = 897, + [1380] = 949, + [1381] = 950, + [1382] = 954, + [1383] = 896, + [1384] = 951, + [1385] = 964, + [1386] = 911, + [1387] = 696, + [1388] = 635, + [1389] = 379, + [1390] = 326, + [1391] = 943, + [1392] = 359, + [1393] = 886, + [1394] = 887, + [1395] = 966, + [1396] = 947, + [1397] = 973, + [1398] = 972, + [1399] = 971, + [1400] = 913, + [1401] = 970, + [1402] = 866, + [1403] = 955, + [1404] = 956, + [1405] = 957, + [1406] = 969, + [1407] = 958, + [1408] = 968, + [1409] = 959, + [1410] = 615, + [1411] = 872, + [1412] = 367, + [1413] = 876, + [1414] = 881, + [1415] = 963, + [1416] = 874, + [1417] = 961, + [1418] = 369, + [1419] = 326, + [1420] = 436, + [1421] = 447, + [1422] = 350, + [1423] = 487, + [1424] = 472, + [1425] = 522, + [1426] = 370, + [1427] = 879, + [1428] = 379, + [1429] = 549, + [1430] = 361, + [1431] = 560, + [1432] = 498, [1433] = 1433, - [1434] = 652, - [1435] = 497, - [1436] = 356, - [1437] = 433, - [1438] = 319, + [1434] = 382, + [1435] = 881, + [1436] = 1436, + [1437] = 349, + [1438] = 1436, [1439] = 1439, - [1440] = 873, - [1441] = 1418, - [1442] = 809, - [1443] = 1443, - [1444] = 575, - [1445] = 423, - [1446] = 584, - [1447] = 878, - [1448] = 871, - [1449] = 553, - [1450] = 541, - [1451] = 526, - [1452] = 441, - [1453] = 850, - [1454] = 423, - [1455] = 673, - [1456] = 527, - [1457] = 1426, - [1458] = 348, - [1459] = 356, - [1460] = 551, - [1461] = 609, - [1462] = 575, - [1463] = 553, - [1464] = 541, - [1465] = 526, - [1466] = 843, - [1467] = 433, - [1468] = 413, - [1469] = 414, - [1470] = 415, - [1471] = 405, - [1472] = 874, - [1473] = 856, - [1474] = 1425, - [1475] = 152, - [1476] = 319, - [1477] = 152, - [1478] = 1443, - [1479] = 1433, - [1480] = 1439, - [1481] = 809, - [1482] = 870, - [1483] = 876, - [1484] = 884, - [1485] = 415, - [1486] = 405, - [1487] = 864, - [1488] = 863, - [1489] = 541, - [1490] = 862, - [1491] = 488, - [1492] = 876, - [1493] = 860, - [1494] = 526, - [1495] = 319, - [1496] = 551, - [1497] = 673, - [1498] = 609, - [1499] = 319, - [1500] = 497, - [1501] = 856, - [1502] = 348, - [1503] = 497, - [1504] = 488, - [1505] = 441, - [1506] = 413, - [1507] = 875, - [1508] = 497, - [1509] = 952, - [1510] = 488, - [1511] = 652, - [1512] = 651, - [1513] = 319, - [1514] = 644, - [1515] = 643, - [1516] = 642, - [1517] = 636, - [1518] = 631, - [1519] = 319, - [1520] = 454, - [1521] = 876, - [1522] = 423, - [1523] = 809, - [1524] = 809, - [1525] = 809, - [1526] = 433, - [1527] = 883, - [1528] = 551, - [1529] = 809, - [1530] = 319, - [1531] = 809, - [1532] = 454, - [1533] = 533, - [1534] = 537, - [1535] = 405, - [1536] = 599, - [1537] = 597, - [1538] = 539, - [1539] = 882, - [1540] = 809, - [1541] = 584, - [1542] = 597, - [1543] = 533, - [1544] = 537, - [1545] = 599, - [1546] = 865, - [1547] = 539, - [1548] = 843, - [1549] = 880, - [1550] = 874, - [1551] = 873, - [1552] = 553, - [1553] = 871, - [1554] = 539, - [1555] = 405, - [1556] = 870, - [1557] = 850, - [1558] = 414, - [1559] = 415, - [1560] = 952, - [1561] = 584, - [1562] = 597, - [1563] = 599, - [1564] = 631, - [1565] = 360, - [1566] = 636, - [1567] = 575, - [1568] = 642, - [1569] = 643, - [1570] = 415, - [1571] = 644, - [1572] = 876, - [1573] = 859, - [1574] = 809, - [1575] = 651, - [1576] = 414, - [1577] = 652, - [1578] = 631, - [1579] = 636, - [1580] = 642, - [1581] = 643, - [1582] = 644, - [1583] = 906, - [1584] = 651, - [1585] = 652, - [1586] = 858, - [1587] = 527, - [1588] = 809, - [1589] = 413, - [1590] = 348, - [1591] = 356, - [1592] = 441, - [1593] = 861, - [1594] = 875, - [1595] = 423, - [1596] = 673, - [1597] = 878, - [1598] = 892, - [1599] = 955, - [1600] = 356, - [1601] = 527, - [1602] = 809, - [1603] = 609, - [1604] = 575, - [1605] = 551, - [1606] = 986, - [1607] = 553, - [1608] = 413, - [1609] = 541, - [1610] = 414, - [1611] = 968, - [1612] = 526, - [1613] = 360, - [1614] = 856, - [1615] = 319, - [1616] = 433, - [1617] = 850, - [1618] = 526, - [1619] = 553, - [1620] = 575, - [1621] = 356, - [1622] = 673, - [1623] = 423, - [1624] = 843, - [1625] = 433, - [1626] = 953, - [1627] = 1627, - [1628] = 986, - [1629] = 405, - [1630] = 873, - [1631] = 858, - [1632] = 876, - [1633] = 874, - [1634] = 856, - [1635] = 551, - [1636] = 856, - [1637] = 862, - [1638] = 541, - [1639] = 863, - [1640] = 864, - [1641] = 875, - [1642] = 609, - [1643] = 319, - [1644] = 952, - [1645] = 878, - [1646] = 360, - [1647] = 319, - [1648] = 1648, - [1649] = 348, + [1440] = 1440, + [1441] = 371, + [1442] = 368, + [1443] = 367, + [1444] = 1433, + [1445] = 366, + [1446] = 635, + [1447] = 359, + [1448] = 1440, + [1449] = 382, + [1450] = 560, + [1451] = 545, + [1452] = 360, + [1453] = 865, + [1454] = 361, + [1455] = 1439, + [1456] = 442, + [1457] = 360, + [1458] = 522, + [1459] = 1459, + [1460] = 487, + [1461] = 350, + [1462] = 696, + [1463] = 340, + [1464] = 549, + [1465] = 468, + [1466] = 867, + [1467] = 877, + [1468] = 878, + [1469] = 424, + [1470] = 154, + [1471] = 868, + [1472] = 447, + [1473] = 507, + [1474] = 339, + [1475] = 879, + [1476] = 436, + [1477] = 358, + [1478] = 326, + [1479] = 541, + [1480] = 869, + [1481] = 372, + [1482] = 605, + [1483] = 1483, + [1484] = 397, + [1485] = 615, + [1486] = 1459, + [1487] = 411, + [1488] = 498, + [1489] = 1483, + [1490] = 154, + [1491] = 326, + [1492] = 522, + [1493] = 874, + [1494] = 498, + [1495] = 881, + [1496] = 696, + [1497] = 615, + [1498] = 340, + [1499] = 549, + [1500] = 424, + [1501] = 902, + [1502] = 339, + [1503] = 436, + [1504] = 921, + [1505] = 615, + [1506] = 447, + [1507] = 379, + [1508] = 605, + [1509] = 411, + [1510] = 397, + [1511] = 424, + [1512] = 635, + [1513] = 436, + [1514] = 447, + [1515] = 915, + [1516] = 487, + [1517] = 522, + [1518] = 560, + [1519] = 379, + [1520] = 879, + [1521] = 372, + [1522] = 371, + [1523] = 549, + [1524] = 370, + [1525] = 369, + [1526] = 368, + [1527] = 367, + [1528] = 366, + [1529] = 350, + [1530] = 487, + [1531] = 326, + [1532] = 541, + [1533] = 350, + [1534] = 372, + [1535] = 371, + [1536] = 370, + [1537] = 369, + [1538] = 368, + [1539] = 367, + [1540] = 899, + [1541] = 897, + [1542] = 896, + [1543] = 366, + [1544] = 498, + [1545] = 864, + [1546] = 359, + [1547] = 358, + [1548] = 960, + [1549] = 498, + [1550] = 360, + [1551] = 498, + [1552] = 360, + [1553] = 872, + [1554] = 411, + [1555] = 361, + [1556] = 397, + [1557] = 424, + [1558] = 326, + [1559] = 326, + [1560] = 326, + [1561] = 881, + [1562] = 326, + [1563] = 360, + [1564] = 349, + [1565] = 326, + [1566] = 615, + [1567] = 522, + [1568] = 361, + [1569] = 605, + [1570] = 696, + [1571] = 326, + [1572] = 904, + [1573] = 498, + [1574] = 339, + [1575] = 865, + [1576] = 887, + [1577] = 867, + [1578] = 886, + [1579] = 879, + [1580] = 868, + [1581] = 869, + [1582] = 359, + [1583] = 340, + [1584] = 358, + [1585] = 635, + [1586] = 382, + [1587] = 498, + [1588] = 560, + [1589] = 883, + [1590] = 507, + [1591] = 379, + [1592] = 549, + [1593] = 545, + [1594] = 326, + [1595] = 967, + [1596] = 326, + [1597] = 541, + [1598] = 349, + [1599] = 913, + [1600] = 472, + [1601] = 879, + [1602] = 468, + [1603] = 372, + [1604] = 371, + [1605] = 370, + [1606] = 369, + [1607] = 368, + [1608] = 367, + [1609] = 366, + [1610] = 411, + [1611] = 397, + [1612] = 877, + [1613] = 696, + [1614] = 442, + [1615] = 635, + [1616] = 359, + [1617] = 941, + [1618] = 358, + [1619] = 866, + [1620] = 876, + [1621] = 507, + [1622] = 545, + [1623] = 876, + [1624] = 436, + [1625] = 442, + [1626] = 382, + [1627] = 447, + [1628] = 468, + [1629] = 472, + [1630] = 560, + [1631] = 913, + [1632] = 349, + [1633] = 878, + [1634] = 487, + [1635] = 340, + [1636] = 1636, + [1637] = 930, + [1638] = 958, + [1639] = 931, + [1640] = 1640, + [1641] = 933, + [1642] = 879, + [1643] = 921, + [1644] = 957, + [1645] = 868, + [1646] = 864, + [1647] = 877, + [1648] = 904, + [1649] = 935, [1650] = 1650, - [1651] = 1651, - [1652] = 497, - [1653] = 865, - [1654] = 1654, - [1655] = 875, - [1656] = 909, - [1657] = 904, - [1658] = 905, - [1659] = 916, - [1660] = 922, - [1661] = 878, - [1662] = 923, - [1663] = 926, - [1664] = 927, - [1665] = 939, - [1666] = 942, - [1667] = 1667, - [1668] = 945, - [1669] = 892, - [1670] = 946, - [1671] = 950, - [1672] = 859, - [1673] = 880, + [1651] = 936, + [1652] = 1652, + [1653] = 867, + [1654] = 865, + [1655] = 926, + [1656] = 915, + [1657] = 925, + [1658] = 872, + [1659] = 874, + [1660] = 879, + [1661] = 881, + [1662] = 1662, + [1663] = 1663, + [1664] = 924, + [1665] = 961, + [1666] = 923, + [1667] = 498, + [1668] = 922, + [1669] = 1669, + [1670] = 1670, + [1671] = 864, + [1672] = 960, + [1673] = 963, [1674] = 1674, - [1675] = 1675, - [1676] = 964, - [1677] = 965, - [1678] = 966, - [1679] = 967, - [1680] = 906, - [1681] = 906, - [1682] = 973, - [1683] = 882, - [1684] = 1684, - [1685] = 870, - [1686] = 858, - [1687] = 981, - [1688] = 982, - [1689] = 488, - [1690] = 984, - [1691] = 1691, - [1692] = 985, + [1675] = 956, + [1676] = 955, + [1677] = 1677, + [1678] = 1678, + [1679] = 1679, + [1680] = 943, + [1681] = 360, + [1682] = 919, + [1683] = 1683, + [1684] = 1640, + [1685] = 866, + [1686] = 918, + [1687] = 1687, + [1688] = 927, + [1689] = 1689, + [1690] = 1652, + [1691] = 886, + [1692] = 876, [1693] = 1693, - [1694] = 988, - [1695] = 980, - [1696] = 952, - [1697] = 1697, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 887, [1698] = 1698, - [1699] = 884, - [1700] = 883, - [1701] = 1627, - [1702] = 1702, - [1703] = 971, - [1704] = 970, - [1705] = 969, - [1706] = 860, - [1707] = 963, - [1708] = 962, - [1709] = 415, - [1710] = 902, - [1711] = 903, - [1712] = 1712, - [1713] = 955, - [1714] = 414, + [1699] = 1636, + [1700] = 1700, + [1701] = 1700, + [1702] = 635, + [1703] = 1694, + [1704] = 1698, + [1705] = 917, + [1706] = 1687, + [1707] = 1670, + [1708] = 1669, + [1709] = 916, + [1710] = 878, + [1711] = 921, + [1712] = 951, + [1713] = 1713, + [1714] = 1662, [1715] = 1715, - [1716] = 861, - [1717] = 1717, - [1718] = 929, - [1719] = 875, - [1720] = 928, - [1721] = 878, - [1722] = 413, - [1723] = 860, - [1724] = 892, - [1725] = 913, - [1726] = 912, - [1727] = 433, - [1728] = 911, - [1729] = 910, - [1730] = 526, - [1731] = 1731, - [1732] = 1732, - [1733] = 908, + [1716] = 326, + [1717] = 326, + [1718] = 696, + [1719] = 896, + [1720] = 897, + [1721] = 382, + [1722] = 1696, + [1723] = 1695, + [1724] = 899, + [1725] = 947, + [1726] = 902, + [1727] = 1650, + [1728] = 945, + [1729] = 1674, + [1730] = 944, + [1731] = 865, + [1732] = 929, + [1733] = 1693, [1734] = 1734, - [1735] = 907, - [1736] = 1736, - [1737] = 541, - [1738] = 955, - [1739] = 553, - [1740] = 575, - [1741] = 609, - [1742] = 876, - [1743] = 1743, + [1735] = 913, + [1736] = 867, + [1737] = 910, + [1738] = 915, + [1739] = 339, + [1740] = 605, + [1741] = 876, + [1742] = 877, + [1743] = 932, [1744] = 1744, - [1745] = 652, - [1746] = 356, - [1747] = 862, - [1748] = 863, - [1749] = 864, - [1750] = 947, - [1751] = 865, - [1752] = 1752, - [1753] = 944, - [1754] = 941, - [1755] = 348, - [1756] = 876, - [1757] = 952, - [1758] = 914, - [1759] = 957, - [1760] = 843, - [1761] = 918, - [1762] = 1691, - [1763] = 940, - [1764] = 892, - [1765] = 809, - [1766] = 883, - [1767] = 884, - [1768] = 850, - [1769] = 861, - [1770] = 673, + [1745] = 967, + [1746] = 914, + [1747] = 934, + [1748] = 878, + [1749] = 1677, + [1750] = 1678, + [1751] = 1713, + [1752] = 1715, + [1753] = 879, + [1754] = 883, + [1755] = 382, + [1756] = 1689, + [1757] = 560, + [1758] = 1683, + [1759] = 913, + [1760] = 361, + [1761] = 442, + [1762] = 883, + [1763] = 522, + [1764] = 878, + [1765] = 487, + [1766] = 350, + [1767] = 447, + [1768] = 1734, + [1769] = 877, + [1770] = 876, [1771] = 1771, - [1772] = 986, - [1773] = 423, - [1774] = 441, - [1775] = 1648, - [1776] = 870, - [1777] = 809, - [1778] = 871, - [1779] = 527, - [1780] = 1650, - [1781] = 1752, - [1782] = 873, - [1783] = 874, - [1784] = 1651, - [1785] = 1785, - [1786] = 454, - [1787] = 1654, - [1788] = 882, - [1789] = 1744, - [1790] = 1743, - [1791] = 651, - [1792] = 1667, - [1793] = 1674, - [1794] = 1675, - [1795] = 968, - [1796] = 1771, - [1797] = 1684, - [1798] = 876, - [1799] = 1693, - [1800] = 1697, - [1801] = 533, - [1802] = 537, - [1803] = 1698, - [1804] = 539, - [1805] = 644, - [1806] = 953, - [1807] = 1736, - [1808] = 1734, - [1809] = 870, - [1810] = 871, - [1811] = 873, - [1812] = 874, - [1813] = 809, - [1814] = 1732, - [1815] = 1731, - [1816] = 876, - [1817] = 876, - [1818] = 1818, - [1819] = 643, - [1820] = 642, - [1821] = 636, - [1822] = 584, - [1823] = 597, - [1824] = 880, - [1825] = 599, - [1826] = 953, - [1827] = 876, - [1828] = 968, - [1829] = 631, - [1830] = 876, - [1831] = 859, - [1832] = 1717, - [1833] = 1702, - [1834] = 871, - [1835] = 1715, - [1836] = 1712, - [1837] = 862, - [1838] = 942, - [1839] = 966, - [1840] = 967, - [1841] = 939, - [1842] = 964, - [1843] = 946, - [1844] = 927, - [1845] = 926, - [1846] = 876, - [1847] = 923, - [1848] = 950, - [1849] = 986, - [1850] = 941, - [1851] = 964, - [1852] = 952, - [1853] = 965, - [1854] = 973, - [1855] = 922, - [1856] = 966, - [1857] = 950, - [1858] = 981, - [1859] = 946, - [1860] = 982, - [1861] = 967, - [1862] = 968, - [1863] = 945, - [1864] = 984, - [1865] = 985, - [1866] = 942, - [1867] = 944, - [1868] = 973, - [1869] = 988, - [1870] = 939, - [1871] = 927, - [1872] = 980, - [1873] = 947, - [1874] = 981, - [1875] = 926, - [1876] = 982, - [1877] = 864, - [1878] = 923, - [1879] = 984, - [1880] = 955, - [1881] = 953, - [1882] = 971, - [1883] = 970, - [1884] = 969, - [1885] = 922, - [1886] = 916, - [1887] = 952, - [1888] = 892, - [1889] = 905, - [1890] = 916, - [1891] = 985, - [1892] = 904, - [1893] = 878, - [1894] = 905, - [1895] = 1785, - [1896] = 875, - [1897] = 904, - [1898] = 963, - [1899] = 965, - [1900] = 863, - [1901] = 909, - [1902] = 988, - [1903] = 860, - [1904] = 962, - [1905] = 902, - [1906] = 861, - [1907] = 980, - [1908] = 971, - [1909] = 952, - [1910] = 970, - [1911] = 903, - [1912] = 969, - [1913] = 914, - [1914] = 963, - [1915] = 883, - [1916] = 884, - [1917] = 962, - [1918] = 874, - [1919] = 902, - [1920] = 903, - [1921] = 873, - [1922] = 882, - [1923] = 952, - [1924] = 871, - [1925] = 870, - [1926] = 929, - [1927] = 928, - [1928] = 945, - [1929] = 913, - [1930] = 880, - [1931] = 912, - [1932] = 918, - [1933] = 911, - [1934] = 910, - [1935] = 908, - [1936] = 952, - [1937] = 907, - [1938] = 907, - [1939] = 858, - [1940] = 957, - [1941] = 952, - [1942] = 941, - [1943] = 944, - [1944] = 947, - [1945] = 906, - [1946] = 929, - [1947] = 928, - [1948] = 913, - [1949] = 912, - [1950] = 876, - [1951] = 911, - [1952] = 952, - [1953] = 876, - [1954] = 952, - [1955] = 910, - [1956] = 908, - [1957] = 865, - [1958] = 940, + [1772] = 361, + [1773] = 436, + [1774] = 424, + [1775] = 959, + [1776] = 468, + [1777] = 1679, + [1778] = 967, + [1779] = 397, + [1780] = 874, + [1781] = 960, + [1782] = 472, + [1783] = 868, + [1784] = 349, + [1785] = 411, + [1786] = 879, + [1787] = 968, + [1788] = 872, + [1789] = 498, + [1790] = 912, + [1791] = 881, + [1792] = 507, + [1793] = 358, + [1794] = 359, + [1795] = 1795, + [1796] = 949, + [1797] = 950, + [1798] = 1798, + [1799] = 954, + [1800] = 1771, + [1801] = 879, + [1802] = 879, + [1803] = 615, + [1804] = 941, + [1805] = 913, + [1806] = 869, + [1807] = 866, + [1808] = 350, + [1809] = 366, + [1810] = 367, + [1811] = 1811, + [1812] = 941, + [1813] = 969, + [1814] = 970, + [1815] = 971, + [1816] = 368, + [1817] = 369, + [1818] = 972, + [1819] = 869, + [1820] = 868, + [1821] = 867, + [1822] = 865, + [1823] = 326, + [1824] = 1798, + [1825] = 973, + [1826] = 966, + [1827] = 1795, + [1828] = 370, + [1829] = 887, + [1830] = 879, + [1831] = 886, + [1832] = 371, + [1833] = 1811, + [1834] = 372, + [1835] = 928, + [1836] = 896, + [1837] = 897, + [1838] = 899, + [1839] = 541, + [1840] = 911, + [1841] = 902, + [1842] = 879, + [1843] = 379, + [1844] = 904, + [1845] = 549, + [1846] = 964, + [1847] = 869, + [1848] = 545, + [1849] = 961, + [1850] = 969, + [1851] = 878, + [1852] = 877, + [1853] = 929, + [1854] = 913, + [1855] = 876, + [1856] = 326, + [1857] = 944, + [1858] = 966, + [1859] = 972, + [1860] = 945, + [1861] = 932, + [1862] = 934, + [1863] = 947, + [1864] = 967, + [1865] = 951, + [1866] = 866, + [1867] = 973, + [1868] = 972, + [1869] = 943, + [1870] = 971, + [1871] = 941, + [1872] = 970, + [1873] = 955, + [1874] = 956, + [1875] = 864, + [1876] = 911, + [1877] = 957, + [1878] = 958, + [1879] = 964, + [1880] = 959, + [1881] = 902, + [1882] = 904, + [1883] = 968, + [1884] = 960, + [1885] = 879, + [1886] = 887, + [1887] = 961, + [1888] = 954, + [1889] = 879, + [1890] = 963, + [1891] = 913, + [1892] = 950, + [1893] = 915, + [1894] = 949, + [1895] = 921, + [1896] = 912, + [1897] = 913, + [1898] = 865, + [1899] = 914, + [1900] = 867, + [1901] = 868, + [1902] = 869, + [1903] = 916, + [1904] = 968, + [1905] = 917, + [1906] = 918, + [1907] = 969, + [1908] = 910, + [1909] = 963, + [1910] = 883, + [1911] = 970, + [1912] = 971, + [1913] = 913, + [1914] = 919, + [1915] = 874, + [1916] = 913, + [1917] = 922, + [1918] = 923, + [1919] = 973, + [1920] = 959, + [1921] = 924, + [1922] = 958, + [1923] = 957, + [1924] = 913, + [1925] = 966, + [1926] = 925, + [1927] = 926, + [1928] = 927, + [1929] = 911, + [1930] = 928, + [1931] = 956, + [1932] = 955, + [1933] = 930, + [1934] = 964, + [1935] = 943, + [1936] = 931, + [1937] = 879, + [1938] = 933, + [1939] = 935, + [1940] = 936, + [1941] = 954, + [1942] = 951, + [1943] = 950, + [1944] = 926, + [1945] = 949, + [1946] = 912, + [1947] = 927, + [1948] = 928, + [1949] = 914, + [1950] = 947, + [1951] = 872, + [1952] = 930, + [1953] = 931, + [1954] = 933, + [1955] = 945, + [1956] = 913, + [1957] = 916, + [1958] = 917, [1959] = 918, - [1960] = 940, - [1961] = 909, - [1962] = 859, - [1963] = 957, - [1964] = 914, - [1965] = 910, - [1966] = 631, - [1967] = 909, - [1968] = 939, - [1969] = 319, - [1970] = 415, - [1971] = 497, - [1972] = 488, - [1973] = 942, - [1974] = 1974, - [1975] = 929, - [1976] = 964, - [1977] = 971, - [1978] = 928, - [1979] = 926, - [1980] = 923, - [1981] = 922, - [1982] = 916, - [1983] = 905, - [1984] = 414, - [1985] = 904, - [1986] = 973, - [1987] = 965, - [1988] = 946, - [1989] = 1989, - [1990] = 966, - [1991] = 950, - [1992] = 980, - [1993] = 947, - [1994] = 944, - [1995] = 970, - [1996] = 941, - [1997] = 969, - [1998] = 673, - [1999] = 952, - [2000] = 914, - [2001] = 319, - [2002] = 497, - [2003] = 405, - [2004] = 988, - [2005] = 985, - [2006] = 918, - [2007] = 940, - [2008] = 963, - [2009] = 413, - [2010] = 2010, - [2011] = 652, - [2012] = 962, - [2013] = 952, - [2014] = 651, - [2015] = 957, - [2016] = 644, - [2017] = 902, - [2018] = 809, - [2019] = 907, - [2020] = 967, - [2021] = 488, - [2022] = 984, - [2023] = 908, - [2024] = 903, - [2025] = 982, - [2026] = 911, - [2027] = 643, - [2028] = 981, - [2029] = 952, - [2030] = 912, - [2031] = 539, - [2032] = 597, - [2033] = 599, - [2034] = 945, - [2035] = 642, - [2036] = 423, - [2037] = 927, - [2038] = 913, - [2039] = 809, - [2040] = 636, - [2041] = 415, - [2042] = 413, - [2043] = 414, - [2044] = 892, - [2045] = 876, - [2046] = 870, - [2047] = 871, - [2048] = 873, - [2049] = 875, - [2050] = 874, - [2051] = 2051, - [2052] = 952, - [2053] = 843, - [2054] = 2054, - [2055] = 2055, - [2056] = 2055, - [2057] = 2057, + [1960] = 944, + [1961] = 1663, + [1962] = 919, + [1963] = 899, + [1964] = 897, + [1965] = 935, + [1966] = 896, + [1967] = 913, + [1968] = 886, + [1969] = 910, + [1970] = 929, + [1971] = 936, + [1972] = 922, + [1973] = 932, + [1974] = 934, + [1975] = 923, + [1976] = 924, + [1977] = 925, + [1978] = 973, + [1979] = 945, + [1980] = 379, + [1981] = 372, + [1982] = 371, + [1983] = 370, + [1984] = 369, + [1985] = 368, + [1986] = 367, + [1987] = 366, + [1988] = 359, + [1989] = 358, + [1990] = 913, + [1991] = 1991, + [1992] = 498, + [1993] = 635, + [1994] = 696, + [1995] = 1995, + [1996] = 913, + [1997] = 1997, + [1998] = 932, + [1999] = 424, + [2000] = 397, + [2001] = 411, + [2002] = 929, + [2003] = 910, + [2004] = 913, + [2005] = 944, + [2006] = 947, + [2007] = 951, + [2008] = 934, + [2009] = 943, + [2010] = 955, + [2011] = 956, + [2012] = 957, + [2013] = 958, + [2014] = 959, + [2015] = 961, + [2016] = 963, + [2017] = 968, + [2018] = 969, + [2019] = 970, + [2020] = 971, + [2021] = 972, + [2022] = 966, + [2023] = 911, + [2024] = 964, + [2025] = 954, + [2026] = 950, + [2027] = 949, + [2028] = 912, + [2029] = 914, + [2030] = 916, + [2031] = 917, + [2032] = 918, + [2033] = 919, + [2034] = 498, + [2035] = 615, + [2036] = 922, + [2037] = 923, + [2038] = 924, + [2039] = 326, + [2040] = 925, + [2041] = 349, + [2042] = 926, + [2043] = 927, + [2044] = 928, + [2045] = 930, + [2046] = 931, + [2047] = 933, + [2048] = 326, + [2049] = 935, + [2050] = 936, + [2051] = 424, + [2052] = 397, + [2053] = 411, + [2054] = 635, + [2055] = 696, + [2056] = 549, + [2057] = 876, [2058] = 2058, - [2059] = 2059, - [2060] = 2060, - [2061] = 2059, - [2062] = 2060, - [2063] = 2055, - [2064] = 2057, - [2065] = 2057, - [2066] = 2055, - [2067] = 2058, - [2068] = 2059, - [2069] = 2055, - [2070] = 2055, - [2071] = 2059, - [2072] = 2057, - [2073] = 2055, + [2059] = 879, + [2060] = 865, + [2061] = 867, + [2062] = 868, + [2063] = 869, + [2064] = 339, + [2065] = 878, + [2066] = 913, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2068, + [2071] = 2069, + [2072] = 2072, + [2073] = 2073, [2074] = 2074, - [2075] = 2055, - [2076] = 2057, - [2077] = 2059, - [2078] = 2058, - [2079] = 2060, - [2080] = 2055, - [2081] = 2058, - [2082] = 2057, - [2083] = 2058, - [2084] = 2059, - [2085] = 2060, - [2086] = 2057, - [2087] = 2055, - [2088] = 2058, - [2089] = 2059, - [2090] = 2057, - [2091] = 2055, - [2092] = 2057, - [2093] = 2055, - [2094] = 2058, - [2095] = 2059, - [2096] = 2060, - [2097] = 2060, - [2098] = 2098, - [2099] = 2060, - [2100] = 2060, - [2101] = 2058, - [2102] = 2060, - [2103] = 2059, - [2104] = 2058, - [2105] = 2055, - [2106] = 2055, - [2107] = 2055, - [2108] = 2108, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2111, - [2116] = 874, - [2117] = 2111, - [2118] = 2118, - [2119] = 2119, - [2120] = 2120, - [2121] = 2113, - [2122] = 2108, - [2123] = 2112, - [2124] = 2110, - [2125] = 2108, - [2126] = 2112, - [2127] = 2118, - [2128] = 2112, - [2129] = 2108, - [2130] = 873, - [2131] = 2110, - [2132] = 2113, - [2133] = 2110, - [2134] = 2110, - [2135] = 2112, - [2136] = 2108, - [2137] = 2108, - [2138] = 2111, - [2139] = 2113, - [2140] = 2113, - [2141] = 2110, - [2142] = 2118, - [2143] = 2143, - [2144] = 2109, - [2145] = 2110, - [2146] = 2110, - [2147] = 2111, - [2148] = 2111, - [2149] = 2118, - [2150] = 2113, - [2151] = 2151, - [2152] = 870, - [2153] = 2111, - [2154] = 2113, - [2155] = 2111, - [2156] = 2111, - [2157] = 2108, - [2158] = 2119, - [2159] = 2109, - [2160] = 2143, - [2161] = 2108, - [2162] = 2113, - [2163] = 2118, - [2164] = 2113, - [2165] = 2108, - [2166] = 2110, - [2167] = 2112, - [2168] = 2111, - [2169] = 2118, - [2170] = 2118, - [2171] = 2118, - [2172] = 2111, - [2173] = 2109, - [2174] = 2174, - [2175] = 2110, - [2176] = 2110, - [2177] = 2118, - [2178] = 2113, - [2179] = 2109, - [2180] = 2114, - [2181] = 2112, - [2182] = 2108, - [2183] = 2112, - [2184] = 2118, - [2185] = 871, - [2186] = 2112, - [2187] = 2110, - [2188] = 2120, - [2189] = 2109, - [2190] = 2109, - [2191] = 2108, - [2192] = 2113, - [2193] = 2110, - [2194] = 2110, - [2195] = 2111, - [2196] = 2118, - [2197] = 2197, - [2198] = 2113, - [2199] = 2113, - [2200] = 2110, - [2201] = 2112, - [2202] = 2118, - [2203] = 2109, - [2204] = 2110, - [2205] = 2205, - [2206] = 2206, - [2207] = 2111, - [2208] = 2118, - [2209] = 2111, - [2210] = 2210, - [2211] = 2118, - [2212] = 2109, - [2213] = 2113, - [2214] = 870, - [2215] = 871, - [2216] = 873, - [2217] = 874, - [2218] = 874, - [2219] = 873, - [2220] = 871, - [2221] = 870, - [2222] = 874, - [2223] = 870, - [2224] = 871, - [2225] = 874, - [2226] = 870, - [2227] = 873, - [2228] = 873, - [2229] = 871, - [2230] = 874, - [2231] = 870, - [2232] = 873, - [2233] = 871, - [2234] = 874, - [2235] = 2235, - [2236] = 870, - [2237] = 871, - [2238] = 2235, - [2239] = 873, - [2240] = 2235, - [2241] = 2241, - [2242] = 2241, - [2243] = 2241, - [2244] = 2244, - [2245] = 2241, - [2246] = 2241, - [2247] = 2241, - [2248] = 2241, - [2249] = 2241, - [2250] = 2250, - [2251] = 2241, - [2252] = 2252, - [2253] = 2253, - [2254] = 874, - [2255] = 2255, - [2256] = 873, - [2257] = 871, - [2258] = 870, - [2259] = 2259, + [2075] = 2072, + [2076] = 2072, + [2077] = 2073, + [2078] = 2074, + [2079] = 2069, + [2080] = 2073, + [2081] = 2074, + [2082] = 2069, + [2083] = 2069, + [2084] = 2073, + [2085] = 2068, + [2086] = 2069, + [2087] = 2069, + [2088] = 2068, + [2089] = 2069, + [2090] = 2068, + [2091] = 2069, + [2092] = 2074, + [2093] = 2073, + [2094] = 2072, + [2095] = 2073, + [2096] = 2074, + [2097] = 2072, + [2098] = 2072, + [2099] = 2099, + [2100] = 2100, + [2101] = 2073, + [2102] = 2068, + [2103] = 2069, + [2104] = 2072, + [2105] = 2069, + [2106] = 2073, + [2107] = 2073, + [2108] = 2069, + [2109] = 2068, + [2110] = 2074, + [2111] = 2069, + [2112] = 2074, + [2113] = 2072, + [2114] = 2072, + [2115] = 2069, + [2116] = 2074, + [2117] = 2074, + [2118] = 2068, + [2119] = 2069, + [2120] = 2068, + [2121] = 2121, + [2122] = 2122, + [2123] = 2121, + [2124] = 2124, + [2125] = 2125, + [2126] = 2122, + [2127] = 2122, + [2128] = 2125, + [2129] = 2129, + [2130] = 2130, + [2131] = 2129, + [2132] = 2121, + [2133] = 2129, + [2134] = 2134, + [2135] = 2135, + [2136] = 2136, + [2137] = 2121, + [2138] = 2124, + [2139] = 2124, + [2140] = 2122, + [2141] = 2122, + [2142] = 2135, + [2143] = 2125, + [2144] = 2135, + [2145] = 2134, + [2146] = 2134, + [2147] = 2121, + [2148] = 865, + [2149] = 867, + [2150] = 2125, + [2151] = 869, + [2152] = 2122, + [2153] = 2124, + [2154] = 2125, + [2155] = 2155, + [2156] = 2129, + [2157] = 2125, + [2158] = 2158, + [2159] = 2121, + [2160] = 2160, + [2161] = 2121, + [2162] = 2124, + [2163] = 2122, + [2164] = 2125, + [2165] = 2129, + [2166] = 2166, + [2167] = 2121, + [2168] = 2155, + [2169] = 2124, + [2170] = 2129, + [2171] = 2124, + [2172] = 2122, + [2173] = 2125, + [2174] = 2122, + [2175] = 2134, + [2176] = 2135, + [2177] = 2129, + [2178] = 2125, + [2179] = 2135, + [2180] = 2121, + [2181] = 2158, + [2182] = 2182, + [2183] = 2129, + [2184] = 2134, + [2185] = 2185, + [2186] = 2135, + [2187] = 2135, + [2188] = 2134, + [2189] = 2121, + [2190] = 2190, + [2191] = 2191, + [2192] = 2135, + [2193] = 2134, + [2194] = 2135, + [2195] = 2129, + [2196] = 2124, + [2197] = 2121, + [2198] = 2124, + [2199] = 2125, + [2200] = 2122, + [2201] = 2124, + [2202] = 2125, + [2203] = 2122, + [2204] = 2134, + [2205] = 2122, + [2206] = 2124, + [2207] = 2121, + [2208] = 2121, + [2209] = 2124, + [2210] = 868, + [2211] = 2125, + [2212] = 2121, + [2213] = 2134, + [2214] = 2122, + [2215] = 2124, + [2216] = 2135, + [2217] = 2124, + [2218] = 2134, + [2219] = 2125, + [2220] = 2122, + [2221] = 2135, + [2222] = 2185, + [2223] = 2121, + [2224] = 2125, + [2225] = 2121, + [2226] = 2136, + [2227] = 869, + [2228] = 868, + [2229] = 867, + [2230] = 865, + [2231] = 867, + [2232] = 865, + [2233] = 868, + [2234] = 869, + [2235] = 869, + [2236] = 869, + [2237] = 867, + [2238] = 868, + [2239] = 868, + [2240] = 865, + [2241] = 867, + [2242] = 865, + [2243] = 865, + [2244] = 868, + [2245] = 867, + [2246] = 869, + [2247] = 2247, + [2248] = 865, + [2249] = 867, + [2250] = 2247, + [2251] = 869, + [2252] = 2247, + [2253] = 868, + [2254] = 2254, + [2255] = 2254, + [2256] = 2256, + [2257] = 2254, + [2258] = 2254, + [2259] = 2254, [2260] = 2260, - [2261] = 497, - [2262] = 843, - [2263] = 2263, - [2264] = 415, - [2265] = 413, - [2266] = 414, - [2267] = 488, - [2268] = 2268, + [2261] = 2254, + [2262] = 2254, + [2263] = 2254, + [2264] = 2254, + [2265] = 2265, + [2266] = 865, + [2267] = 867, + [2268] = 868, [2269] = 2269, - [2270] = 2269, - [2271] = 2269, - [2272] = 2269, - [2273] = 2269, - [2274] = 2269, - [2275] = 2275, - [2276] = 2275, - [2277] = 2269, - [2278] = 2269, - [2279] = 2269, - [2280] = 413, - [2281] = 497, - [2282] = 415, - [2283] = 414, - [2284] = 488, - [2285] = 413, - [2286] = 2286, + [2270] = 2270, + [2271] = 2271, + [2272] = 869, + [2273] = 2273, + [2274] = 397, + [2275] = 411, + [2276] = 696, + [2277] = 635, + [2278] = 2278, + [2279] = 2279, + [2280] = 424, + [2281] = 339, + [2282] = 2282, + [2283] = 424, + [2284] = 2282, + [2285] = 2282, + [2286] = 2282, [2287] = 2287, - [2288] = 2287, - [2289] = 2289, + [2288] = 411, + [2289] = 2282, [2290] = 2287, - [2291] = 2287, - [2292] = 2289, - [2293] = 2289, - [2294] = 2287, - [2295] = 2289, - [2296] = 415, - [2297] = 2289, - [2298] = 488, - [2299] = 2289, - [2300] = 843, - [2301] = 2289, - [2302] = 414, - [2303] = 2289, - [2304] = 497, - [2305] = 2287, - [2306] = 2289, - [2307] = 2286, - [2308] = 2287, - [2309] = 2287, - [2310] = 2287, - [2311] = 2311, - [2312] = 415, - [2313] = 2313, - [2314] = 2314, - [2315] = 2315, - [2316] = 2316, - [2317] = 413, - [2318] = 2316, - [2319] = 2314, - [2320] = 2316, - [2321] = 488, - [2322] = 2316, - [2323] = 2323, - [2324] = 2314, - [2325] = 2325, - [2326] = 415, - [2327] = 2313, - [2328] = 2316, - [2329] = 2314, - [2330] = 2314, - [2331] = 2316, - [2332] = 413, - [2333] = 2333, - [2334] = 414, - [2335] = 497, - [2336] = 2316, - [2337] = 2314, - [2338] = 1974, - [2339] = 2313, - [2340] = 2314, + [2291] = 2282, + [2292] = 2282, + [2293] = 397, + [2294] = 2282, + [2295] = 2282, + [2296] = 696, + [2297] = 635, + [2298] = 2298, + [2299] = 635, + [2300] = 2300, + [2301] = 2298, + [2302] = 2298, + [2303] = 2300, + [2304] = 2300, + [2305] = 2298, + [2306] = 2298, + [2307] = 2307, + [2308] = 696, + [2309] = 411, + [2310] = 397, + [2311] = 2298, + [2312] = 2300, + [2313] = 2300, + [2314] = 2298, + [2315] = 339, + [2316] = 2298, + [2317] = 2298, + [2318] = 2300, + [2319] = 424, + [2320] = 2307, + [2321] = 2300, + [2322] = 2300, + [2323] = 2300, + [2324] = 2324, + [2325] = 2324, + [2326] = 2326, + [2327] = 2327, + [2328] = 696, + [2329] = 2327, + [2330] = 2327, + [2331] = 2331, + [2332] = 635, + [2333] = 2324, + [2334] = 2327, + [2335] = 2331, + [2336] = 1995, + [2337] = 2331, + [2338] = 2338, + [2339] = 696, + [2340] = 696, [2341] = 2341, - [2342] = 2313, - [2343] = 2343, - [2344] = 2316, - [2345] = 2345, - [2346] = 2316, - [2347] = 488, - [2348] = 413, - [2349] = 488, - [2350] = 2313, - [2351] = 2313, - [2352] = 2314, - [2353] = 2333, - [2354] = 497, - [2355] = 2313, - [2356] = 2356, - [2357] = 1989, - [2358] = 2356, - [2359] = 2313, - [2360] = 497, - [2361] = 414, - [2362] = 415, - [2363] = 2313, - [2364] = 414, - [2365] = 2314, - [2366] = 2366, - [2367] = 2367, - [2368] = 2368, - [2369] = 2366, + [2342] = 2331, + [2343] = 2324, + [2344] = 411, + [2345] = 2327, + [2346] = 2324, + [2347] = 2327, + [2348] = 2348, + [2349] = 2326, + [2350] = 397, + [2351] = 2331, + [2352] = 1991, + [2353] = 2353, + [2354] = 635, + [2355] = 2355, + [2356] = 2327, + [2357] = 2324, + [2358] = 411, + [2359] = 2327, + [2360] = 2331, + [2361] = 2361, + [2362] = 397, + [2363] = 2327, + [2364] = 2324, + [2365] = 2331, + [2366] = 2331, + [2367] = 2324, + [2368] = 424, + [2369] = 2369, [2370] = 2370, - [2371] = 2371, - [2372] = 2372, - [2373] = 415, - [2374] = 2372, - [2375] = 2371, - [2376] = 2368, - [2377] = 2377, - [2378] = 2377, - [2379] = 2370, - [2380] = 2368, - [2381] = 2381, - [2382] = 2377, + [2371] = 2324, + [2372] = 635, + [2373] = 397, + [2374] = 2331, + [2375] = 424, + [2376] = 2369, + [2377] = 411, + [2378] = 424, + [2379] = 2379, + [2380] = 2380, + [2381] = 2380, + [2382] = 2382, [2383] = 2383, - [2384] = 1974, + [2384] = 2382, [2385] = 2385, - [2386] = 2366, - [2387] = 2371, - [2388] = 2366, - [2389] = 2389, - [2390] = 2371, - [2391] = 2391, - [2392] = 2366, - [2393] = 2371, - [2394] = 2368, - [2395] = 2395, - [2396] = 2377, - [2397] = 2371, - [2398] = 2371, - [2399] = 2377, - [2400] = 2400, - [2401] = 488, - [2402] = 2368, - [2403] = 2403, - [2404] = 2366, - [2405] = 2405, - [2406] = 2406, - [2407] = 2381, - [2408] = 2368, - [2409] = 2400, - [2410] = 2368, - [2411] = 2366, - [2412] = 2368, - [2413] = 497, - [2414] = 2377, - [2415] = 2415, - [2416] = 414, - [2417] = 2368, - [2418] = 2371, - [2419] = 2377, + [2386] = 2386, + [2387] = 2387, + [2388] = 2386, + [2389] = 2382, + [2390] = 2390, + [2391] = 2382, + [2392] = 2392, + [2393] = 424, + [2394] = 2392, + [2395] = 2380, + [2396] = 2386, + [2397] = 2397, + [2398] = 397, + [2399] = 2392, + [2400] = 2341, + [2401] = 2401, + [2402] = 2392, + [2403] = 1991, + [2404] = 2404, + [2405] = 2382, + [2406] = 2380, + [2407] = 2380, + [2408] = 635, + [2409] = 2409, + [2410] = 2410, + [2411] = 2392, + [2412] = 2386, + [2413] = 696, + [2414] = 635, + [2415] = 2380, + [2416] = 2382, + [2417] = 2361, + [2418] = 2386, + [2419] = 696, [2420] = 2420, - [2421] = 2377, - [2422] = 2415, - [2423] = 2366, - [2424] = 2371, - [2425] = 413, - [2426] = 2366, - [2427] = 2427, - [2428] = 2377, - [2429] = 2427, + [2421] = 2421, + [2422] = 2380, + [2423] = 2392, + [2424] = 2386, + [2425] = 2386, + [2426] = 2426, + [2427] = 2392, + [2428] = 2397, + [2429] = 2382, [2430] = 2430, [2431] = 2431, - [2432] = 2315, - [2433] = 2433, + [2432] = 2380, + [2433] = 2404, [2434] = 2434, - [2435] = 2435, - [2436] = 2436, - [2437] = 2437, - [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 2436, - [2442] = 2435, - [2443] = 2436, - [2444] = 2444, + [2435] = 2382, + [2436] = 2386, + [2437] = 2380, + [2438] = 2409, + [2439] = 2383, + [2440] = 2382, + [2441] = 2392, + [2442] = 2386, + [2443] = 2410, + [2444] = 2392, [2445] = 2431, - [2446] = 2440, + [2446] = 411, [2447] = 2447, - [2448] = 2440, + [2448] = 2448, [2449] = 2449, - [2450] = 2438, - [2451] = 2437, - [2452] = 2437, - [2453] = 2435, - [2454] = 2436, - [2455] = 2438, - [2456] = 2438, - [2457] = 2444, - [2458] = 2435, - [2459] = 2431, - [2460] = 2439, - [2461] = 2436, - [2462] = 2439, - [2463] = 2440, - [2464] = 2440, - [2465] = 2465, - [2466] = 2439, - [2467] = 2440, - [2468] = 2440, - [2469] = 2440, - [2470] = 2435, - [2471] = 2439, - [2472] = 2431, - [2473] = 2465, - [2474] = 2444, - [2475] = 2435, - [2476] = 2430, - [2477] = 2440, - [2478] = 2435, - [2479] = 2440, - [2480] = 2435, - [2481] = 2449, - [2482] = 2440, - [2483] = 2435, - [2484] = 2435, - [2485] = 2437, - [2486] = 2440, - [2487] = 2435, - [2488] = 2438, - [2489] = 2436, - [2490] = 2435, - [2491] = 2431, - [2492] = 2435, - [2493] = 2444, - [2494] = 2444, - [2495] = 2437, - [2496] = 2440, - [2497] = 2437, - [2498] = 2435, - [2499] = 2440, - [2500] = 2431, - [2501] = 2435, - [2502] = 2435, - [2503] = 2436, - [2504] = 2435, - [2505] = 2440, - [2506] = 2439, - [2507] = 2435, - [2508] = 2440, - [2509] = 2438, - [2510] = 2440, - [2511] = 2431, - [2512] = 2431, - [2513] = 2438, - [2514] = 2435, - [2515] = 2438, - [2516] = 2440, - [2517] = 2436, - [2518] = 2444, - [2519] = 2345, - [2520] = 2444, - [2521] = 2435, - [2522] = 2440, - [2523] = 2437, - [2524] = 2439, - [2525] = 2435, - [2526] = 2444, - [2527] = 2437, - [2528] = 2440, - [2529] = 2529, - [2530] = 2444, - [2531] = 2435, - [2532] = 2436, - [2533] = 2431, - [2534] = 2534, - [2535] = 2438, - [2536] = 2439, - [2537] = 2437, - [2538] = 2538, - [2539] = 2539, - [2540] = 2439, - [2541] = 2440, - [2542] = 2440, - [2543] = 2449, - [2544] = 2544, - [2545] = 415, - [2546] = 413, - [2547] = 2547, - [2548] = 2548, - [2549] = 2547, - [2550] = 413, - [2551] = 2547, - [2552] = 413, - [2553] = 2547, - [2554] = 2547, - [2555] = 413, - [2556] = 413, - [2557] = 2547, - [2558] = 413, - [2559] = 2547, - [2560] = 488, - [2561] = 2547, - [2562] = 497, - [2563] = 2547, - [2564] = 2547, - [2565] = 2547, - [2566] = 850, - [2567] = 413, - [2568] = 413, - [2569] = 2569, - [2570] = 413, - [2571] = 2571, - [2572] = 414, + [2450] = 2450, + [2451] = 2450, + [2452] = 2452, + [2453] = 2450, + [2454] = 2452, + [2455] = 2452, + [2456] = 2450, + [2457] = 2452, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 2450, + [2462] = 2448, + [2463] = 2452, + [2464] = 2452, + [2465] = 2459, + [2466] = 2466, + [2467] = 2467, + [2468] = 2452, + [2469] = 2469, + [2470] = 2452, + [2471] = 2448, + [2472] = 2447, + [2473] = 2459, + [2474] = 2466, + [2475] = 2450, + [2476] = 2459, + [2477] = 2466, + [2478] = 2469, + [2479] = 2452, + [2480] = 2450, + [2481] = 2467, + [2482] = 2450, + [2483] = 2447, + [2484] = 2450, + [2485] = 2485, + [2486] = 2450, + [2487] = 2469, + [2488] = 2488, + [2489] = 2452, + [2490] = 2450, + [2491] = 2459, + [2492] = 2450, + [2493] = 2452, + [2494] = 2452, + [2495] = 2450, + [2496] = 2467, + [2497] = 2447, + [2498] = 2447, + [2499] = 2452, + [2500] = 2447, + [2501] = 2450, + [2502] = 2466, + [2503] = 2469, + [2504] = 2452, + [2505] = 2448, + [2506] = 2466, + [2507] = 2452, + [2508] = 2459, + [2509] = 2469, + [2510] = 2510, + [2511] = 2450, + [2512] = 2467, + [2513] = 2488, + [2514] = 2466, + [2515] = 2450, + [2516] = 2467, + [2517] = 2452, + [2518] = 2488, + [2519] = 2450, + [2520] = 2520, + [2521] = 2521, + [2522] = 2520, + [2523] = 2447, + [2524] = 2448, + [2525] = 2450, + [2526] = 2448, + [2527] = 2452, + [2528] = 2467, + [2529] = 2452, + [2530] = 2448, + [2531] = 2452, + [2532] = 2452, + [2533] = 2469, + [2534] = 2450, + [2535] = 2448, + [2536] = 2459, + [2537] = 2452, + [2538] = 2450, + [2539] = 2459, + [2540] = 2466, + [2541] = 2466, + [2542] = 2542, + [2543] = 2469, + [2544] = 340, + [2545] = 2469, + [2546] = 2447, + [2547] = 2447, + [2548] = 2466, + [2549] = 2450, + [2550] = 2550, + [2551] = 2469, + [2552] = 2452, + [2553] = 2510, + [2554] = 2450, + [2555] = 2467, + [2556] = 2450, + [2557] = 2459, + [2558] = 2448, + [2559] = 2467, + [2560] = 2467, + [2561] = 2561, + [2562] = 635, + [2563] = 424, + [2564] = 424, + [2565] = 2565, + [2566] = 696, + [2567] = 2565, + [2568] = 2565, + [2569] = 424, + [2570] = 2565, + [2571] = 424, + [2572] = 2572, [2573] = 2573, - [2574] = 2574, - [2575] = 2574, - [2576] = 2573, - [2577] = 2574, - [2578] = 2573, - [2579] = 2574, - [2580] = 2573, - [2581] = 2574, - [2582] = 2582, - [2583] = 2574, - [2584] = 2573, - [2585] = 2573, - [2586] = 2573, - [2587] = 2574, - [2588] = 2588, - [2589] = 2573, - [2590] = 2588, - [2591] = 2573, - [2592] = 2574, - [2593] = 2574, - [2594] = 2594, - [2595] = 2594, - [2596] = 2596, - [2597] = 2597, - [2598] = 2598, - [2599] = 850, - [2600] = 2600, - [2601] = 2601, + [2574] = 424, + [2575] = 2565, + [2576] = 2565, + [2577] = 397, + [2578] = 2578, + [2579] = 2565, + [2580] = 411, + [2581] = 424, + [2582] = 424, + [2583] = 2565, + [2584] = 424, + [2585] = 2565, + [2586] = 2565, + [2587] = 424, + [2588] = 2565, + [2589] = 2589, + [2590] = 2589, + [2591] = 2589, + [2592] = 2592, + [2593] = 2589, + [2594] = 2592, + [2595] = 2589, + [2596] = 2589, + [2597] = 2592, + [2598] = 2589, + [2599] = 2592, + [2600] = 2592, + [2601] = 2592, [2602] = 2602, - [2603] = 2603, - [2604] = 2604, - [2605] = 2605, + [2603] = 2602, + [2604] = 2592, + [2605] = 2589, [2606] = 2606, - [2607] = 2607, - [2608] = 2606, - [2609] = 2609, - [2610] = 2606, - [2611] = 850, - [2612] = 2606, + [2607] = 2592, + [2608] = 2589, + [2609] = 2592, + [2610] = 2610, + [2611] = 340, + [2612] = 2612, [2613] = 2613, - [2614] = 2606, - [2615] = 2606, - [2616] = 2604, - [2617] = 2606, - [2618] = 2613, - [2619] = 2613, - [2620] = 2606, - [2621] = 2602, - [2622] = 843, - [2623] = 2613, - [2624] = 2602, - [2625] = 2602, - [2626] = 2613, - [2627] = 356, - [2628] = 2602, - [2629] = 2606, - [2630] = 575, - [2631] = 553, - [2632] = 843, - [2633] = 526, - [2634] = 2603, - [2635] = 433, + [2614] = 2614, + [2615] = 2615, + [2616] = 2613, + [2617] = 2617, + [2618] = 2618, + [2619] = 560, + [2620] = 2620, + [2621] = 2621, + [2622] = 2622, + [2623] = 2617, + [2624] = 2621, + [2625] = 2625, + [2626] = 2617, + [2627] = 2617, + [2628] = 436, + [2629] = 2629, + [2630] = 447, + [2631] = 436, + [2632] = 2621, + [2633] = 487, + [2634] = 2622, + [2635] = 360, [2636] = 2636, - [2637] = 2602, - [2638] = 551, - [2639] = 2639, - [2640] = 2636, - [2641] = 2613, - [2642] = 2613, - [2643] = 2609, - [2644] = 2602, - [2645] = 2613, - [2646] = 2607, - [2647] = 2647, - [2648] = 2602, - [2649] = 2613, - [2650] = 2650, - [2651] = 2601, - [2652] = 2602, - [2653] = 2653, - [2654] = 553, - [2655] = 575, - [2656] = 2653, - [2657] = 2653, - [2658] = 2653, - [2659] = 2659, - [2660] = 2653, - [2661] = 2653, - [2662] = 541, - [2663] = 850, - [2664] = 843, - [2665] = 433, - [2666] = 2653, - [2667] = 2667, - [2668] = 2653, - [2669] = 843, - [2670] = 551, - [2671] = 850, - [2672] = 2653, - [2673] = 2653, - [2674] = 2653, - [2675] = 356, - [2676] = 2653, - [2677] = 2653, - [2678] = 2653, - [2679] = 2653, - [2680] = 348, - [2681] = 2667, - [2682] = 526, - [2683] = 609, - [2684] = 609, - [2685] = 551, - [2686] = 2605, - [2687] = 2687, - [2688] = 553, - [2689] = 541, - [2690] = 433, - [2691] = 2691, - [2692] = 526, - [2693] = 2693, - [2694] = 541, - [2695] = 575, - [2696] = 2696, - [2697] = 2697, - [2698] = 553, - [2699] = 609, - [2700] = 2700, - [2701] = 2701, - [2702] = 2687, + [2637] = 487, + [2638] = 2620, + [2639] = 522, + [2640] = 2622, + [2641] = 2621, + [2642] = 522, + [2643] = 350, + [2644] = 361, + [2645] = 560, + [2646] = 2618, + [2647] = 2617, + [2648] = 2648, + [2649] = 2649, + [2650] = 382, + [2651] = 2629, + [2652] = 2617, + [2653] = 2617, + [2654] = 339, + [2655] = 2655, + [2656] = 2622, + [2657] = 2625, + [2658] = 2658, + [2659] = 2621, + [2660] = 2658, + [2661] = 2622, + [2662] = 340, + [2663] = 2621, + [2664] = 2617, + [2665] = 360, + [2666] = 2649, + [2667] = 2621, + [2668] = 339, + [2669] = 447, + [2670] = 2670, + [2671] = 2622, + [2672] = 2622, + [2673] = 2622, + [2674] = 2617, + [2675] = 2621, + [2676] = 2621, + [2677] = 2622, + [2678] = 339, + [2679] = 2679, + [2680] = 2670, + [2681] = 2681, + [2682] = 2682, + [2683] = 2683, + [2684] = 340, + [2685] = 2685, + [2686] = 2681, + [2687] = 2681, + [2688] = 2681, + [2689] = 2681, + [2690] = 2681, + [2691] = 2685, + [2692] = 2681, + [2693] = 2681, + [2694] = 340, + [2695] = 2681, + [2696] = 339, + [2697] = 2681, + [2698] = 2681, + [2699] = 2681, + [2700] = 2681, + [2701] = 2681, + [2702] = 2681, [2703] = 2703, - [2704] = 2697, - [2705] = 575, - [2706] = 551, - [2707] = 2697, - [2708] = 2697, - [2709] = 2697, + [2704] = 360, + [2705] = 2705, + [2706] = 2706, + [2707] = 382, + [2708] = 2708, + [2709] = 2709, [2710] = 2710, - [2711] = 2696, - [2712] = 2697, - [2713] = 2713, - [2714] = 2714, - [2715] = 2601, - [2716] = 2716, - [2717] = 2697, - [2718] = 356, - [2719] = 348, - [2720] = 526, - [2721] = 2721, - [2722] = 433, - [2723] = 2723, - [2724] = 2700, - [2725] = 2697, - [2726] = 2713, - [2727] = 2727, - [2728] = 348, - [2729] = 2697, - [2730] = 356, - [2731] = 2731, - [2732] = 2732, - [2733] = 2731, - [2734] = 2734, + [2711] = 2709, + [2712] = 2618, + [2713] = 382, + [2714] = 361, + [2715] = 522, + [2716] = 447, + [2717] = 560, + [2718] = 2636, + [2719] = 2719, + [2720] = 2709, + [2721] = 436, + [2722] = 522, + [2723] = 361, + [2724] = 2724, + [2725] = 487, + [2726] = 2726, + [2727] = 560, + [2728] = 2728, + [2729] = 350, + [2730] = 2730, + [2731] = 436, + [2732] = 360, + [2733] = 2709, + [2734] = 2709, [2735] = 2735, - [2736] = 2736, + [2736] = 2710, [2737] = 2737, - [2738] = 2736, - [2739] = 2739, - [2740] = 2740, - [2741] = 2735, - [2742] = 2742, - [2743] = 2743, - [2744] = 2732, - [2745] = 2745, - [2746] = 2732, - [2747] = 2747, + [2738] = 2708, + [2739] = 2730, + [2740] = 350, + [2741] = 447, + [2742] = 2709, + [2743] = 487, + [2744] = 2737, + [2745] = 2709, + [2746] = 2709, + [2747] = 2709, [2748] = 2748, [2749] = 2749, [2750] = 2750, - [2751] = 2742, - [2752] = 2732, - [2753] = 2735, - [2754] = 2754, - [2755] = 2736, - [2756] = 2756, + [2751] = 2751, + [2752] = 2752, + [2753] = 2753, + [2754] = 2750, + [2755] = 2755, + [2756] = 2748, [2757] = 2757, - [2758] = 2749, - [2759] = 2747, - [2760] = 2745, - [2761] = 2748, - [2762] = 2742, - [2763] = 2763, - [2764] = 2732, - [2765] = 2742, - [2766] = 2749, - [2767] = 2750, + [2758] = 2758, + [2759] = 2750, + [2760] = 2760, + [2761] = 2761, + [2762] = 2752, + [2763] = 2755, + [2764] = 2751, + [2765] = 2765, + [2766] = 2766, + [2767] = 2766, [2768] = 2750, - [2769] = 2736, - [2770] = 2742, - [2771] = 2735, - [2772] = 2749, - [2773] = 2742, - [2774] = 2754, - [2775] = 2775, - [2776] = 2776, - [2777] = 2777, - [2778] = 2732, - [2779] = 2775, - [2780] = 2749, - [2781] = 2736, - [2782] = 2735, - [2783] = 2775, - [2784] = 2750, - [2785] = 2775, - [2786] = 2749, - [2787] = 2775, - [2788] = 2775, - [2789] = 2735, - [2790] = 2750, - [2791] = 2775, - [2792] = 2748, - [2793] = 2735, - [2794] = 2775, - [2795] = 2742, - [2796] = 2747, - [2797] = 2732, - [2798] = 2745, - [2799] = 2740, - [2800] = 433, - [2801] = 348, - [2802] = 2747, - [2803] = 2754, - [2804] = 2745, - [2805] = 2805, - [2806] = 2806, - [2807] = 2740, - [2808] = 2748, - [2809] = 551, - [2810] = 2810, - [2811] = 2735, - [2812] = 2739, - [2813] = 2735, - [2814] = 2775, - [2815] = 541, - [2816] = 2739, - [2817] = 2754, - [2818] = 2754, - [2819] = 2739, + [2769] = 2760, + [2770] = 2761, + [2771] = 2758, + [2772] = 2752, + [2773] = 2765, + [2774] = 2753, + [2775] = 2751, + [2776] = 2755, + [2777] = 2766, + [2778] = 2778, + [2779] = 2758, + [2780] = 2757, + [2781] = 2748, + [2782] = 2761, + [2783] = 2761, + [2784] = 2766, + [2785] = 2785, + [2786] = 360, + [2787] = 2765, + [2788] = 2765, + [2789] = 2752, + [2790] = 2785, + [2791] = 2755, + [2792] = 2785, + [2793] = 2785, + [2794] = 2750, + [2795] = 2785, + [2796] = 2751, + [2797] = 2750, + [2798] = 560, + [2799] = 2799, + [2800] = 2760, + [2801] = 2799, + [2802] = 2755, + [2803] = 2751, + [2804] = 2799, + [2805] = 2750, + [2806] = 2799, + [2807] = 2760, + [2808] = 2808, + [2809] = 2809, + [2810] = 2757, + [2811] = 2757, + [2812] = 2799, + [2813] = 2750, + [2814] = 2748, + [2815] = 2799, + [2816] = 2755, + [2817] = 2799, + [2818] = 2818, + [2819] = 436, [2820] = 2820, - [2821] = 356, - [2822] = 2822, - [2823] = 2736, - [2824] = 2735, + [2821] = 2785, + [2822] = 2748, + [2823] = 2757, + [2824] = 2824, [2825] = 2825, - [2826] = 2740, - [2827] = 2827, - [2828] = 526, - [2829] = 2763, - [2830] = 2740, - [2831] = 2739, - [2832] = 2647, - [2833] = 2745, - [2834] = 2834, + [2826] = 2826, + [2827] = 2750, + [2828] = 2799, + [2829] = 2757, + [2830] = 2785, + [2831] = 2748, + [2832] = 447, + [2833] = 2760, + [2834] = 2755, [2835] = 2748, - [2836] = 2747, - [2837] = 2735, - [2838] = 2732, - [2839] = 2747, + [2836] = 2836, + [2837] = 2837, + [2838] = 2751, + [2839] = 350, [2840] = 2750, - [2841] = 2841, - [2842] = 2750, - [2843] = 2747, - [2844] = 2750, - [2845] = 2745, - [2846] = 2749, - [2847] = 2742, - [2848] = 2754, - [2849] = 553, - [2850] = 2735, - [2851] = 2736, - [2852] = 2735, - [2853] = 2748, - [2854] = 2747, - [2855] = 2739, - [2856] = 2745, + [2841] = 2799, + [2842] = 2758, + [2843] = 2758, + [2844] = 2844, + [2845] = 2761, + [2846] = 2752, + [2847] = 2766, + [2848] = 2765, + [2849] = 2758, + [2850] = 2850, + [2851] = 2851, + [2852] = 2752, + [2853] = 2750, + [2854] = 2750, + [2855] = 2751, + [2856] = 2755, [2857] = 2857, - [2858] = 2858, - [2859] = 2747, - [2860] = 2736, - [2861] = 2740, - [2862] = 2740, - [2863] = 609, - [2864] = 2864, - [2865] = 2865, - [2866] = 2739, - [2867] = 2745, - [2868] = 2732, + [2858] = 2761, + [2859] = 2760, + [2860] = 2860, + [2861] = 2757, + [2862] = 2765, + [2863] = 2748, + [2864] = 2766, + [2865] = 2761, + [2866] = 2758, + [2867] = 2867, + [2868] = 2766, [2869] = 2869, - [2870] = 2870, - [2871] = 2748, - [2872] = 2735, - [2873] = 2754, - [2874] = 2742, - [2875] = 2875, - [2876] = 2736, - [2877] = 2749, + [2870] = 2760, + [2871] = 2765, + [2872] = 487, + [2873] = 360, + [2874] = 522, + [2875] = 361, + [2876] = 2876, + [2877] = 2809, [2878] = 2748, - [2879] = 2745, - [2880] = 2748, - [2881] = 2735, - [2882] = 356, - [2883] = 2756, - [2884] = 575, - [2885] = 2754, - [2886] = 553, - [2887] = 526, - [2888] = 433, - [2889] = 2739, - [2890] = 551, - [2891] = 348, - [2892] = 2754, - [2893] = 609, - [2894] = 2750, - [2895] = 541, - [2896] = 2739, - [2897] = 2740, - [2898] = 2749, - [2899] = 2740, - [2900] = 575, + [2879] = 2785, + [2880] = 382, + [2881] = 2881, + [2882] = 2760, + [2883] = 2883, + [2884] = 2757, + [2885] = 2761, + [2886] = 2766, + [2887] = 2758, + [2888] = 2765, + [2889] = 2889, + [2890] = 2760, + [2891] = 2757, + [2892] = 2752, + [2893] = 2755, + [2894] = 2758, + [2895] = 2785, + [2896] = 2751, + [2897] = 2750, + [2898] = 2761, + [2899] = 2766, + [2900] = 560, [2901] = 2901, - [2902] = 2902, - [2903] = 2903, - [2904] = 2904, - [2905] = 2905, - [2906] = 2906, - [2907] = 2907, - [2908] = 2902, - [2909] = 2903, - [2910] = 2910, - [2911] = 2901, - [2912] = 2901, - [2913] = 2910, - [2914] = 2903, - [2915] = 2904, - [2916] = 2916, - [2917] = 2902, - [2918] = 2901, - [2919] = 2903, - [2920] = 2920, - [2921] = 2901, + [2902] = 522, + [2903] = 2765, + [2904] = 487, + [2905] = 447, + [2906] = 436, + [2907] = 2752, + [2908] = 2750, + [2909] = 382, + [2910] = 2837, + [2911] = 361, + [2912] = 2751, + [2913] = 350, + [2914] = 2752, + [2915] = 2915, + [2916] = 2750, + [2917] = 2917, + [2918] = 2918, + [2919] = 2919, + [2920] = 2918, + [2921] = 2921, [2922] = 2922, - [2923] = 2901, - [2924] = 2924, - [2925] = 2902, - [2926] = 2903, - [2927] = 2901, - [2928] = 2910, - [2929] = 2916, - [2930] = 2930, - [2931] = 2901, - [2932] = 2903, - [2933] = 2902, - [2934] = 2916, - [2935] = 2916, - [2936] = 2916, - [2937] = 2916, - [2938] = 2916, - [2939] = 2916, - [2940] = 2910, - [2941] = 2916, - [2942] = 2902, - [2943] = 2943, - [2944] = 2902, - [2945] = 2910, + [2923] = 2923, + [2924] = 2921, + [2925] = 2925, + [2926] = 2926, + [2927] = 2927, + [2928] = 2928, + [2929] = 2918, + [2930] = 2927, + [2931] = 2927, + [2932] = 2926, + [2933] = 2921, + [2934] = 2934, + [2935] = 2918, + [2936] = 2918, + [2937] = 2937, + [2938] = 2926, + [2939] = 2927, + [2940] = 2927, + [2941] = 2941, + [2942] = 2926, + [2943] = 2927, + [2944] = 2934, + [2945] = 2921, [2946] = 2946, - [2947] = 2943, - [2948] = 2910, - [2949] = 2910, - [2950] = 2902, - [2951] = 2903, - [2952] = 2952, - [2953] = 2903, - [2954] = 2902, - [2955] = 2905, - [2956] = 2901, - [2957] = 2910, - [2958] = 2905, - [2959] = 2905, - [2960] = 2905, - [2961] = 2905, - [2962] = 2905, - [2963] = 2905, - [2964] = 2903, - [2965] = 2905, - [2966] = 2910, - [2967] = 2967, - [2968] = 2968, - [2969] = 2969, - [2970] = 2970, - [2971] = 2971, - [2972] = 2972, - [2973] = 2973, - [2974] = 2974, - [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2968, - [2979] = 2763, - [2980] = 2980, - [2981] = 2981, - [2982] = 2982, - [2983] = 2983, - [2984] = 2984, + [2947] = 2947, + [2948] = 2921, + [2949] = 2934, + [2950] = 2927, + [2951] = 2926, + [2952] = 2934, + [2953] = 2934, + [2954] = 2954, + [2955] = 2921, + [2956] = 2934, + [2957] = 2934, + [2958] = 2934, + [2959] = 2934, + [2960] = 2928, + [2961] = 2918, + [2962] = 2918, + [2963] = 2926, + [2964] = 2922, + [2965] = 2921, + [2966] = 2966, + [2967] = 2927, + [2968] = 2918, + [2969] = 2926, + [2970] = 2926, + [2971] = 2927, + [2972] = 2921, + [2973] = 2925, + [2974] = 2918, + [2975] = 2919, + [2976] = 2925, + [2977] = 2925, + [2978] = 2925, + [2979] = 2921, + [2980] = 2925, + [2981] = 2926, + [2982] = 2925, + [2983] = 2925, + [2984] = 2925, [2985] = 2985, - [2986] = 2968, - [2987] = 2987, + [2986] = 2986, + [2987] = 1483, [2988] = 2988, [2989] = 2989, [2990] = 2990, - [2991] = 2985, - [2992] = 2971, + [2991] = 2991, + [2992] = 2992, [2993] = 2993, [2994] = 2994, [2995] = 2995, [2996] = 2996, [2997] = 2997, - [2998] = 2967, + [2998] = 2998, [2999] = 2999, - [3000] = 2989, - [3001] = 2989, - [3002] = 2997, + [3000] = 1459, + [3001] = 3001, + [3002] = 3002, [3003] = 3003, - [3004] = 2975, - [3005] = 2977, - [3006] = 2993, + [3004] = 3004, + [3005] = 3005, + [3006] = 2997, [3007] = 3007, - [3008] = 2973, - [3009] = 3009, - [3010] = 2994, - [3011] = 2981, + [3008] = 3008, + [3009] = 2993, + [3010] = 3010, + [3011] = 2991, [3012] = 3012, - [3013] = 2985, - [3014] = 2976, - [3015] = 2975, + [3013] = 3010, + [3014] = 3014, + [3015] = 3010, [3016] = 3016, - [3017] = 2967, - [3018] = 2971, - [3019] = 2969, - [3020] = 2975, - [3021] = 2971, - [3022] = 2967, - [3023] = 2994, - [3024] = 2999, - [3025] = 2981, - [3026] = 2994, - [3027] = 2981, - [3028] = 2997, - [3029] = 2973, - [3030] = 2993, - [3031] = 2997, - [3032] = 2990, - [3033] = 2994, - [3034] = 2990, - [3035] = 2996, - [3036] = 2968, - [3037] = 3037, - [3038] = 2985, - [3039] = 2996, - [3040] = 2969, - [3041] = 3041, - [3042] = 2999, - [3043] = 2976, - [3044] = 2970, - [3045] = 2974, - [3046] = 2971, - [3047] = 2972, - [3048] = 2972, - [3049] = 2970, - [3050] = 2974, - [3051] = 2973, - [3052] = 2993, - [3053] = 2976, - [3054] = 2977, - [3055] = 2997, - [3056] = 2969, - [3057] = 2969, - [3058] = 2970, - [3059] = 2985, - [3060] = 2987, - [3061] = 2996, - [3062] = 2972, - [3063] = 2990, - [3064] = 3037, - [3065] = 2968, - [3066] = 2990, - [3067] = 2971, + [3017] = 3017, + [3018] = 3018, + [3019] = 3002, + [3020] = 3007, + [3021] = 2997, + [3022] = 3014, + [3023] = 2990, + [3024] = 3024, + [3025] = 3025, + [3026] = 3004, + [3027] = 2991, + [3028] = 3003, + [3029] = 3029, + [3030] = 3030, + [3031] = 3002, + [3032] = 3001, + [3033] = 2988, + [3034] = 2989, + [3035] = 3030, + [3036] = 2990, + [3037] = 2992, + [3038] = 2999, + [3039] = 3010, + [3040] = 2993, + [3041] = 2994, + [3042] = 2998, + [3043] = 2988, + [3044] = 2995, + [3045] = 2996, + [3046] = 3046, + [3047] = 2999, + [3048] = 2998, + [3049] = 3049, + [3050] = 3001, + [3051] = 2996, + [3052] = 3014, + [3053] = 3003, + [3054] = 3054, + [3055] = 3004, + [3056] = 3002, + [3057] = 2995, + [3058] = 3007, + [3059] = 3059, + [3060] = 2994, + [3061] = 2989, + [3062] = 3062, + [3063] = 3024, + [3064] = 3010, + [3065] = 2994, + [3066] = 2992, + [3067] = 2990, [3068] = 3068, - [3069] = 3069, - [3070] = 3070, + [3069] = 2989, + [3070] = 2988, [3071] = 3071, - [3072] = 2967, - [3073] = 3073, - [3074] = 2997, - [3075] = 2993, - [3076] = 2974, - [3077] = 3077, - [3078] = 2989, - [3079] = 2999, - [3080] = 2985, - [3081] = 2969, - [3082] = 2970, - [3083] = 2973, + [3072] = 3030, + [3073] = 2991, + [3074] = 3074, + [3075] = 3014, + [3076] = 3014, + [3077] = 3002, + [3078] = 3078, + [3079] = 3079, + [3080] = 2991, + [3081] = 3007, + [3082] = 2990, + [3083] = 3083, [3084] = 3084, - [3085] = 2994, - [3086] = 2974, - [3087] = 2967, - [3088] = 2971, - [3089] = 3089, - [3090] = 2975, - [3091] = 2970, - [3092] = 2969, - [3093] = 3093, - [3094] = 2989, - [3095] = 3037, - [3096] = 2990, - [3097] = 2976, - [3098] = 2972, - [3099] = 2973, - [3100] = 2993, - [3101] = 2985, - [3102] = 2981, - [3103] = 2997, - [3104] = 2981, - [3105] = 2977, - [3106] = 3106, - [3107] = 2993, + [3085] = 3010, + [3086] = 3086, + [3087] = 2992, + [3088] = 3030, + [3089] = 2993, + [3090] = 2988, + [3091] = 3091, + [3092] = 2989, + [3093] = 2990, + [3094] = 2992, + [3095] = 3095, + [3096] = 3024, + [3097] = 2994, + [3098] = 3002, + [3099] = 2837, + [3100] = 2995, + [3101] = 2996, + [3102] = 2997, + [3103] = 2994, + [3104] = 3004, + [3105] = 3105, + [3106] = 3010, + [3107] = 2995, [3108] = 2996, - [3109] = 2971, - [3110] = 2968, - [3111] = 2973, - [3112] = 2997, - [3113] = 2977, - [3114] = 2976, - [3115] = 2974, - [3116] = 2994, - [3117] = 2996, - [3118] = 2969, - [3119] = 1443, - [3120] = 2974, - [3121] = 3121, + [3109] = 2998, + [3110] = 2999, + [3111] = 3003, + [3112] = 3001, + [3113] = 3113, + [3114] = 3114, + [3115] = 3115, + [3116] = 3116, + [3117] = 2993, + [3118] = 3001, + [3119] = 3002, + [3120] = 2809, + [3121] = 1439, [3122] = 2999, - [3123] = 2972, - [3124] = 3124, - [3125] = 3125, - [3126] = 3126, - [3127] = 3127, - [3128] = 2976, - [3129] = 2977, - [3130] = 2970, - [3131] = 2969, - [3132] = 3037, - [3133] = 3133, - [3134] = 3134, - [3135] = 2999, - [3136] = 2990, - [3137] = 2967, - [3138] = 2997, - [3139] = 2997, - [3140] = 2995, - [3141] = 2988, - [3142] = 2993, - [3143] = 3012, + [3123] = 2998, + [3124] = 2997, + [3125] = 3007, + [3126] = 2996, + [3127] = 3010, + [3128] = 2995, + [3129] = 2994, + [3130] = 3024, + [3131] = 2997, + [3132] = 3003, + [3133] = 3004, + [3134] = 2988, + [3135] = 2992, + [3136] = 3007, + [3137] = 2990, + [3138] = 2998, + [3139] = 2989, + [3140] = 2988, + [3141] = 3030, + [3142] = 2991, + [3143] = 2999, [3144] = 3144, - [3145] = 2973, - [3146] = 3144, - [3147] = 3147, - [3148] = 2994, - [3149] = 3149, - [3150] = 2980, - [3151] = 2982, - [3152] = 3147, - [3153] = 3153, - [3154] = 3154, - [3155] = 2968, + [3145] = 3014, + [3146] = 3146, + [3147] = 3007, + [3148] = 3148, + [3149] = 3014, + [3150] = 3004, + [3151] = 3151, + [3152] = 3030, + [3153] = 3003, + [3154] = 3001, + [3155] = 2991, [3156] = 3156, - [3157] = 2967, - [3158] = 2976, - [3159] = 2974, - [3160] = 3154, - [3161] = 3161, - [3162] = 1439, - [3163] = 2972, - [3164] = 3037, - [3165] = 2987, - [3166] = 3166, - [3167] = 2970, - [3168] = 2985, - [3169] = 2990, - [3170] = 2975, + [3157] = 2999, + [3158] = 3062, + [3159] = 3059, + [3160] = 2998, + [3161] = 3016, + [3162] = 3030, + [3163] = 3018, + [3164] = 2997, + [3165] = 2996, + [3166] = 3078, + [3167] = 3091, + [3168] = 2995, + [3169] = 3049, + [3170] = 3170, [3171] = 3171, - [3172] = 3134, - [3173] = 3133, - [3174] = 2996, - [3175] = 3175, - [3176] = 3037, - [3177] = 2997, - [3178] = 2999, - [3179] = 3037, - [3180] = 3161, - [3181] = 3181, - [3182] = 2975, - [3183] = 3147, - [3184] = 2982, - [3185] = 2971, - [3186] = 3156, - [3187] = 3147, - [3188] = 2982, - [3189] = 2999, - [3190] = 3190, - [3191] = 3147, - [3192] = 2982, - [3193] = 2997, - [3194] = 2975, - [3195] = 3147, - [3196] = 2982, - [3197] = 3037, - [3198] = 3069, - [3199] = 3147, - [3200] = 2982, - [3201] = 3070, - [3202] = 3073, - [3203] = 3147, - [3204] = 2982, - [3205] = 2989, - [3206] = 2985, - [3207] = 3147, - [3208] = 2982, - [3209] = 2981, - [3210] = 3106, - [3211] = 3071, - [3212] = 2969, - [3213] = 3003, - [3214] = 3171, - [3215] = 2999, - [3216] = 2997, - [3217] = 3084, + [3172] = 3146, + [3173] = 3173, + [3174] = 2994, + [3175] = 2993, + [3176] = 2989, + [3177] = 2992, + [3178] = 2990, + [3179] = 2992, + [3180] = 3024, + [3181] = 2994, + [3182] = 2990, + [3183] = 2995, + [3184] = 2996, + [3185] = 2997, + [3186] = 3024, + [3187] = 3187, + [3188] = 3188, + [3189] = 2998, + [3190] = 2999, + [3191] = 3002, + [3192] = 3192, + [3193] = 2986, + [3194] = 3187, + [3195] = 3151, + [3196] = 2993, + [3197] = 2990, + [3198] = 3024, + [3199] = 2993, + [3200] = 3105, + [3201] = 3201, + [3202] = 3170, + [3203] = 3091, + [3204] = 3171, + [3205] = 3079, + [3206] = 2989, + [3207] = 3091, + [3208] = 3171, + [3209] = 2988, + [3210] = 3030, + [3211] = 3091, + [3212] = 3171, + [3213] = 3029, + [3214] = 3010, + [3215] = 3091, + [3216] = 3171, + [3217] = 3004, [3218] = 3218, - [3219] = 2981, - [3220] = 2977, - [3221] = 2989, - [3222] = 1433, - [3223] = 3037, - [3224] = 2997, - [3225] = 2990, - [3226] = 3181, - [3227] = 2989, - [3228] = 2731, - [3229] = 2997, - [3230] = 2970, - [3231] = 2981, - [3232] = 2996, - [3233] = 2997, - [3234] = 3181, - [3235] = 2968, - [3236] = 3149, - [3237] = 2972, - [3238] = 2997, - [3239] = 2975, - [3240] = 2989, - [3241] = 2997, - [3242] = 2993, - [3243] = 3181, - [3244] = 2973, - [3245] = 3093, - [3246] = 3218, - [3247] = 2977, - [3248] = 3089, - [3249] = 2977, - [3250] = 2997, - [3251] = 3077, - [3252] = 2997, - [3253] = 2996, - [3254] = 3254, - [3255] = 3175, - [3256] = 2967, - [3257] = 2976, - [3258] = 2997, - [3259] = 3041, - [3260] = 3126, - [3261] = 2997, - [3262] = 3181, - [3263] = 2994, - [3264] = 2968, - [3265] = 3181, - [3266] = 3181, - [3267] = 2974, - [3268] = 3181, - [3269] = 2969, - [3270] = 3181, - [3271] = 2972, - [3272] = 3272, - [3273] = 3273, - [3274] = 3273, - [3275] = 3273, - [3276] = 3273, - [3277] = 3273, - [3278] = 3273, - [3279] = 3273, - [3280] = 3273, - [3281] = 3273, - [3282] = 3273, - [3283] = 3273, - [3284] = 3273, - [3285] = 3285, - [3286] = 3273, - [3287] = 3273, - [3288] = 3273, - [3289] = 3273, - [3290] = 3273, - [3291] = 3273, - [3292] = 3273, - [3293] = 3273, - [3294] = 3273, - [3295] = 3273, + [3219] = 3091, + [3220] = 3171, + [3221] = 2991, + [3222] = 2990, + [3223] = 3091, + [3224] = 3171, + [3225] = 3171, + [3226] = 3024, + [3227] = 3091, + [3228] = 3171, + [3229] = 3001, + [3230] = 3144, + [3231] = 3116, + [3232] = 3113, + [3233] = 3115, + [3234] = 3068, + [3235] = 3014, + [3236] = 3017, + [3237] = 3237, + [3238] = 3014, + [3239] = 3025, + [3240] = 3114, + [3241] = 3002, + [3242] = 3192, + [3243] = 2990, + [3244] = 3001, + [3245] = 3187, + [3246] = 2999, + [3247] = 2998, + [3248] = 2997, + [3249] = 2996, + [3250] = 2995, + [3251] = 2994, + [3252] = 2993, + [3253] = 2990, + [3254] = 2992, + [3255] = 2990, + [3256] = 2989, + [3257] = 2988, + [3258] = 3007, + [3259] = 3030, + [3260] = 2990, + [3261] = 3024, + [3262] = 3262, + [3263] = 2990, + [3264] = 2991, + [3265] = 3148, + [3266] = 3083, + [3267] = 3156, + [3268] = 3218, + [3269] = 3004, + [3270] = 3003, + [3271] = 3084, + [3272] = 3004, + [3273] = 3003, + [3274] = 3007, + [3275] = 2990, + [3276] = 3276, + [3277] = 3201, + [3278] = 3083, + [3279] = 3003, + [3280] = 2990, + [3281] = 2990, + [3282] = 3008, + [3283] = 2994, + [3284] = 3083, + [3285] = 3083, + [3286] = 3001, + [3287] = 2990, + [3288] = 3083, + [3289] = 2990, + [3290] = 3083, + [3291] = 2990, + [3292] = 3083, + [3293] = 3083, + [3294] = 3294, + [3295] = 3295, + [3296] = 3295, + [3297] = 3295, + [3298] = 3295, + [3299] = 3295, + [3300] = 3300, + [3301] = 3295, + [3302] = 3295, + [3303] = 3295, + [3304] = 3295, + [3305] = 3295, + [3306] = 3295, + [3307] = 3295, + [3308] = 3295, + [3309] = 3295, + [3310] = 3295, + [3311] = 3295, + [3312] = 3295, + [3313] = 3295, + [3314] = 3295, + [3315] = 3295, + [3316] = 3295, + [3317] = 3295, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -7947,23 +7985,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 39, .external_lex_state = 3}, [32] = {.lex_state = 39, .external_lex_state = 3}, [33] = {.lex_state = 39, .external_lex_state = 3}, - [34] = {.lex_state = 39, .external_lex_state = 2}, + [34] = {.lex_state = 39, .external_lex_state = 3}, [35] = {.lex_state = 39, .external_lex_state = 3}, [36] = {.lex_state = 39, .external_lex_state = 2}, [37] = {.lex_state = 39, .external_lex_state = 3}, [38] = {.lex_state = 39, .external_lex_state = 3}, - [39] = {.lex_state = 39, .external_lex_state = 3}, - [40] = {.lex_state = 39, .external_lex_state = 4}, - [41] = {.lex_state = 39, .external_lex_state = 4}, + [39] = {.lex_state = 39, .external_lex_state = 2}, + [40] = {.lex_state = 39, .external_lex_state = 3}, + [41] = {.lex_state = 39, .external_lex_state = 3}, [42] = {.lex_state = 39, .external_lex_state = 4}, [43] = {.lex_state = 39, .external_lex_state = 4}, - [44] = {.lex_state = 39, .external_lex_state = 4}, - [45] = {.lex_state = 39, .external_lex_state = 2}, + [44] = {.lex_state = 39, .external_lex_state = 2}, + [45] = {.lex_state = 39, .external_lex_state = 4}, [46] = {.lex_state = 39, .external_lex_state = 4}, [47] = {.lex_state = 39, .external_lex_state = 4}, [48] = {.lex_state = 39, .external_lex_state = 4}, [49] = {.lex_state = 39, .external_lex_state = 4}, - [50] = {.lex_state = 39, .external_lex_state = 4}, + [50] = {.lex_state = 39, .external_lex_state = 3}, [51] = {.lex_state = 39, .external_lex_state = 4}, [52] = {.lex_state = 39, .external_lex_state = 4}, [53] = {.lex_state = 39, .external_lex_state = 4}, @@ -7974,13 +8012,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [58] = {.lex_state = 39, .external_lex_state = 4}, [59] = {.lex_state = 39, .external_lex_state = 4}, [60] = {.lex_state = 39, .external_lex_state = 4}, - [61] = {.lex_state = 39, .external_lex_state = 2}, + [61] = {.lex_state = 39, .external_lex_state = 4}, [62] = {.lex_state = 39, .external_lex_state = 4}, - [63] = {.lex_state = 39, .external_lex_state = 3}, + [63] = {.lex_state = 39, .external_lex_state = 4}, [64] = {.lex_state = 39, .external_lex_state = 4}, - [65] = {.lex_state = 39, .external_lex_state = 4}, + [65] = {.lex_state = 39, .external_lex_state = 3}, [66] = {.lex_state = 39, .external_lex_state = 4}, - [67] = {.lex_state = 39, .external_lex_state = 3}, + [67] = {.lex_state = 39, .external_lex_state = 4}, [68] = {.lex_state = 39, .external_lex_state = 4}, [69] = {.lex_state = 39, .external_lex_state = 4}, [70] = {.lex_state = 39, .external_lex_state = 4}, @@ -7989,22 +8027,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [73] = {.lex_state = 39, .external_lex_state = 4}, [74] = {.lex_state = 39, .external_lex_state = 4}, [75] = {.lex_state = 39, .external_lex_state = 4}, - [76] = {.lex_state = 3, .external_lex_state = 5}, - [77] = {.lex_state = 3, .external_lex_state = 5}, - [78] = {.lex_state = 3, .external_lex_state = 5}, - [79] = {.lex_state = 3, .external_lex_state = 5}, + [76] = {.lex_state = 39, .external_lex_state = 4}, + [77] = {.lex_state = 39, .external_lex_state = 4}, + [78] = {.lex_state = 39, .external_lex_state = 2}, + [79] = {.lex_state = 39, .external_lex_state = 4}, [80] = {.lex_state = 3, .external_lex_state = 5}, [81] = {.lex_state = 3, .external_lex_state = 5}, [82] = {.lex_state = 3, .external_lex_state = 5}, [83] = {.lex_state = 3, .external_lex_state = 5}, [84] = {.lex_state = 3, .external_lex_state = 5}, [85] = {.lex_state = 3, .external_lex_state = 5}, - [86] = {.lex_state = 21, .external_lex_state = 6}, - [87] = {.lex_state = 21, .external_lex_state = 6}, - [88] = {.lex_state = 39, .external_lex_state = 5}, - [89] = {.lex_state = 39, .external_lex_state = 5}, - [90] = {.lex_state = 39, .external_lex_state = 5}, - [91] = {.lex_state = 39, .external_lex_state = 5}, + [86] = {.lex_state = 3, .external_lex_state = 5}, + [87] = {.lex_state = 3, .external_lex_state = 5}, + [88] = {.lex_state = 3, .external_lex_state = 5}, + [89] = {.lex_state = 3, .external_lex_state = 5}, + [90] = {.lex_state = 21, .external_lex_state = 6}, + [91] = {.lex_state = 21, .external_lex_state = 6}, [92] = {.lex_state = 39, .external_lex_state = 5}, [93] = {.lex_state = 39, .external_lex_state = 5}, [94] = {.lex_state = 39, .external_lex_state = 5}, @@ -8037,190 +8075,190 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [121] = {.lex_state = 39, .external_lex_state = 5}, [122] = {.lex_state = 39, .external_lex_state = 5}, [123] = {.lex_state = 39, .external_lex_state = 5}, - [124] = {.lex_state = 39, .external_lex_state = 6}, - [125] = {.lex_state = 39, .external_lex_state = 6}, - [126] = {.lex_state = 39, .external_lex_state = 5}, - [127] = {.lex_state = 39, .external_lex_state = 5}, + [124] = {.lex_state = 39, .external_lex_state = 5}, + [125] = {.lex_state = 39, .external_lex_state = 5}, + [126] = {.lex_state = 39, .external_lex_state = 6}, + [127] = {.lex_state = 39, .external_lex_state = 6}, [128] = {.lex_state = 39, .external_lex_state = 5}, - [129] = {.lex_state = 39, .external_lex_state = 5}, - [130] = {.lex_state = 39, .external_lex_state = 5}, + [129] = {.lex_state = 39, .external_lex_state = 6}, + [130] = {.lex_state = 39, .external_lex_state = 6}, [131] = {.lex_state = 39, .external_lex_state = 5}, [132] = {.lex_state = 39, .external_lex_state = 5}, - [133] = {.lex_state = 39, .external_lex_state = 6}, - [134] = {.lex_state = 39, .external_lex_state = 6}, - [135] = {.lex_state = 39, .external_lex_state = 6}, - [136] = {.lex_state = 39, .external_lex_state = 6}, - [137] = {.lex_state = 39, .external_lex_state = 6}, - [138] = {.lex_state = 39, .external_lex_state = 5}, + [133] = {.lex_state = 39, .external_lex_state = 5}, + [134] = {.lex_state = 39, .external_lex_state = 5}, + [135] = {.lex_state = 39, .external_lex_state = 5}, + [136] = {.lex_state = 39, .external_lex_state = 5}, + [137] = {.lex_state = 39, .external_lex_state = 5}, + [138] = {.lex_state = 39, .external_lex_state = 6}, [139] = {.lex_state = 39, .external_lex_state = 5}, [140] = {.lex_state = 39, .external_lex_state = 5}, [141] = {.lex_state = 39, .external_lex_state = 5}, - [142] = {.lex_state = 39, .external_lex_state = 5}, + [142] = {.lex_state = 39, .external_lex_state = 6}, [143] = {.lex_state = 39, .external_lex_state = 5}, [144] = {.lex_state = 39, .external_lex_state = 5}, - [145] = {.lex_state = 39, .external_lex_state = 6}, - [146] = {.lex_state = 39, .external_lex_state = 5}, + [145] = {.lex_state = 39, .external_lex_state = 5}, + [146] = {.lex_state = 39, .external_lex_state = 6}, [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 = 6}, - [151] = {.lex_state = 39, .external_lex_state = 6}, - [152] = {.lex_state = 39, .external_lex_state = 3}, - [153] = {.lex_state = 39, .external_lex_state = 6}, - [154] = {.lex_state = 39, .external_lex_state = 6}, - [155] = {.lex_state = 39, .external_lex_state = 6}, + [150] = {.lex_state = 39, .external_lex_state = 5}, + [151] = {.lex_state = 39, .external_lex_state = 5}, + [152] = {.lex_state = 39, .external_lex_state = 6}, + [153] = {.lex_state = 39, .external_lex_state = 5}, + [154] = {.lex_state = 39, .external_lex_state = 2}, + [155] = {.lex_state = 39, .external_lex_state = 3}, [156] = {.lex_state = 39, .external_lex_state = 6}, [157] = {.lex_state = 39, .external_lex_state = 6}, - [158] = {.lex_state = 39, .external_lex_state = 7}, + [158] = {.lex_state = 39, .external_lex_state = 6}, [159] = {.lex_state = 39, .external_lex_state = 7}, - [160] = {.lex_state = 39, .external_lex_state = 6}, + [160] = {.lex_state = 39, .external_lex_state = 7}, [161] = {.lex_state = 39, .external_lex_state = 6}, - [162] = {.lex_state = 39, .external_lex_state = 6}, + [162] = {.lex_state = 39, .external_lex_state = 7}, [163] = {.lex_state = 39, .external_lex_state = 6}, - [164] = {.lex_state = 39, .external_lex_state = 7}, + [164] = {.lex_state = 39, .external_lex_state = 6}, [165] = {.lex_state = 39, .external_lex_state = 6}, [166] = {.lex_state = 39, .external_lex_state = 6}, [167] = {.lex_state = 39, .external_lex_state = 6}, - [168] = {.lex_state = 39, .external_lex_state = 2}, - [169] = {.lex_state = 39, .external_lex_state = 3}, - [170] = {.lex_state = 39, .external_lex_state = 7}, - [171] = {.lex_state = 39, .external_lex_state = 2}, + [168] = {.lex_state = 39, .external_lex_state = 6}, + [169] = {.lex_state = 39, .external_lex_state = 7}, + [170] = {.lex_state = 39, .external_lex_state = 6}, + [171] = {.lex_state = 39, .external_lex_state = 6}, [172] = {.lex_state = 39, .external_lex_state = 6}, - [173] = {.lex_state = 39, .external_lex_state = 2}, - [174] = {.lex_state = 39, .external_lex_state = 7}, - [175] = {.lex_state = 39, .external_lex_state = 7}, + [173] = {.lex_state = 39, .external_lex_state = 6}, + [174] = {.lex_state = 39, .external_lex_state = 6}, + [175] = {.lex_state = 39, .external_lex_state = 6}, [176] = {.lex_state = 39, .external_lex_state = 7}, - [177] = {.lex_state = 39, .external_lex_state = 6}, - [178] = {.lex_state = 39, .external_lex_state = 6}, - [179] = {.lex_state = 39, .external_lex_state = 6}, - [180] = {.lex_state = 39, .external_lex_state = 7}, - [181] = {.lex_state = 39, .external_lex_state = 7}, + [177] = {.lex_state = 39, .external_lex_state = 3}, + [178] = {.lex_state = 39, .external_lex_state = 2}, + [179] = {.lex_state = 39, .external_lex_state = 7}, + [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 = 3}, - [184] = {.lex_state = 39, .external_lex_state = 6}, + [183] = {.lex_state = 39, .external_lex_state = 6}, + [184] = {.lex_state = 39, .external_lex_state = 2}, [185] = {.lex_state = 39, .external_lex_state = 6}, - [186] = {.lex_state = 39, .external_lex_state = 6}, - [187] = {.lex_state = 39, .external_lex_state = 2}, - [188] = {.lex_state = 39, .external_lex_state = 6}, + [186] = {.lex_state = 39, .external_lex_state = 7}, + [187] = {.lex_state = 39, .external_lex_state = 6}, + [188] = {.lex_state = 39, .external_lex_state = 7}, [189] = {.lex_state = 39, .external_lex_state = 6}, - [190] = {.lex_state = 39, .external_lex_state = 6}, + [190] = {.lex_state = 39, .external_lex_state = 2}, [191] = {.lex_state = 39, .external_lex_state = 6}, [192] = {.lex_state = 39, .external_lex_state = 6}, - [193] = {.lex_state = 39, .external_lex_state = 6}, + [193] = {.lex_state = 39, .external_lex_state = 7}, [194] = {.lex_state = 39, .external_lex_state = 6}, - [195] = {.lex_state = 20, .external_lex_state = 2}, - [196] = {.lex_state = 39, .external_lex_state = 7}, - [197] = {.lex_state = 39, .external_lex_state = 7}, + [195] = {.lex_state = 39, .external_lex_state = 6}, + [196] = {.lex_state = 39, .external_lex_state = 3}, + [197] = {.lex_state = 39, .external_lex_state = 6}, [198] = {.lex_state = 39, .external_lex_state = 6}, [199] = {.lex_state = 20, .external_lex_state = 2}, [200] = {.lex_state = 20, .external_lex_state = 2}, - [201] = {.lex_state = 20, .external_lex_state = 2}, + [201] = {.lex_state = 39, .external_lex_state = 7}, [202] = {.lex_state = 20, .external_lex_state = 2}, [203] = {.lex_state = 20, .external_lex_state = 2}, - [204] = {.lex_state = 20, .external_lex_state = 2}, + [204] = {.lex_state = 39, .external_lex_state = 2}, [205] = {.lex_state = 20, .external_lex_state = 2}, - [206] = {.lex_state = 39, .external_lex_state = 2}, - [207] = {.lex_state = 39, .external_lex_state = 2}, + [206] = {.lex_state = 39, .external_lex_state = 7}, + [207] = {.lex_state = 20, .external_lex_state = 2}, [208] = {.lex_state = 39, .external_lex_state = 7}, - [209] = {.lex_state = 20, .external_lex_state = 2}, - [210] = {.lex_state = 39, .external_lex_state = 7}, + [209] = {.lex_state = 39, .external_lex_state = 2}, + [210] = {.lex_state = 20, .external_lex_state = 2}, [211] = {.lex_state = 20, .external_lex_state = 2}, [212] = {.lex_state = 20, .external_lex_state = 2}, [213] = {.lex_state = 20, .external_lex_state = 2}, [214] = {.lex_state = 20, .external_lex_state = 2}, [215] = {.lex_state = 20, .external_lex_state = 2}, [216] = {.lex_state = 20, .external_lex_state = 2}, - [217] = {.lex_state = 39, .external_lex_state = 2}, + [217] = {.lex_state = 20, .external_lex_state = 2}, [218] = {.lex_state = 20, .external_lex_state = 2}, [219] = {.lex_state = 20, .external_lex_state = 2}, - [220] = {.lex_state = 20, .external_lex_state = 2}, - [221] = {.lex_state = 39, .external_lex_state = 6}, - [222] = {.lex_state = 39, .external_lex_state = 2}, + [220] = {.lex_state = 39, .external_lex_state = 7}, + [221] = {.lex_state = 20, .external_lex_state = 2}, + [222] = {.lex_state = 39, .external_lex_state = 7}, [223] = {.lex_state = 20, .external_lex_state = 2}, [224] = {.lex_state = 39, .external_lex_state = 7}, - [225] = {.lex_state = 39, .external_lex_state = 7}, - [226] = {.lex_state = 20, .external_lex_state = 2}, - [227] = {.lex_state = 39, .external_lex_state = 7}, + [225] = {.lex_state = 39, .external_lex_state = 2}, + [226] = {.lex_state = 39, .external_lex_state = 7}, + [227] = {.lex_state = 39, .external_lex_state = 2}, [228] = {.lex_state = 20, .external_lex_state = 2}, - [229] = {.lex_state = 20, .external_lex_state = 2}, + [229] = {.lex_state = 39, .external_lex_state = 7}, [230] = {.lex_state = 20, .external_lex_state = 2}, - [231] = {.lex_state = 20, .external_lex_state = 2}, - [232] = {.lex_state = 20, .external_lex_state = 2}, + [231] = {.lex_state = 39, .external_lex_state = 7}, + [232] = {.lex_state = 39, .external_lex_state = 7}, [233] = {.lex_state = 20, .external_lex_state = 2}, [234] = {.lex_state = 20, .external_lex_state = 2}, [235] = {.lex_state = 20, .external_lex_state = 2}, - [236] = {.lex_state = 20, .external_lex_state = 2}, - [237] = {.lex_state = 20, .external_lex_state = 2}, + [236] = {.lex_state = 39, .external_lex_state = 7}, + [237] = {.lex_state = 39, .external_lex_state = 2}, [238] = {.lex_state = 20, .external_lex_state = 2}, - [239] = {.lex_state = 39, .external_lex_state = 2}, + [239] = {.lex_state = 20, .external_lex_state = 2}, [240] = {.lex_state = 20, .external_lex_state = 2}, - [241] = {.lex_state = 39, .external_lex_state = 7}, + [241] = {.lex_state = 39, .external_lex_state = 2}, [242] = {.lex_state = 20, .external_lex_state = 2}, - [243] = {.lex_state = 39, .external_lex_state = 7}, + [243] = {.lex_state = 20, .external_lex_state = 2}, [244] = {.lex_state = 20, .external_lex_state = 2}, [245] = {.lex_state = 20, .external_lex_state = 2}, [246] = {.lex_state = 20, .external_lex_state = 2}, [247] = {.lex_state = 20, .external_lex_state = 2}, [248] = {.lex_state = 20, .external_lex_state = 2}, [249] = {.lex_state = 20, .external_lex_state = 2}, - [250] = {.lex_state = 20, .external_lex_state = 2}, + [250] = {.lex_state = 39, .external_lex_state = 6}, [251] = {.lex_state = 20, .external_lex_state = 2}, [252] = {.lex_state = 20, .external_lex_state = 2}, - [253] = {.lex_state = 20, .external_lex_state = 2}, + [253] = {.lex_state = 39, .external_lex_state = 7}, [254] = {.lex_state = 20, .external_lex_state = 2}, - [255] = {.lex_state = 39, .external_lex_state = 2}, + [255] = {.lex_state = 39, .external_lex_state = 7}, [256] = {.lex_state = 20, .external_lex_state = 2}, [257] = {.lex_state = 20, .external_lex_state = 2}, [258] = {.lex_state = 20, .external_lex_state = 2}, - [259] = {.lex_state = 39, .external_lex_state = 2}, + [259] = {.lex_state = 20, .external_lex_state = 2}, [260] = {.lex_state = 20, .external_lex_state = 2}, [261] = {.lex_state = 20, .external_lex_state = 2}, [262] = {.lex_state = 20, .external_lex_state = 2}, [263] = {.lex_state = 20, .external_lex_state = 2}, - [264] = {.lex_state = 39, .external_lex_state = 2}, - [265] = {.lex_state = 20, .external_lex_state = 2}, + [264] = {.lex_state = 20, .external_lex_state = 2}, + [265] = {.lex_state = 39, .external_lex_state = 2}, [266] = {.lex_state = 20, .external_lex_state = 2}, [267] = {.lex_state = 20, .external_lex_state = 2}, - [268] = {.lex_state = 20, .external_lex_state = 2}, - [269] = {.lex_state = 39, .external_lex_state = 7}, - [270] = {.lex_state = 20, .external_lex_state = 2}, - [271] = {.lex_state = 39, .external_lex_state = 7}, + [268] = {.lex_state = 39, .external_lex_state = 2}, + [269] = {.lex_state = 20, .external_lex_state = 2}, + [270] = {.lex_state = 39, .external_lex_state = 2}, + [271] = {.lex_state = 39, .external_lex_state = 6}, [272] = {.lex_state = 20, .external_lex_state = 2}, [273] = {.lex_state = 20, .external_lex_state = 2}, [274] = {.lex_state = 20, .external_lex_state = 2}, [275] = {.lex_state = 20, .external_lex_state = 2}, [276] = {.lex_state = 20, .external_lex_state = 2}, [277] = {.lex_state = 20, .external_lex_state = 2}, - [278] = {.lex_state = 39, .external_lex_state = 2}, + [278] = {.lex_state = 20, .external_lex_state = 2}, [279] = {.lex_state = 20, .external_lex_state = 2}, - [280] = {.lex_state = 20, .external_lex_state = 2}, + [280] = {.lex_state = 39, .external_lex_state = 2}, [281] = {.lex_state = 20, .external_lex_state = 2}, [282] = {.lex_state = 20, .external_lex_state = 2}, - [283] = {.lex_state = 39, .external_lex_state = 7}, + [283] = {.lex_state = 20, .external_lex_state = 2}, [284] = {.lex_state = 20, .external_lex_state = 2}, - [285] = {.lex_state = 20, .external_lex_state = 2}, + [285] = {.lex_state = 39, .external_lex_state = 7}, [286] = {.lex_state = 20, .external_lex_state = 2}, - [287] = {.lex_state = 39, .external_lex_state = 7}, + [287] = {.lex_state = 20, .external_lex_state = 2}, [288] = {.lex_state = 20, .external_lex_state = 2}, [289] = {.lex_state = 20, .external_lex_state = 2}, - [290] = {.lex_state = 39, .external_lex_state = 7}, - [291] = {.lex_state = 39, .external_lex_state = 2}, - [292] = {.lex_state = 39, .external_lex_state = 7}, + [290] = {.lex_state = 20, .external_lex_state = 2}, + [291] = {.lex_state = 20, .external_lex_state = 2}, + [292] = {.lex_state = 20, .external_lex_state = 2}, [293] = {.lex_state = 20, .external_lex_state = 2}, - [294] = {.lex_state = 20, .external_lex_state = 2}, - [295] = {.lex_state = 39, .external_lex_state = 2}, + [294] = {.lex_state = 39, .external_lex_state = 6}, + [295] = {.lex_state = 39, .external_lex_state = 7}, [296] = {.lex_state = 20, .external_lex_state = 2}, [297] = {.lex_state = 20, .external_lex_state = 2}, [298] = {.lex_state = 20, .external_lex_state = 2}, - [299] = {.lex_state = 20, .external_lex_state = 2}, + [299] = {.lex_state = 39, .external_lex_state = 7}, [300] = {.lex_state = 20, .external_lex_state = 2}, - [301] = {.lex_state = 39, .external_lex_state = 7}, + [301] = {.lex_state = 20, .external_lex_state = 2}, [302] = {.lex_state = 39, .external_lex_state = 7}, - [303] = {.lex_state = 39, .external_lex_state = 6}, - [304] = {.lex_state = 20, .external_lex_state = 2}, + [303] = {.lex_state = 20, .external_lex_state = 2}, + [304] = {.lex_state = 39, .external_lex_state = 2}, [305] = {.lex_state = 20, .external_lex_state = 2}, [306] = {.lex_state = 20, .external_lex_state = 2}, - [307] = {.lex_state = 39, .external_lex_state = 7}, + [307] = {.lex_state = 20, .external_lex_state = 2}, [308] = {.lex_state = 20, .external_lex_state = 2}, [309] = {.lex_state = 20, .external_lex_state = 2}, [310] = {.lex_state = 20, .external_lex_state = 2}, @@ -8229,19 +8267,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [313] = {.lex_state = 20, .external_lex_state = 2}, [314] = {.lex_state = 20, .external_lex_state = 2}, [315] = {.lex_state = 20, .external_lex_state = 2}, - [316] = {.lex_state = 39, .external_lex_state = 2}, - [317] = {.lex_state = 39, .external_lex_state = 2}, - [318] = {.lex_state = 39, .external_lex_state = 2}, - [319] = {.lex_state = 39, .external_lex_state = 2}, + [316] = {.lex_state = 20, .external_lex_state = 2}, + [317] = {.lex_state = 20, .external_lex_state = 2}, + [318] = {.lex_state = 20, .external_lex_state = 2}, + [319] = {.lex_state = 39, .external_lex_state = 7}, [320] = {.lex_state = 39, .external_lex_state = 2}, [321] = {.lex_state = 39, .external_lex_state = 2}, [322] = {.lex_state = 39, .external_lex_state = 2}, [323] = {.lex_state = 39, .external_lex_state = 2}, [324] = {.lex_state = 39, .external_lex_state = 2}, [325] = {.lex_state = 39, .external_lex_state = 2}, - [326] = {.lex_state = 39, .external_lex_state = 2}, - [327] = {.lex_state = 39, .external_lex_state = 2}, - [328] = {.lex_state = 39, .external_lex_state = 2}, + [326] = {.lex_state = 39, .external_lex_state = 3}, + [327] = {.lex_state = 39, .external_lex_state = 3}, + [328] = {.lex_state = 39, .external_lex_state = 3}, [329] = {.lex_state = 39, .external_lex_state = 2}, [330] = {.lex_state = 39, .external_lex_state = 2}, [331] = {.lex_state = 39, .external_lex_state = 2}, @@ -8252,8 +8290,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [336] = {.lex_state = 39, .external_lex_state = 2}, [337] = {.lex_state = 39, .external_lex_state = 2}, [338] = {.lex_state = 39, .external_lex_state = 2}, - [339] = {.lex_state = 39, .external_lex_state = 2}, - [340] = {.lex_state = 39, .external_lex_state = 2}, + [339] = {.lex_state = 39, .external_lex_state = 3}, + [340] = {.lex_state = 39, .external_lex_state = 3}, [341] = {.lex_state = 39, .external_lex_state = 2}, [342] = {.lex_state = 39, .external_lex_state = 2}, [343] = {.lex_state = 39, .external_lex_state = 2}, @@ -8262,40 +8300,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [346] = {.lex_state = 39, .external_lex_state = 2}, [347] = {.lex_state = 39, .external_lex_state = 2}, [348] = {.lex_state = 39, .external_lex_state = 2}, - [349] = {.lex_state = 39, .external_lex_state = 2}, - [350] = {.lex_state = 39, .external_lex_state = 2}, + [349] = {.lex_state = 39, .external_lex_state = 3}, + [350] = {.lex_state = 39, .external_lex_state = 3}, [351] = {.lex_state = 39, .external_lex_state = 2}, [352] = {.lex_state = 39, .external_lex_state = 2}, [353] = {.lex_state = 39, .external_lex_state = 2}, [354] = {.lex_state = 39, .external_lex_state = 2}, [355] = {.lex_state = 39, .external_lex_state = 2}, - [356] = {.lex_state = 39, .external_lex_state = 3}, + [356] = {.lex_state = 39, .external_lex_state = 2}, [357] = {.lex_state = 39, .external_lex_state = 2}, - [358] = {.lex_state = 39, .external_lex_state = 2}, - [359] = {.lex_state = 39, .external_lex_state = 2}, + [358] = {.lex_state = 39, .external_lex_state = 3}, + [359] = {.lex_state = 39, .external_lex_state = 3}, [360] = {.lex_state = 39, .external_lex_state = 3}, - [361] = {.lex_state = 39, .external_lex_state = 2}, + [361] = {.lex_state = 39, .external_lex_state = 3}, [362] = {.lex_state = 39, .external_lex_state = 2}, [363] = {.lex_state = 39, .external_lex_state = 2}, [364] = {.lex_state = 39, .external_lex_state = 2}, [365] = {.lex_state = 39, .external_lex_state = 2}, - [366] = {.lex_state = 39, .external_lex_state = 2}, - [367] = {.lex_state = 39, .external_lex_state = 2}, - [368] = {.lex_state = 39, .external_lex_state = 2}, - [369] = {.lex_state = 39, .external_lex_state = 2}, - [370] = {.lex_state = 39, .external_lex_state = 2}, - [371] = {.lex_state = 39, .external_lex_state = 2}, - [372] = {.lex_state = 39, .external_lex_state = 2}, + [366] = {.lex_state = 39, .external_lex_state = 3}, + [367] = {.lex_state = 39, .external_lex_state = 3}, + [368] = {.lex_state = 39, .external_lex_state = 3}, + [369] = {.lex_state = 39, .external_lex_state = 3}, + [370] = {.lex_state = 39, .external_lex_state = 3}, + [371] = {.lex_state = 39, .external_lex_state = 3}, + [372] = {.lex_state = 39, .external_lex_state = 3}, [373] = {.lex_state = 39, .external_lex_state = 2}, [374] = {.lex_state = 39, .external_lex_state = 2}, [375] = {.lex_state = 39, .external_lex_state = 2}, [376] = {.lex_state = 39, .external_lex_state = 2}, [377] = {.lex_state = 39, .external_lex_state = 2}, [378] = {.lex_state = 39, .external_lex_state = 2}, - [379] = {.lex_state = 39, .external_lex_state = 2}, + [379] = {.lex_state = 39, .external_lex_state = 3}, [380] = {.lex_state = 39, .external_lex_state = 2}, [381] = {.lex_state = 39, .external_lex_state = 2}, - [382] = {.lex_state = 39, .external_lex_state = 2}, + [382] = {.lex_state = 39, .external_lex_state = 3}, [383] = {.lex_state = 39, .external_lex_state = 2}, [384] = {.lex_state = 39, .external_lex_state = 2}, [385] = {.lex_state = 39, .external_lex_state = 2}, @@ -8318,7 +8356,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [402] = {.lex_state = 39, .external_lex_state = 2}, [403] = {.lex_state = 39, .external_lex_state = 2}, [404] = {.lex_state = 39, .external_lex_state = 2}, - [405] = {.lex_state = 39, .external_lex_state = 3}, + [405] = {.lex_state = 39, .external_lex_state = 2}, [406] = {.lex_state = 39, .external_lex_state = 2}, [407] = {.lex_state = 39, .external_lex_state = 2}, [408] = {.lex_state = 39, .external_lex_state = 2}, @@ -8336,31 +8374,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [420] = {.lex_state = 39, .external_lex_state = 2}, [421] = {.lex_state = 39, .external_lex_state = 2}, [422] = {.lex_state = 39, .external_lex_state = 2}, - [423] = {.lex_state = 39, .external_lex_state = 3}, + [423] = {.lex_state = 39, .external_lex_state = 2}, [424] = {.lex_state = 39, .external_lex_state = 3}, [425] = {.lex_state = 39, .external_lex_state = 2}, [426] = {.lex_state = 39, .external_lex_state = 2}, - [427] = {.lex_state = 39, .external_lex_state = 3}, - [428] = {.lex_state = 39, .external_lex_state = 3}, - [429] = {.lex_state = 39, .external_lex_state = 3}, - [430] = {.lex_state = 39, .external_lex_state = 2}, - [431] = {.lex_state = 39, .external_lex_state = 2}, + [427] = {.lex_state = 39, .external_lex_state = 2}, + [428] = {.lex_state = 39, .external_lex_state = 2}, + [429] = {.lex_state = 39, .external_lex_state = 2}, + [430] = {.lex_state = 39, .external_lex_state = 3}, + [431] = {.lex_state = 39, .external_lex_state = 3}, [432] = {.lex_state = 39, .external_lex_state = 2}, [433] = {.lex_state = 39, .external_lex_state = 2}, [434] = {.lex_state = 39, .external_lex_state = 2}, [435] = {.lex_state = 39, .external_lex_state = 2}, - [436] = {.lex_state = 39, .external_lex_state = 2}, + [436] = {.lex_state = 39, .external_lex_state = 3}, [437] = {.lex_state = 39, .external_lex_state = 2}, [438] = {.lex_state = 39, .external_lex_state = 2}, [439] = {.lex_state = 39, .external_lex_state = 2}, [440] = {.lex_state = 39, .external_lex_state = 2}, - [441] = {.lex_state = 39, .external_lex_state = 3}, - [442] = {.lex_state = 39, .external_lex_state = 2}, + [441] = {.lex_state = 39, .external_lex_state = 2}, + [442] = {.lex_state = 39, .external_lex_state = 3}, [443] = {.lex_state = 39, .external_lex_state = 2}, [444] = {.lex_state = 39, .external_lex_state = 2}, [445] = {.lex_state = 39, .external_lex_state = 2}, [446] = {.lex_state = 39, .external_lex_state = 2}, - [447] = {.lex_state = 39, .external_lex_state = 2}, + [447] = {.lex_state = 39, .external_lex_state = 3}, [448] = {.lex_state = 39, .external_lex_state = 2}, [449] = {.lex_state = 39, .external_lex_state = 2}, [450] = {.lex_state = 39, .external_lex_state = 2}, @@ -8381,11 +8419,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [465] = {.lex_state = 39, .external_lex_state = 2}, [466] = {.lex_state = 39, .external_lex_state = 2}, [467] = {.lex_state = 39, .external_lex_state = 2}, - [468] = {.lex_state = 39, .external_lex_state = 2}, + [468] = {.lex_state = 39, .external_lex_state = 3}, [469] = {.lex_state = 39, .external_lex_state = 2}, [470] = {.lex_state = 39, .external_lex_state = 2}, [471] = {.lex_state = 39, .external_lex_state = 2}, - [472] = {.lex_state = 39, .external_lex_state = 2}, + [472] = {.lex_state = 39, .external_lex_state = 3}, [473] = {.lex_state = 39, .external_lex_state = 2}, [474] = {.lex_state = 39, .external_lex_state = 2}, [475] = {.lex_state = 39, .external_lex_state = 2}, @@ -8400,8 +8438,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 39, .external_lex_state = 2}, [485] = {.lex_state = 39, .external_lex_state = 2}, [486] = {.lex_state = 39, .external_lex_state = 2}, - [487] = {.lex_state = 39, .external_lex_state = 2}, - [488] = {.lex_state = 39, .external_lex_state = 3}, + [487] = {.lex_state = 39, .external_lex_state = 3}, + [488] = {.lex_state = 39, .external_lex_state = 2}, [489] = {.lex_state = 39, .external_lex_state = 2}, [490] = {.lex_state = 39, .external_lex_state = 2}, [491] = {.lex_state = 39, .external_lex_state = 2}, @@ -8410,8 +8448,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [494] = {.lex_state = 39, .external_lex_state = 2}, [495] = {.lex_state = 39, .external_lex_state = 2}, [496] = {.lex_state = 39, .external_lex_state = 2}, - [497] = {.lex_state = 39, .external_lex_state = 3}, - [498] = {.lex_state = 39, .external_lex_state = 2}, + [497] = {.lex_state = 39, .external_lex_state = 2}, + [498] = {.lex_state = 39, .external_lex_state = 3}, [499] = {.lex_state = 39, .external_lex_state = 2}, [500] = {.lex_state = 39, .external_lex_state = 2}, [501] = {.lex_state = 39, .external_lex_state = 2}, @@ -8420,7 +8458,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [504] = {.lex_state = 39, .external_lex_state = 2}, [505] = {.lex_state = 39, .external_lex_state = 2}, [506] = {.lex_state = 39, .external_lex_state = 2}, - [507] = {.lex_state = 39, .external_lex_state = 2}, + [507] = {.lex_state = 39, .external_lex_state = 3}, [508] = {.lex_state = 39, .external_lex_state = 2}, [509] = {.lex_state = 39, .external_lex_state = 2}, [510] = {.lex_state = 39, .external_lex_state = 2}, @@ -8430,17 +8468,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [514] = {.lex_state = 39, .external_lex_state = 2}, [515] = {.lex_state = 39, .external_lex_state = 2}, [516] = {.lex_state = 39, .external_lex_state = 2}, - [517] = {.lex_state = 39, .external_lex_state = 3}, + [517] = {.lex_state = 39, .external_lex_state = 2}, [518] = {.lex_state = 39, .external_lex_state = 2}, [519] = {.lex_state = 39, .external_lex_state = 2}, [520] = {.lex_state = 39, .external_lex_state = 2}, [521] = {.lex_state = 39, .external_lex_state = 2}, - [522] = {.lex_state = 39, .external_lex_state = 2}, + [522] = {.lex_state = 39, .external_lex_state = 3}, [523] = {.lex_state = 39, .external_lex_state = 2}, [524] = {.lex_state = 39, .external_lex_state = 2}, [525] = {.lex_state = 39, .external_lex_state = 2}, [526] = {.lex_state = 39, .external_lex_state = 2}, - [527] = {.lex_state = 39, .external_lex_state = 3}, + [527] = {.lex_state = 39, .external_lex_state = 2}, [528] = {.lex_state = 39, .external_lex_state = 2}, [529] = {.lex_state = 39, .external_lex_state = 2}, [530] = {.lex_state = 39, .external_lex_state = 2}, @@ -8454,15 +8492,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [538] = {.lex_state = 39, .external_lex_state = 2}, [539] = {.lex_state = 39, .external_lex_state = 2}, [540] = {.lex_state = 39, .external_lex_state = 2}, - [541] = {.lex_state = 39, .external_lex_state = 2}, + [541] = {.lex_state = 39, .external_lex_state = 3}, [542] = {.lex_state = 39, .external_lex_state = 2}, [543] = {.lex_state = 39, .external_lex_state = 2}, [544] = {.lex_state = 39, .external_lex_state = 2}, - [545] = {.lex_state = 39, .external_lex_state = 2}, + [545] = {.lex_state = 39, .external_lex_state = 3}, [546] = {.lex_state = 39, .external_lex_state = 2}, [547] = {.lex_state = 39, .external_lex_state = 2}, [548] = {.lex_state = 39, .external_lex_state = 2}, - [549] = {.lex_state = 39, .external_lex_state = 2}, + [549] = {.lex_state = 39, .external_lex_state = 3}, [550] = {.lex_state = 39, .external_lex_state = 2}, [551] = {.lex_state = 39, .external_lex_state = 2}, [552] = {.lex_state = 39, .external_lex_state = 2}, @@ -8473,7 +8511,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [557] = {.lex_state = 39, .external_lex_state = 2}, [558] = {.lex_state = 39, .external_lex_state = 2}, [559] = {.lex_state = 39, .external_lex_state = 2}, - [560] = {.lex_state = 39, .external_lex_state = 2}, + [560] = {.lex_state = 39, .external_lex_state = 3}, [561] = {.lex_state = 39, .external_lex_state = 2}, [562] = {.lex_state = 39, .external_lex_state = 2}, [563] = {.lex_state = 39, .external_lex_state = 2}, @@ -8488,7 +8526,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [572] = {.lex_state = 39, .external_lex_state = 2}, [573] = {.lex_state = 39, .external_lex_state = 2}, [574] = {.lex_state = 39, .external_lex_state = 2}, - [575] = {.lex_state = 39, .external_lex_state = 3}, + [575] = {.lex_state = 39, .external_lex_state = 2}, [576] = {.lex_state = 39, .external_lex_state = 2}, [577] = {.lex_state = 39, .external_lex_state = 2}, [578] = {.lex_state = 39, .external_lex_state = 2}, @@ -8514,12 +8552,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [598] = {.lex_state = 39, .external_lex_state = 2}, [599] = {.lex_state = 39, .external_lex_state = 2}, [600] = {.lex_state = 39, .external_lex_state = 2}, - [601] = {.lex_state = 39, .external_lex_state = 3}, + [601] = {.lex_state = 39, .external_lex_state = 2}, [602] = {.lex_state = 39, .external_lex_state = 2}, [603] = {.lex_state = 39, .external_lex_state = 2}, [604] = {.lex_state = 39, .external_lex_state = 2}, - [605] = {.lex_state = 39, .external_lex_state = 2}, - [606] = {.lex_state = 39, .external_lex_state = 3}, + [605] = {.lex_state = 39, .external_lex_state = 3}, + [606] = {.lex_state = 39, .external_lex_state = 2}, [607] = {.lex_state = 39, .external_lex_state = 2}, [608] = {.lex_state = 39, .external_lex_state = 2}, [609] = {.lex_state = 39, .external_lex_state = 2}, @@ -8530,8 +8568,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [614] = {.lex_state = 39, .external_lex_state = 2}, [615] = {.lex_state = 39, .external_lex_state = 3}, [616] = {.lex_state = 39, .external_lex_state = 2}, - [617] = {.lex_state = 39, .external_lex_state = 3}, - [618] = {.lex_state = 39, .external_lex_state = 3}, + [617] = {.lex_state = 39, .external_lex_state = 2}, + [618] = {.lex_state = 39, .external_lex_state = 2}, [619] = {.lex_state = 39, .external_lex_state = 2}, [620] = {.lex_state = 39, .external_lex_state = 2}, [621] = {.lex_state = 39, .external_lex_state = 2}, @@ -8543,12 +8581,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [627] = {.lex_state = 39, .external_lex_state = 2}, [628] = {.lex_state = 39, .external_lex_state = 2}, [629] = {.lex_state = 39, .external_lex_state = 2}, - [630] = {.lex_state = 39, .external_lex_state = 2}, + [630] = {.lex_state = 39, .external_lex_state = 3}, [631] = {.lex_state = 39, .external_lex_state = 2}, [632] = {.lex_state = 39, .external_lex_state = 2}, [633] = {.lex_state = 39, .external_lex_state = 2}, [634] = {.lex_state = 39, .external_lex_state = 2}, - [635] = {.lex_state = 39, .external_lex_state = 2}, + [635] = {.lex_state = 39, .external_lex_state = 3}, [636] = {.lex_state = 39, .external_lex_state = 2}, [637] = {.lex_state = 39, .external_lex_state = 2}, [638] = {.lex_state = 39, .external_lex_state = 2}, @@ -8558,7 +8596,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [642] = {.lex_state = 39, .external_lex_state = 2}, [643] = {.lex_state = 39, .external_lex_state = 2}, [644] = {.lex_state = 39, .external_lex_state = 2}, - [645] = {.lex_state = 39, .external_lex_state = 3}, + [645] = {.lex_state = 39, .external_lex_state = 2}, [646] = {.lex_state = 39, .external_lex_state = 2}, [647] = {.lex_state = 39, .external_lex_state = 2}, [648] = {.lex_state = 39, .external_lex_state = 2}, @@ -8570,7 +8608,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [654] = {.lex_state = 39, .external_lex_state = 2}, [655] = {.lex_state = 39, .external_lex_state = 2}, [656] = {.lex_state = 39, .external_lex_state = 2}, - [657] = {.lex_state = 39, .external_lex_state = 3}, + [657] = {.lex_state = 39, .external_lex_state = 2}, [658] = {.lex_state = 39, .external_lex_state = 2}, [659] = {.lex_state = 39, .external_lex_state = 2}, [660] = {.lex_state = 39, .external_lex_state = 2}, @@ -8655,7 +8693,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [739] = {.lex_state = 39, .external_lex_state = 2}, [740] = {.lex_state = 39, .external_lex_state = 2}, [741] = {.lex_state = 39, .external_lex_state = 2}, - [742] = {.lex_state = 39, .external_lex_state = 2}, + [742] = {.lex_state = 39, .external_lex_state = 3}, [743] = {.lex_state = 39, .external_lex_state = 2}, [744] = {.lex_state = 39, .external_lex_state = 2}, [745] = {.lex_state = 39, .external_lex_state = 2}, @@ -8685,7 +8723,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [769] = {.lex_state = 39, .external_lex_state = 2}, [770] = {.lex_state = 39, .external_lex_state = 2}, [771] = {.lex_state = 39, .external_lex_state = 2}, - [772] = {.lex_state = 39, .external_lex_state = 3}, + [772] = {.lex_state = 39, .external_lex_state = 2}, [773] = {.lex_state = 39, .external_lex_state = 2}, [774] = {.lex_state = 39, .external_lex_state = 2}, [775] = {.lex_state = 39, .external_lex_state = 2}, @@ -8706,7 +8744,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [790] = {.lex_state = 39, .external_lex_state = 2}, [791] = {.lex_state = 39, .external_lex_state = 2}, [792] = {.lex_state = 39, .external_lex_state = 2}, - [793] = {.lex_state = 39, .external_lex_state = 3}, + [793] = {.lex_state = 39, .external_lex_state = 2}, [794] = {.lex_state = 39, .external_lex_state = 2}, [795] = {.lex_state = 39, .external_lex_state = 2}, [796] = {.lex_state = 39, .external_lex_state = 2}, @@ -8722,9 +8760,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [806] = {.lex_state = 39, .external_lex_state = 2}, [807] = {.lex_state = 39, .external_lex_state = 2}, [808] = {.lex_state = 39, .external_lex_state = 2}, - [809] = {.lex_state = 39, .external_lex_state = 3}, - [810] = {.lex_state = 39, .external_lex_state = 3}, - [811] = {.lex_state = 39, .external_lex_state = 3}, + [809] = {.lex_state = 39, .external_lex_state = 2}, + [810] = {.lex_state = 39, .external_lex_state = 2}, + [811] = {.lex_state = 39, .external_lex_state = 2}, [812] = {.lex_state = 39, .external_lex_state = 2}, [813] = {.lex_state = 39, .external_lex_state = 2}, [814] = {.lex_state = 39, .external_lex_state = 2}, @@ -8733,100 +8771,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [817] = {.lex_state = 39, .external_lex_state = 2}, [818] = {.lex_state = 39, .external_lex_state = 2}, [819] = {.lex_state = 39, .external_lex_state = 2}, - [820] = {.lex_state = 39, .external_lex_state = 3}, - [821] = {.lex_state = 39, .external_lex_state = 3}, - [822] = {.lex_state = 39, .external_lex_state = 3}, + [820] = {.lex_state = 39, .external_lex_state = 2}, + [821] = {.lex_state = 39, .external_lex_state = 2}, + [822] = {.lex_state = 39, .external_lex_state = 2}, [823] = {.lex_state = 39, .external_lex_state = 2}, [824] = {.lex_state = 39, .external_lex_state = 2}, - [825] = {.lex_state = 39, .external_lex_state = 3}, - [826] = {.lex_state = 39, .external_lex_state = 3}, - [827] = {.lex_state = 39, .external_lex_state = 3}, - [828] = {.lex_state = 39, .external_lex_state = 3}, + [825] = {.lex_state = 39, .external_lex_state = 2}, + [826] = {.lex_state = 39, .external_lex_state = 2}, + [827] = {.lex_state = 39, .external_lex_state = 2}, + [828] = {.lex_state = 39, .external_lex_state = 2}, [829] = {.lex_state = 39, .external_lex_state = 2}, - [830] = {.lex_state = 39, .external_lex_state = 3}, + [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}, - [834] = {.lex_state = 39, .external_lex_state = 3}, + [834] = {.lex_state = 39, .external_lex_state = 2}, [835] = {.lex_state = 39, .external_lex_state = 2}, - [836] = {.lex_state = 39, .external_lex_state = 3}, - [837] = {.lex_state = 39, .external_lex_state = 3}, + [836] = {.lex_state = 39, .external_lex_state = 2}, + [837] = {.lex_state = 39, .external_lex_state = 2}, [838] = {.lex_state = 39, .external_lex_state = 2}, [839] = {.lex_state = 39, .external_lex_state = 2}, [840] = {.lex_state = 39, .external_lex_state = 2}, [841] = {.lex_state = 39, .external_lex_state = 2}, [842] = {.lex_state = 39, .external_lex_state = 2}, - [843] = {.lex_state = 39, .external_lex_state = 3}, - [844] = {.lex_state = 39, .external_lex_state = 3}, - [845] = {.lex_state = 39, .external_lex_state = 3}, + [843] = {.lex_state = 39, .external_lex_state = 2}, + [844] = {.lex_state = 39, .external_lex_state = 2}, + [845] = {.lex_state = 39, .external_lex_state = 2}, [846] = {.lex_state = 39, .external_lex_state = 2}, [847] = {.lex_state = 39, .external_lex_state = 2}, [848] = {.lex_state = 39, .external_lex_state = 2}, [849] = {.lex_state = 39, .external_lex_state = 2}, - [850] = {.lex_state = 39, .external_lex_state = 3}, + [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 = 3}, + [856] = {.lex_state = 39, .external_lex_state = 2}, [857] = {.lex_state = 39, .external_lex_state = 2}, - [858] = {.lex_state = 39, .external_lex_state = 3}, + [858] = {.lex_state = 39, .external_lex_state = 2}, [859] = {.lex_state = 39, .external_lex_state = 2}, - [860] = {.lex_state = 39, .external_lex_state = 3}, - [861] = {.lex_state = 39, .external_lex_state = 3}, - [862] = {.lex_state = 39, .external_lex_state = 3}, - [863] = {.lex_state = 39, .external_lex_state = 3}, - [864] = {.lex_state = 39, .external_lex_state = 3}, - [865] = {.lex_state = 39, .external_lex_state = 2}, - [866] = {.lex_state = 39, .external_lex_state = 3}, + [860] = {.lex_state = 39, .external_lex_state = 2}, + [861] = {.lex_state = 39, .external_lex_state = 2}, + [862] = {.lex_state = 39, .external_lex_state = 2}, + [863] = {.lex_state = 39, .external_lex_state = 2}, + [864] = {.lex_state = 39, .external_lex_state = 2}, + [865] = {.lex_state = 39, .external_lex_state = 3}, + [866] = {.lex_state = 39, .external_lex_state = 2}, [867] = {.lex_state = 39, .external_lex_state = 3}, - [868] = {.lex_state = 39, .external_lex_state = 2}, - [869] = {.lex_state = 39, .external_lex_state = 2}, + [868] = {.lex_state = 39, .external_lex_state = 3}, + [869] = {.lex_state = 39, .external_lex_state = 3}, [870] = {.lex_state = 39, .external_lex_state = 2}, [871] = {.lex_state = 39, .external_lex_state = 2}, [872] = {.lex_state = 39, .external_lex_state = 2}, [873] = {.lex_state = 39, .external_lex_state = 2}, [874] = {.lex_state = 39, .external_lex_state = 2}, - [875] = {.lex_state = 39, .external_lex_state = 3}, - [876] = {.lex_state = 39, .external_lex_state = 3}, - [877] = {.lex_state = 39, .external_lex_state = 3}, - [878] = {.lex_state = 39, .external_lex_state = 3}, + [875] = {.lex_state = 39, .external_lex_state = 2}, + [876] = {.lex_state = 39, .external_lex_state = 2}, + [877] = {.lex_state = 39, .external_lex_state = 2}, + [878] = {.lex_state = 39, .external_lex_state = 2}, [879] = {.lex_state = 39, .external_lex_state = 2}, - [880] = {.lex_state = 39, .external_lex_state = 2}, + [880] = {.lex_state = 39, .external_lex_state = 3}, [881] = {.lex_state = 39, .external_lex_state = 3}, - [882] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 2}, + [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}, + [888] = {.lex_state = 39, .external_lex_state = 2}, [889] = {.lex_state = 39, .external_lex_state = 3}, - [890] = {.lex_state = 39, .external_lex_state = 3}, - [891] = {.lex_state = 39, .external_lex_state = 3}, + [890] = {.lex_state = 39, .external_lex_state = 2}, + [891] = {.lex_state = 39, .external_lex_state = 2}, [892] = {.lex_state = 39, .external_lex_state = 3}, - [893] = {.lex_state = 39, .external_lex_state = 2}, - [894] = {.lex_state = 39, .external_lex_state = 2}, - [895] = {.lex_state = 39, .external_lex_state = 2}, - [896] = {.lex_state = 39, .external_lex_state = 2}, - [897] = {.lex_state = 39, .external_lex_state = 2}, + [893] = {.lex_state = 39, .external_lex_state = 3}, + [894] = {.lex_state = 39, .external_lex_state = 3}, + [895] = {.lex_state = 39, .external_lex_state = 3}, + [896] = {.lex_state = 39, .external_lex_state = 3}, + [897] = {.lex_state = 39, .external_lex_state = 3}, [898] = {.lex_state = 39, .external_lex_state = 2}, - [899] = {.lex_state = 39, .external_lex_state = 2}, + [899] = {.lex_state = 39, .external_lex_state = 3}, [900] = {.lex_state = 39, .external_lex_state = 2}, [901] = {.lex_state = 39, .external_lex_state = 2}, [902] = {.lex_state = 39, .external_lex_state = 3}, - [903] = {.lex_state = 39, .external_lex_state = 3}, - [904] = {.lex_state = 39, .external_lex_state = 2}, + [903] = {.lex_state = 39, .external_lex_state = 2}, + [904] = {.lex_state = 39, .external_lex_state = 3}, [905] = {.lex_state = 39, .external_lex_state = 2}, - [906] = {.lex_state = 39, .external_lex_state = 3}, - [907] = {.lex_state = 39, .external_lex_state = 3}, + [906] = {.lex_state = 39, .external_lex_state = 2}, + [907] = {.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 = 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}, + [911] = {.lex_state = 39, .external_lex_state = 2}, + [912] = {.lex_state = 39, .external_lex_state = 2}, + [913] = {.lex_state = 39, .external_lex_state = 2}, [914] = {.lex_state = 39, .external_lex_state = 2}, [915] = {.lex_state = 39, .external_lex_state = 2}, [916] = {.lex_state = 39, .external_lex_state = 2}, @@ -8843,49 +8881,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, - [931] = {.lex_state = 39, .external_lex_state = 3}, - [932] = {.lex_state = 39, .external_lex_state = 3}, - [933] = {.lex_state = 39, .external_lex_state = 3}, - [934] = {.lex_state = 39, .external_lex_state = 3}, - [935] = {.lex_state = 39, .external_lex_state = 3}, - [936] = {.lex_state = 39, .external_lex_state = 3}, + [930] = {.lex_state = 39, .external_lex_state = 2}, + [931] = {.lex_state = 39, .external_lex_state = 2}, + [932] = {.lex_state = 39, .external_lex_state = 2}, + [933] = {.lex_state = 39, .external_lex_state = 2}, + [934] = {.lex_state = 39, .external_lex_state = 2}, + [935] = {.lex_state = 39, .external_lex_state = 2}, + [936] = {.lex_state = 39, .external_lex_state = 2}, [937] = {.lex_state = 39, .external_lex_state = 3}, - [938] = {.lex_state = 39, .external_lex_state = 3}, + [938] = {.lex_state = 39, .external_lex_state = 2}, [939] = {.lex_state = 39, .external_lex_state = 3}, - [940] = {.lex_state = 39, .external_lex_state = 2}, + [940] = {.lex_state = 39, .external_lex_state = 3}, [941] = {.lex_state = 39, .external_lex_state = 2}, [942] = {.lex_state = 39, .external_lex_state = 3}, - [943] = {.lex_state = 39, .external_lex_state = 3}, - [944] = {.lex_state = 39, .external_lex_state = 2}, + [943] = {.lex_state = 39, .external_lex_state = 2}, + [944] = {.lex_state = 39, .external_lex_state = 3}, [945] = {.lex_state = 39, .external_lex_state = 3}, - [946] = {.lex_state = 39, .external_lex_state = 3}, - [947] = {.lex_state = 39, .external_lex_state = 2}, - [948] = {.lex_state = 39, .external_lex_state = 3}, - [949] = {.lex_state = 39, .external_lex_state = 3}, - [950] = {.lex_state = 39, .external_lex_state = 3}, + [946] = {.lex_state = 39, .external_lex_state = 2}, + [947] = {.lex_state = 39, .external_lex_state = 3}, + [948] = {.lex_state = 39, .external_lex_state = 2}, + [949] = {.lex_state = 39, .external_lex_state = 2}, + [950] = {.lex_state = 39, .external_lex_state = 2}, [951] = {.lex_state = 39, .external_lex_state = 3}, - [952] = {.lex_state = 39, .external_lex_state = 2}, + [952] = {.lex_state = 39, .external_lex_state = 3}, [953] = {.lex_state = 39, .external_lex_state = 3}, - [954] = {.lex_state = 39, .external_lex_state = 3}, - [955] = {.lex_state = 39, .external_lex_state = 2}, + [954] = {.lex_state = 39, .external_lex_state = 2}, + [955] = {.lex_state = 39, .external_lex_state = 3}, [956] = {.lex_state = 39, .external_lex_state = 3}, [957] = {.lex_state = 39, .external_lex_state = 3}, - [958] = {.lex_state = 39, .external_lex_state = 2}, - [959] = {.lex_state = 39, .external_lex_state = 2}, - [960] = {.lex_state = 39, .external_lex_state = 3}, - [961] = {.lex_state = 39, .external_lex_state = 2}, + [958] = {.lex_state = 39, .external_lex_state = 3}, + [959] = {.lex_state = 39, .external_lex_state = 3}, + [960] = {.lex_state = 39, .external_lex_state = 2}, + [961] = {.lex_state = 39, .external_lex_state = 3}, [962] = {.lex_state = 39, .external_lex_state = 2}, - [963] = {.lex_state = 39, .external_lex_state = 2}, - [964] = {.lex_state = 39, .external_lex_state = 3}, - [965] = {.lex_state = 39, .external_lex_state = 3}, - [966] = {.lex_state = 39, .external_lex_state = 3}, + [963] = {.lex_state = 39, .external_lex_state = 3}, + [964] = {.lex_state = 39, .external_lex_state = 2}, + [965] = {.lex_state = 39, .external_lex_state = 2}, + [966] = {.lex_state = 39, .external_lex_state = 2}, [967] = {.lex_state = 39, .external_lex_state = 3}, [968] = {.lex_state = 39, .external_lex_state = 3}, - [969] = {.lex_state = 39, .external_lex_state = 2}, - [970] = {.lex_state = 39, .external_lex_state = 2}, - [971] = {.lex_state = 39, .external_lex_state = 2}, - [972] = {.lex_state = 39, .external_lex_state = 2}, + [969] = {.lex_state = 39, .external_lex_state = 3}, + [970] = {.lex_state = 39, .external_lex_state = 3}, + [971] = {.lex_state = 39, .external_lex_state = 3}, + [972] = {.lex_state = 39, .external_lex_state = 3}, [973] = {.lex_state = 39, .external_lex_state = 3}, [974] = {.lex_state = 39, .external_lex_state = 3}, [975] = {.lex_state = 39, .external_lex_state = 3}, @@ -8893,47 +8931,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [980] = {.lex_state = 39, .external_lex_state = 3}, + [981] = {.lex_state = 39, .external_lex_state = 2}, [982] = {.lex_state = 39, .external_lex_state = 3}, [983] = {.lex_state = 39, .external_lex_state = 2}, [984] = {.lex_state = 39, .external_lex_state = 3}, [985] = {.lex_state = 39, .external_lex_state = 3}, [986] = {.lex_state = 39, .external_lex_state = 3}, [987] = {.lex_state = 39, .external_lex_state = 3}, - [988] = {.lex_state = 39, .external_lex_state = 2}, + [988] = {.lex_state = 39, .external_lex_state = 3}, [989] = {.lex_state = 39, .external_lex_state = 2}, - [990] = {.lex_state = 39, .external_lex_state = 2}, - [991] = {.lex_state = 39, .external_lex_state = 2}, - [992] = {.lex_state = 39, .external_lex_state = 2}, - [993] = {.lex_state = 39, .external_lex_state = 2}, - [994] = {.lex_state = 39, .external_lex_state = 2}, - [995] = {.lex_state = 39, .external_lex_state = 2}, - [996] = {.lex_state = 39, .external_lex_state = 3}, - [997] = {.lex_state = 39, .external_lex_state = 2}, + [990] = {.lex_state = 39, .external_lex_state = 3}, + [991] = {.lex_state = 39, .external_lex_state = 3}, + [992] = {.lex_state = 39, .external_lex_state = 3}, + [993] = {.lex_state = 39, .external_lex_state = 3}, + [994] = {.lex_state = 39, .external_lex_state = 3}, + [995] = {.lex_state = 39, .external_lex_state = 3}, + [996] = {.lex_state = 39, .external_lex_state = 2}, + [997] = {.lex_state = 39, .external_lex_state = 3}, [998] = {.lex_state = 39, .external_lex_state = 3}, [999] = {.lex_state = 39, .external_lex_state = 3}, - [1000] = {.lex_state = 39, .external_lex_state = 2}, - [1001] = {.lex_state = 39, .external_lex_state = 2}, - [1002] = {.lex_state = 39, .external_lex_state = 2}, + [1000] = {.lex_state = 39, .external_lex_state = 3}, + [1001] = {.lex_state = 39, .external_lex_state = 3}, + [1002] = {.lex_state = 39, .external_lex_state = 3}, [1003] = {.lex_state = 39, .external_lex_state = 3}, - [1004] = {.lex_state = 39, .external_lex_state = 2}, - [1005] = {.lex_state = 39, .external_lex_state = 2}, + [1004] = {.lex_state = 39, .external_lex_state = 3}, + [1005] = {.lex_state = 39, .external_lex_state = 3}, [1006] = {.lex_state = 39, .external_lex_state = 3}, [1007] = {.lex_state = 39, .external_lex_state = 3}, [1008] = {.lex_state = 39, .external_lex_state = 3}, [1009] = {.lex_state = 39, .external_lex_state = 3}, - [1010] = {.lex_state = 39, .external_lex_state = 5}, - [1011] = {.lex_state = 39, .external_lex_state = 5}, - [1012] = {.lex_state = 39, .external_lex_state = 5}, - [1013] = {.lex_state = 39, .external_lex_state = 8}, - [1014] = {.lex_state = 39, .external_lex_state = 5}, - [1015] = {.lex_state = 39, .external_lex_state = 5}, - [1016] = {.lex_state = 39, .external_lex_state = 5}, - [1017] = {.lex_state = 39, .external_lex_state = 5}, + [1010] = {.lex_state = 39, .external_lex_state = 3}, + [1011] = {.lex_state = 39, .external_lex_state = 2}, + [1012] = {.lex_state = 39, .external_lex_state = 2}, + [1013] = {.lex_state = 39, .external_lex_state = 2}, + [1014] = {.lex_state = 39, .external_lex_state = 2}, + [1015] = {.lex_state = 39, .external_lex_state = 2}, + [1016] = {.lex_state = 39, .external_lex_state = 2}, + [1017] = {.lex_state = 39, .external_lex_state = 2}, [1018] = {.lex_state = 39, .external_lex_state = 5}, [1019] = {.lex_state = 39, .external_lex_state = 5}, - [1020] = {.lex_state = 39, .external_lex_state = 5}, + [1020] = {.lex_state = 39, .external_lex_state = 8}, [1021] = {.lex_state = 39, .external_lex_state = 5}, [1022] = {.lex_state = 39, .external_lex_state = 5}, [1023] = {.lex_state = 39, .external_lex_state = 5}, @@ -8950,7 +8988,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1034] = {.lex_state = 39, .external_lex_state = 5}, [1035] = {.lex_state = 39, .external_lex_state = 5}, [1036] = {.lex_state = 39, .external_lex_state = 5}, - [1037] = {.lex_state = 39, .external_lex_state = 5}, + [1037] = {.lex_state = 39, .external_lex_state = 9}, [1038] = {.lex_state = 39, .external_lex_state = 5}, [1039] = {.lex_state = 39, .external_lex_state = 5}, [1040] = {.lex_state = 39, .external_lex_state = 5}, @@ -8964,7 +9002,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1048] = {.lex_state = 39, .external_lex_state = 5}, [1049] = {.lex_state = 39, .external_lex_state = 5}, [1050] = {.lex_state = 39, .external_lex_state = 5}, - [1051] = {.lex_state = 39, .external_lex_state = 9}, + [1051] = {.lex_state = 39, .external_lex_state = 5}, [1052] = {.lex_state = 39, .external_lex_state = 5}, [1053] = {.lex_state = 39, .external_lex_state = 5}, [1054] = {.lex_state = 39, .external_lex_state = 5}, @@ -8980,7 +9018,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1064] = {.lex_state = 39, .external_lex_state = 5}, [1065] = {.lex_state = 39, .external_lex_state = 5}, [1066] = {.lex_state = 39, .external_lex_state = 5}, - [1067] = {.lex_state = 39, .external_lex_state = 5}, + [1067] = {.lex_state = 39, .external_lex_state = 9}, [1068] = {.lex_state = 39, .external_lex_state = 5}, [1069] = {.lex_state = 39, .external_lex_state = 5}, [1070] = {.lex_state = 39, .external_lex_state = 5}, @@ -8990,7 +9028,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1074] = {.lex_state = 39, .external_lex_state = 5}, [1075] = {.lex_state = 39, .external_lex_state = 5}, [1076] = {.lex_state = 39, .external_lex_state = 5}, - [1077] = {.lex_state = 39, .external_lex_state = 9}, + [1077] = {.lex_state = 39, .external_lex_state = 5}, [1078] = {.lex_state = 39, .external_lex_state = 5}, [1079] = {.lex_state = 39, .external_lex_state = 5}, [1080] = {.lex_state = 39, .external_lex_state = 5}, @@ -9002,10 +9040,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1086] = {.lex_state = 39, .external_lex_state = 5}, [1087] = {.lex_state = 39, .external_lex_state = 5}, [1088] = {.lex_state = 39, .external_lex_state = 5}, - [1089] = {.lex_state = 39, .external_lex_state = 5}, + [1089] = {.lex_state = 39, .external_lex_state = 2}, [1090] = {.lex_state = 39, .external_lex_state = 5}, [1091] = {.lex_state = 39, .external_lex_state = 5}, - [1092] = {.lex_state = 39, .external_lex_state = 3}, + [1092] = {.lex_state = 39, .external_lex_state = 5}, [1093] = {.lex_state = 39, .external_lex_state = 5}, [1094] = {.lex_state = 39, .external_lex_state = 5}, [1095] = {.lex_state = 39, .external_lex_state = 5}, @@ -9016,36 +9054,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1100] = {.lex_state = 39, .external_lex_state = 5}, [1101] = {.lex_state = 39, .external_lex_state = 5}, [1102] = {.lex_state = 39, .external_lex_state = 5}, - [1103] = {.lex_state = 39, .external_lex_state = 5}, - [1104] = {.lex_state = 39, .external_lex_state = 2}, - [1105] = {.lex_state = 39, .external_lex_state = 5}, + [1103] = {.lex_state = 39, .external_lex_state = 3}, + [1104] = {.lex_state = 39, .external_lex_state = 5}, + [1105] = {.lex_state = 39, .external_lex_state = 3}, [1106] = {.lex_state = 39, .external_lex_state = 5}, [1107] = {.lex_state = 39, .external_lex_state = 5}, - [1108] = {.lex_state = 39, .external_lex_state = 5}, + [1108] = {.lex_state = 39, .external_lex_state = 3}, [1109] = {.lex_state = 39, .external_lex_state = 3}, [1110] = {.lex_state = 39, .external_lex_state = 5}, [1111] = {.lex_state = 39, .external_lex_state = 5}, [1112] = {.lex_state = 39, .external_lex_state = 5}, [1113] = {.lex_state = 39, .external_lex_state = 5}, [1114] = {.lex_state = 39, .external_lex_state = 5}, - [1115] = {.lex_state = 39, .external_lex_state = 5}, + [1115] = {.lex_state = 39, .external_lex_state = 2}, [1116] = {.lex_state = 39, .external_lex_state = 5}, [1117] = {.lex_state = 39, .external_lex_state = 5}, [1118] = {.lex_state = 39, .external_lex_state = 5}, [1119] = {.lex_state = 39, .external_lex_state = 5}, [1120] = {.lex_state = 39, .external_lex_state = 5}, [1121] = {.lex_state = 39, .external_lex_state = 5}, - [1122] = {.lex_state = 39, .external_lex_state = 2}, - [1123] = {.lex_state = 39, .external_lex_state = 2}, + [1122] = {.lex_state = 39, .external_lex_state = 5}, + [1123] = {.lex_state = 39, .external_lex_state = 5}, [1124] = {.lex_state = 39, .external_lex_state = 2}, [1125] = {.lex_state = 39, .external_lex_state = 5}, [1126] = {.lex_state = 39, .external_lex_state = 5}, - [1127] = {.lex_state = 39, .external_lex_state = 3}, + [1127] = {.lex_state = 39, .external_lex_state = 5}, [1128] = {.lex_state = 39, .external_lex_state = 5}, [1129] = {.lex_state = 39, .external_lex_state = 5}, [1130] = {.lex_state = 39, .external_lex_state = 5}, - [1131] = {.lex_state = 39, .external_lex_state = 3}, - [1132] = {.lex_state = 39, .external_lex_state = 5}, + [1131] = {.lex_state = 39, .external_lex_state = 5}, + [1132] = {.lex_state = 39, .external_lex_state = 2}, [1133] = {.lex_state = 39, .external_lex_state = 5}, [1134] = {.lex_state = 39, .external_lex_state = 5}, [1135] = {.lex_state = 39, .external_lex_state = 5}, @@ -9055,75 +9093,75 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1139] = {.lex_state = 39, .external_lex_state = 5}, [1140] = {.lex_state = 39, .external_lex_state = 5}, [1141] = {.lex_state = 39, .external_lex_state = 5}, - [1142] = {.lex_state = 39, .external_lex_state = 10}, - [1143] = {.lex_state = 39, .external_lex_state = 10}, - [1144] = {.lex_state = 39, .external_lex_state = 10}, - [1145] = {.lex_state = 39, .external_lex_state = 2}, - [1146] = {.lex_state = 39, .external_lex_state = 9}, - [1147] = {.lex_state = 39, .external_lex_state = 2}, - [1148] = {.lex_state = 39, .external_lex_state = 3}, - [1149] = {.lex_state = 39, .external_lex_state = 3}, - [1150] = {.lex_state = 39, .external_lex_state = 2}, - [1151] = {.lex_state = 39, .external_lex_state = 3}, - [1152] = {.lex_state = 39, .external_lex_state = 9}, - [1153] = {.lex_state = 39, .external_lex_state = 3}, + [1142] = {.lex_state = 39, .external_lex_state = 5}, + [1143] = {.lex_state = 39, .external_lex_state = 5}, + [1144] = {.lex_state = 39, .external_lex_state = 5}, + [1145] = {.lex_state = 39, .external_lex_state = 5}, + [1146] = {.lex_state = 39, .external_lex_state = 5}, + [1147] = {.lex_state = 39, .external_lex_state = 5}, + [1148] = {.lex_state = 39, .external_lex_state = 5}, + [1149] = {.lex_state = 39, .external_lex_state = 5}, + [1150] = {.lex_state = 39, .external_lex_state = 10}, + [1151] = {.lex_state = 39, .external_lex_state = 10}, + [1152] = {.lex_state = 39, .external_lex_state = 10}, + [1153] = {.lex_state = 39, .external_lex_state = 9}, [1154] = {.lex_state = 39, .external_lex_state = 3}, - [1155] = {.lex_state = 39, .external_lex_state = 2}, - [1156] = {.lex_state = 39, .external_lex_state = 9}, + [1155] = {.lex_state = 39, .external_lex_state = 9}, + [1156] = {.lex_state = 39, .external_lex_state = 2}, [1157] = {.lex_state = 39, .external_lex_state = 2}, - [1158] = {.lex_state = 39, .external_lex_state = 3}, - [1159] = {.lex_state = 39, .external_lex_state = 11}, - [1160] = {.lex_state = 39, .external_lex_state = 3}, - [1161] = {.lex_state = 39, .external_lex_state = 11}, - [1162] = {.lex_state = 39, .external_lex_state = 9}, - [1163] = {.lex_state = 39, .external_lex_state = 10}, - [1164] = {.lex_state = 39, .external_lex_state = 9}, - [1165] = {.lex_state = 39, .external_lex_state = 11}, - [1166] = {.lex_state = 39, .external_lex_state = 9}, - [1167] = {.lex_state = 39, .external_lex_state = 2}, - [1168] = {.lex_state = 39, .external_lex_state = 11}, - [1169] = {.lex_state = 39, .external_lex_state = 11}, - [1170] = {.lex_state = 39, .external_lex_state = 9}, - [1171] = {.lex_state = 39, .external_lex_state = 2}, - [1172] = {.lex_state = 39, .external_lex_state = 9}, - [1173] = {.lex_state = 39, .external_lex_state = 9}, - [1174] = {.lex_state = 39, .external_lex_state = 10}, - [1175] = {.lex_state = 39, .external_lex_state = 10}, + [1158] = {.lex_state = 39, .external_lex_state = 2}, + [1159] = {.lex_state = 39, .external_lex_state = 9}, + [1160] = {.lex_state = 39, .external_lex_state = 2}, + [1161] = {.lex_state = 39, .external_lex_state = 3}, + [1162] = {.lex_state = 39, .external_lex_state = 3}, + [1163] = {.lex_state = 39, .external_lex_state = 2}, + [1164] = {.lex_state = 39, .external_lex_state = 3}, + [1165] = {.lex_state = 39, .external_lex_state = 3}, + [1166] = {.lex_state = 39, .external_lex_state = 11}, + [1167] = {.lex_state = 39, .external_lex_state = 11}, + [1168] = {.lex_state = 39, .external_lex_state = 9}, + [1169] = {.lex_state = 39, .external_lex_state = 2}, + [1170] = {.lex_state = 39, .external_lex_state = 11}, + [1171] = {.lex_state = 39, .external_lex_state = 9}, + [1172] = {.lex_state = 39, .external_lex_state = 2}, + [1173] = {.lex_state = 39, .external_lex_state = 3}, + [1174] = {.lex_state = 39, .external_lex_state = 11}, + [1175] = {.lex_state = 39, .external_lex_state = 9}, [1176] = {.lex_state = 39, .external_lex_state = 9}, [1177] = {.lex_state = 39, .external_lex_state = 10}, - [1178] = {.lex_state = 39, .external_lex_state = 10}, - [1179] = {.lex_state = 39, .external_lex_state = 9}, - [1180] = {.lex_state = 39, .external_lex_state = 10}, - [1181] = {.lex_state = 39, .external_lex_state = 12}, - [1182] = {.lex_state = 39, .external_lex_state = 2}, - [1183] = {.lex_state = 39, .external_lex_state = 2}, - [1184] = {.lex_state = 39, .external_lex_state = 9}, - [1185] = {.lex_state = 39, .external_lex_state = 2}, - [1186] = {.lex_state = 39, .external_lex_state = 8}, - [1187] = {.lex_state = 39, .external_lex_state = 2}, - [1188] = {.lex_state = 3, .external_lex_state = 10}, - [1189] = {.lex_state = 39, .external_lex_state = 9}, - [1190] = {.lex_state = 39, .external_lex_state = 3}, - [1191] = {.lex_state = 39, .external_lex_state = 10}, + [1178] = {.lex_state = 39, .external_lex_state = 9}, + [1179] = {.lex_state = 39, .external_lex_state = 11}, + [1180] = {.lex_state = 39, .external_lex_state = 9}, + [1181] = {.lex_state = 39, .external_lex_state = 3}, + [1182] = {.lex_state = 39, .external_lex_state = 10}, + [1183] = {.lex_state = 39, .external_lex_state = 10}, + [1184] = {.lex_state = 3, .external_lex_state = 10}, + [1185] = {.lex_state = 39, .external_lex_state = 8}, + [1186] = {.lex_state = 39, .external_lex_state = 10}, + [1187] = {.lex_state = 39, .external_lex_state = 10}, + [1188] = {.lex_state = 39, .external_lex_state = 2}, + [1189] = {.lex_state = 39, .external_lex_state = 10}, + [1190] = {.lex_state = 39, .external_lex_state = 10}, + [1191] = {.lex_state = 39, .external_lex_state = 3}, [1192] = {.lex_state = 39, .external_lex_state = 10}, - [1193] = {.lex_state = 39, .external_lex_state = 3}, - [1194] = {.lex_state = 39, .external_lex_state = 10}, - [1195] = {.lex_state = 39, .external_lex_state = 3}, - [1196] = {.lex_state = 39, .external_lex_state = 10}, - [1197] = {.lex_state = 3, .external_lex_state = 10}, - [1198] = {.lex_state = 39, .external_lex_state = 3}, - [1199] = {.lex_state = 39, .external_lex_state = 8}, - [1200] = {.lex_state = 39, .external_lex_state = 10}, + [1193] = {.lex_state = 39, .external_lex_state = 10}, + [1194] = {.lex_state = 39, .external_lex_state = 9}, + [1195] = {.lex_state = 39, .external_lex_state = 10}, + [1196] = {.lex_state = 39, .external_lex_state = 9}, + [1197] = {.lex_state = 39, .external_lex_state = 10}, + [1198] = {.lex_state = 39, .external_lex_state = 9}, + [1199] = {.lex_state = 39, .external_lex_state = 10}, + [1200] = {.lex_state = 39, .external_lex_state = 5}, [1201] = {.lex_state = 39, .external_lex_state = 5}, [1202] = {.lex_state = 39, .external_lex_state = 5}, [1203] = {.lex_state = 39, .external_lex_state = 5}, - [1204] = {.lex_state = 39, .external_lex_state = 5}, - [1205] = {.lex_state = 39, .external_lex_state = 10}, + [1204] = {.lex_state = 39, .external_lex_state = 10}, + [1205] = {.lex_state = 3, .external_lex_state = 10}, [1206] = {.lex_state = 39, .external_lex_state = 10}, [1207] = {.lex_state = 39, .external_lex_state = 10}, - [1208] = {.lex_state = 39, .external_lex_state = 10}, - [1209] = {.lex_state = 39, .external_lex_state = 10}, - [1210] = {.lex_state = 39, .external_lex_state = 10}, + [1208] = {.lex_state = 39, .external_lex_state = 9}, + [1209] = {.lex_state = 39, .external_lex_state = 12}, + [1210] = {.lex_state = 39, .external_lex_state = 8}, [1211] = {.lex_state = 39, .external_lex_state = 10}, [1212] = {.lex_state = 39, .external_lex_state = 10}, [1213] = {.lex_state = 39, .external_lex_state = 10}, @@ -9134,161 +9172,161 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1218] = {.lex_state = 39, .external_lex_state = 10}, [1219] = {.lex_state = 39, .external_lex_state = 10}, [1220] = {.lex_state = 39, .external_lex_state = 10}, - [1221] = {.lex_state = 39, .external_lex_state = 10}, + [1221] = {.lex_state = 39, .external_lex_state = 3}, [1222] = {.lex_state = 39, .external_lex_state = 10}, - [1223] = {.lex_state = 39, .external_lex_state = 10}, - [1224] = {.lex_state = 3, .external_lex_state = 10}, - [1225] = {.lex_state = 39, .external_lex_state = 9}, - [1226] = {.lex_state = 39, .external_lex_state = 9}, - [1227] = {.lex_state = 39, .external_lex_state = 9}, - [1228] = {.lex_state = 39, .external_lex_state = 10}, - [1229] = {.lex_state = 39, .external_lex_state = 9}, - [1230] = {.lex_state = 39, .external_lex_state = 9}, - [1231] = {.lex_state = 39, .external_lex_state = 9}, - [1232] = {.lex_state = 39, .external_lex_state = 9}, + [1223] = {.lex_state = 39, .external_lex_state = 3}, + [1224] = {.lex_state = 39, .external_lex_state = 10}, + [1225] = {.lex_state = 39, .external_lex_state = 10}, + [1226] = {.lex_state = 39, .external_lex_state = 3}, + [1227] = {.lex_state = 39, .external_lex_state = 10}, + [1228] = {.lex_state = 39, .external_lex_state = 2}, + [1229] = {.lex_state = 39, .external_lex_state = 10}, + [1230] = {.lex_state = 39, .external_lex_state = 2}, + [1231] = {.lex_state = 39, .external_lex_state = 2}, + [1232] = {.lex_state = 3, .external_lex_state = 10}, [1233] = {.lex_state = 39, .external_lex_state = 10}, - [1234] = {.lex_state = 39, .external_lex_state = 10}, + [1234] = {.lex_state = 39, .external_lex_state = 12}, [1235] = {.lex_state = 39, .external_lex_state = 9}, - [1236] = {.lex_state = 39, .external_lex_state = 9}, - [1237] = {.lex_state = 39, .external_lex_state = 10}, + [1236] = {.lex_state = 39, .external_lex_state = 10}, + [1237] = {.lex_state = 39, .external_lex_state = 9}, [1238] = {.lex_state = 39, .external_lex_state = 9}, - [1239] = {.lex_state = 39, .external_lex_state = 2}, + [1239] = {.lex_state = 39, .external_lex_state = 9}, [1240] = {.lex_state = 39, .external_lex_state = 9}, - [1241] = {.lex_state = 39, .external_lex_state = 10}, - [1242] = {.lex_state = 39, .external_lex_state = 9}, - [1243] = {.lex_state = 39, .external_lex_state = 10}, - [1244] = {.lex_state = 39, .external_lex_state = 12}, + [1241] = {.lex_state = 39, .external_lex_state = 9}, + [1242] = {.lex_state = 39, .external_lex_state = 3}, + [1243] = {.lex_state = 39, .external_lex_state = 5}, + [1244] = {.lex_state = 39, .external_lex_state = 9}, [1245] = {.lex_state = 39, .external_lex_state = 9}, - [1246] = {.lex_state = 39, .external_lex_state = 10}, - [1247] = {.lex_state = 39, .external_lex_state = 10}, - [1248] = {.lex_state = 39, .external_lex_state = 10}, - [1249] = {.lex_state = 39, .external_lex_state = 10}, + [1246] = {.lex_state = 39, .external_lex_state = 9}, + [1247] = {.lex_state = 39, .external_lex_state = 2}, + [1248] = {.lex_state = 39, .external_lex_state = 9}, + [1249] = {.lex_state = 39, .external_lex_state = 9}, [1250] = {.lex_state = 39, .external_lex_state = 9}, - [1251] = {.lex_state = 39, .external_lex_state = 10}, - [1252] = {.lex_state = 39, .external_lex_state = 10}, + [1251] = {.lex_state = 39, .external_lex_state = 9}, + [1252] = {.lex_state = 39, .external_lex_state = 9}, [1253] = {.lex_state = 39, .external_lex_state = 9}, [1254] = {.lex_state = 39, .external_lex_state = 9}, - [1255] = {.lex_state = 39, .external_lex_state = 10}, + [1255] = {.lex_state = 39, .external_lex_state = 9}, [1256] = {.lex_state = 39, .external_lex_state = 9}, [1257] = {.lex_state = 39, .external_lex_state = 10}, [1258] = {.lex_state = 39, .external_lex_state = 9}, [1259] = {.lex_state = 39, .external_lex_state = 9}, [1260] = {.lex_state = 39, .external_lex_state = 9}, - [1261] = {.lex_state = 39, .external_lex_state = 9}, + [1261] = {.lex_state = 39, .external_lex_state = 10}, [1262] = {.lex_state = 39, .external_lex_state = 9}, - [1263] = {.lex_state = 39, .external_lex_state = 9}, + [1263] = {.lex_state = 39, .external_lex_state = 10}, [1264] = {.lex_state = 39, .external_lex_state = 9}, [1265] = {.lex_state = 39, .external_lex_state = 9}, [1266] = {.lex_state = 39, .external_lex_state = 9}, - [1267] = {.lex_state = 39, .external_lex_state = 10}, + [1267] = {.lex_state = 39, .external_lex_state = 9}, [1268] = {.lex_state = 39, .external_lex_state = 9}, [1269] = {.lex_state = 39, .external_lex_state = 9}, [1270] = {.lex_state = 39, .external_lex_state = 9}, - [1271] = {.lex_state = 39, .external_lex_state = 10}, + [1271] = {.lex_state = 39, .external_lex_state = 9}, [1272] = {.lex_state = 39, .external_lex_state = 9}, [1273] = {.lex_state = 39, .external_lex_state = 9}, [1274] = {.lex_state = 39, .external_lex_state = 9}, - [1275] = {.lex_state = 39, .external_lex_state = 9}, + [1275] = {.lex_state = 39, .external_lex_state = 10}, [1276] = {.lex_state = 39, .external_lex_state = 9}, - [1277] = {.lex_state = 39, .external_lex_state = 9}, - [1278] = {.lex_state = 39, .external_lex_state = 9}, - [1279] = {.lex_state = 39, .external_lex_state = 9}, - [1280] = {.lex_state = 39, .external_lex_state = 9}, - [1281] = {.lex_state = 39, .external_lex_state = 9}, - [1282] = {.lex_state = 39, .external_lex_state = 10}, + [1277] = {.lex_state = 39, .external_lex_state = 12}, + [1278] = {.lex_state = 39, .external_lex_state = 10}, + [1279] = {.lex_state = 39, .external_lex_state = 10}, + [1280] = {.lex_state = 39, .external_lex_state = 10}, + [1281] = {.lex_state = 39, .external_lex_state = 10}, + [1282] = {.lex_state = 39, .external_lex_state = 9}, [1283] = {.lex_state = 39, .external_lex_state = 9}, - [1284] = {.lex_state = 39, .external_lex_state = 9}, - [1285] = {.lex_state = 39, .external_lex_state = 9}, + [1284] = {.lex_state = 39, .external_lex_state = 10}, + [1285] = {.lex_state = 39, .external_lex_state = 10}, [1286] = {.lex_state = 39, .external_lex_state = 9}, - [1287] = {.lex_state = 39, .external_lex_state = 9}, - [1288] = {.lex_state = 39, .external_lex_state = 10}, - [1289] = {.lex_state = 39, .external_lex_state = 10}, - [1290] = {.lex_state = 39, .external_lex_state = 9}, - [1291] = {.lex_state = 39, .external_lex_state = 9}, + [1287] = {.lex_state = 39, .external_lex_state = 10}, + [1288] = {.lex_state = 39, .external_lex_state = 9}, + [1289] = {.lex_state = 39, .external_lex_state = 9}, + [1290] = {.lex_state = 39, .external_lex_state = 10}, + [1291] = {.lex_state = 39, .external_lex_state = 10}, [1292] = {.lex_state = 39, .external_lex_state = 10}, [1293] = {.lex_state = 39, .external_lex_state = 9}, [1294] = {.lex_state = 39, .external_lex_state = 9}, [1295] = {.lex_state = 39, .external_lex_state = 9}, [1296] = {.lex_state = 39, .external_lex_state = 9}, [1297] = {.lex_state = 39, .external_lex_state = 9}, - [1298] = {.lex_state = 39, .external_lex_state = 3}, + [1298] = {.lex_state = 39, .external_lex_state = 9}, [1299] = {.lex_state = 39, .external_lex_state = 9}, [1300] = {.lex_state = 39, .external_lex_state = 9}, [1301] = {.lex_state = 39, .external_lex_state = 9}, [1302] = {.lex_state = 39, .external_lex_state = 9}, [1303] = {.lex_state = 39, .external_lex_state = 9}, - [1304] = {.lex_state = 39, .external_lex_state = 5}, + [1304] = {.lex_state = 39, .external_lex_state = 9}, [1305] = {.lex_state = 39, .external_lex_state = 9}, - [1306] = {.lex_state = 39, .external_lex_state = 9}, + [1306] = {.lex_state = 39, .external_lex_state = 10}, [1307] = {.lex_state = 39, .external_lex_state = 9}, [1308] = {.lex_state = 39, .external_lex_state = 9}, [1309] = {.lex_state = 39, .external_lex_state = 9}, [1310] = {.lex_state = 39, .external_lex_state = 9}, [1311] = {.lex_state = 39, .external_lex_state = 10}, [1312] = {.lex_state = 39, .external_lex_state = 10}, - [1313] = {.lex_state = 39, .external_lex_state = 10}, + [1313] = {.lex_state = 39, .external_lex_state = 9}, [1314] = {.lex_state = 39, .external_lex_state = 10}, [1315] = {.lex_state = 39, .external_lex_state = 10}, [1316] = {.lex_state = 39, .external_lex_state = 10}, - [1317] = {.lex_state = 39, .external_lex_state = 9}, + [1317] = {.lex_state = 39, .external_lex_state = 10}, [1318] = {.lex_state = 39, .external_lex_state = 10}, [1319] = {.lex_state = 39, .external_lex_state = 12}, - [1320] = {.lex_state = 39, .external_lex_state = 9}, - [1321] = {.lex_state = 39, .external_lex_state = 9}, - [1322] = {.lex_state = 39, .external_lex_state = 12}, + [1320] = {.lex_state = 39, .external_lex_state = 10}, + [1321] = {.lex_state = 39, .external_lex_state = 10}, + [1322] = {.lex_state = 39, .external_lex_state = 9}, [1323] = {.lex_state = 39, .external_lex_state = 9}, - [1324] = {.lex_state = 39, .external_lex_state = 10}, - [1325] = {.lex_state = 39, .external_lex_state = 10}, - [1326] = {.lex_state = 39, .external_lex_state = 10}, + [1324] = {.lex_state = 39, .external_lex_state = 9}, + [1325] = {.lex_state = 39, .external_lex_state = 9}, + [1326] = {.lex_state = 39, .external_lex_state = 9}, [1327] = {.lex_state = 39, .external_lex_state = 9}, [1328] = {.lex_state = 39, .external_lex_state = 9}, [1329] = {.lex_state = 39, .external_lex_state = 9}, - [1330] = {.lex_state = 39, .external_lex_state = 10}, + [1330] = {.lex_state = 39, .external_lex_state = 9}, [1331] = {.lex_state = 39, .external_lex_state = 10}, [1332] = {.lex_state = 39, .external_lex_state = 10}, [1333] = {.lex_state = 39, .external_lex_state = 9}, - [1334] = {.lex_state = 39, .external_lex_state = 10}, - [1335] = {.lex_state = 39, .external_lex_state = 10}, + [1334] = {.lex_state = 39, .external_lex_state = 9}, + [1335] = {.lex_state = 39, .external_lex_state = 9}, [1336] = {.lex_state = 39, .external_lex_state = 10}, - [1337] = {.lex_state = 39, .external_lex_state = 10}, + [1337] = {.lex_state = 39, .external_lex_state = 9}, [1338] = {.lex_state = 39, .external_lex_state = 10}, [1339] = {.lex_state = 39, .external_lex_state = 10}, - [1340] = {.lex_state = 39, .external_lex_state = 10}, - [1341] = {.lex_state = 39, .external_lex_state = 10}, - [1342] = {.lex_state = 39, .external_lex_state = 9}, - [1343] = {.lex_state = 39, .external_lex_state = 9}, + [1340] = {.lex_state = 39, .external_lex_state = 9}, + [1341] = {.lex_state = 39, .external_lex_state = 9}, + [1342] = {.lex_state = 39, .external_lex_state = 10}, + [1343] = {.lex_state = 39, .external_lex_state = 10}, [1344] = {.lex_state = 39, .external_lex_state = 9}, - [1345] = {.lex_state = 39, .external_lex_state = 10}, - [1346] = {.lex_state = 39, .external_lex_state = 10}, - [1347] = {.lex_state = 39, .external_lex_state = 10}, + [1345] = {.lex_state = 39, .external_lex_state = 8}, + [1346] = {.lex_state = 39, .external_lex_state = 9}, + [1347] = {.lex_state = 39, .external_lex_state = 9}, [1348] = {.lex_state = 39, .external_lex_state = 10}, [1349] = {.lex_state = 39, .external_lex_state = 10}, - [1350] = {.lex_state = 39, .external_lex_state = 10}, + [1350] = {.lex_state = 39, .external_lex_state = 9}, [1351] = {.lex_state = 39, .external_lex_state = 10}, [1352] = {.lex_state = 39, .external_lex_state = 10}, [1353] = {.lex_state = 39, .external_lex_state = 10}, - [1354] = {.lex_state = 39, .external_lex_state = 10}, + [1354] = {.lex_state = 39, .external_lex_state = 9}, [1355] = {.lex_state = 39, .external_lex_state = 10}, [1356] = {.lex_state = 39, .external_lex_state = 10}, - [1357] = {.lex_state = 39, .external_lex_state = 9}, + [1357] = {.lex_state = 39, .external_lex_state = 10}, [1358] = {.lex_state = 39, .external_lex_state = 10}, - [1359] = {.lex_state = 39, .external_lex_state = 8}, + [1359] = {.lex_state = 39, .external_lex_state = 10}, [1360] = {.lex_state = 39, .external_lex_state = 10}, [1361] = {.lex_state = 39, .external_lex_state = 10}, [1362] = {.lex_state = 39, .external_lex_state = 10}, - [1363] = {.lex_state = 39, .external_lex_state = 10}, + [1363] = {.lex_state = 39, .external_lex_state = 9}, [1364] = {.lex_state = 39, .external_lex_state = 9}, [1365] = {.lex_state = 39, .external_lex_state = 10}, - [1366] = {.lex_state = 39, .external_lex_state = 9}, + [1366] = {.lex_state = 39, .external_lex_state = 10}, [1367] = {.lex_state = 39, .external_lex_state = 10}, [1368] = {.lex_state = 39, .external_lex_state = 10}, [1369] = {.lex_state = 39, .external_lex_state = 9}, [1370] = {.lex_state = 39, .external_lex_state = 10}, [1371] = {.lex_state = 39, .external_lex_state = 10}, [1372] = {.lex_state = 39, .external_lex_state = 10}, - [1373] = {.lex_state = 39, .external_lex_state = 9}, - [1374] = {.lex_state = 39, .external_lex_state = 9}, - [1375] = {.lex_state = 39, .external_lex_state = 10}, + [1373] = {.lex_state = 39, .external_lex_state = 10}, + [1374] = {.lex_state = 39, .external_lex_state = 10}, + [1375] = {.lex_state = 39, .external_lex_state = 9}, [1376] = {.lex_state = 39, .external_lex_state = 10}, [1377] = {.lex_state = 39, .external_lex_state = 10}, [1378] = {.lex_state = 39, .external_lex_state = 10}, @@ -9298,20 +9336,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1382] = {.lex_state = 39, .external_lex_state = 10}, [1383] = {.lex_state = 39, .external_lex_state = 10}, [1384] = {.lex_state = 39, .external_lex_state = 10}, - [1385] = {.lex_state = 39, .external_lex_state = 9}, - [1386] = {.lex_state = 39, .external_lex_state = 9}, + [1385] = {.lex_state = 39, .external_lex_state = 10}, + [1386] = {.lex_state = 39, .external_lex_state = 10}, [1387] = {.lex_state = 39, .external_lex_state = 9}, [1388] = {.lex_state = 39, .external_lex_state = 9}, [1389] = {.lex_state = 39, .external_lex_state = 9}, - [1390] = {.lex_state = 39, .external_lex_state = 10}, - [1391] = {.lex_state = 39, .external_lex_state = 9}, + [1390] = {.lex_state = 39, .external_lex_state = 9}, + [1391] = {.lex_state = 39, .external_lex_state = 10}, [1392] = {.lex_state = 39, .external_lex_state = 9}, [1393] = {.lex_state = 39, .external_lex_state = 10}, - [1394] = {.lex_state = 39, .external_lex_state = 9}, + [1394] = {.lex_state = 39, .external_lex_state = 10}, [1395] = {.lex_state = 39, .external_lex_state = 10}, - [1396] = {.lex_state = 39, .external_lex_state = 9}, + [1396] = {.lex_state = 39, .external_lex_state = 10}, [1397] = {.lex_state = 39, .external_lex_state = 10}, - [1398] = {.lex_state = 39, .external_lex_state = 9}, + [1398] = {.lex_state = 39, .external_lex_state = 10}, [1399] = {.lex_state = 39, .external_lex_state = 10}, [1400] = {.lex_state = 39, .external_lex_state = 10}, [1401] = {.lex_state = 39, .external_lex_state = 10}, @@ -9324,716 +9362,716 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1408] = {.lex_state = 39, .external_lex_state = 10}, [1409] = {.lex_state = 39, .external_lex_state = 10}, [1410] = {.lex_state = 39, .external_lex_state = 9}, - [1411] = {.lex_state = 39, .external_lex_state = 9}, + [1411] = {.lex_state = 39, .external_lex_state = 10}, [1412] = {.lex_state = 39, .external_lex_state = 9}, - [1413] = {.lex_state = 39, .external_lex_state = 11}, - [1414] = {.lex_state = 39, .external_lex_state = 11}, - [1415] = {.lex_state = 39, .external_lex_state = 11}, - [1416] = {.lex_state = 39, .external_lex_state = 11}, - [1417] = {.lex_state = 39, .external_lex_state = 11}, - [1418] = {.lex_state = 39, .external_lex_state = 3}, + [1413] = {.lex_state = 39, .external_lex_state = 10}, + [1414] = {.lex_state = 39, .external_lex_state = 9}, + [1415] = {.lex_state = 39, .external_lex_state = 10}, + [1416] = {.lex_state = 39, .external_lex_state = 10}, + [1417] = {.lex_state = 39, .external_lex_state = 10}, + [1418] = {.lex_state = 39, .external_lex_state = 11}, [1419] = {.lex_state = 39, .external_lex_state = 11}, - [1420] = {.lex_state = 39, .external_lex_state = 9}, + [1420] = {.lex_state = 39, .external_lex_state = 11}, [1421] = {.lex_state = 39, .external_lex_state = 11}, - [1422] = {.lex_state = 39, .external_lex_state = 9}, + [1422] = {.lex_state = 39, .external_lex_state = 11}, [1423] = {.lex_state = 39, .external_lex_state = 11}, [1424] = {.lex_state = 39, .external_lex_state = 11}, - [1425] = {.lex_state = 39, .external_lex_state = 2}, - [1426] = {.lex_state = 39, .external_lex_state = 2}, - [1427] = {.lex_state = 39, .external_lex_state = 11}, + [1425] = {.lex_state = 39, .external_lex_state = 11}, + [1426] = {.lex_state = 39, .external_lex_state = 11}, + [1427] = {.lex_state = 39, .external_lex_state = 9}, [1428] = {.lex_state = 39, .external_lex_state = 11}, [1429] = {.lex_state = 39, .external_lex_state = 11}, [1430] = {.lex_state = 39, .external_lex_state = 11}, [1431] = {.lex_state = 39, .external_lex_state = 11}, [1432] = {.lex_state = 39, .external_lex_state = 11}, - [1433] = {.lex_state = 39, .external_lex_state = 2}, + [1433] = {.lex_state = 39, .external_lex_state = 3}, [1434] = {.lex_state = 39, .external_lex_state = 11}, [1435] = {.lex_state = 39, .external_lex_state = 11}, - [1436] = {.lex_state = 39, .external_lex_state = 9}, - [1437] = {.lex_state = 39, .external_lex_state = 9}, - [1438] = {.lex_state = 39, .external_lex_state = 11}, - [1439] = {.lex_state = 39, .external_lex_state = 2}, - [1440] = {.lex_state = 39, .external_lex_state = 9}, - [1441] = {.lex_state = 39, .external_lex_state = 2}, + [1436] = {.lex_state = 39, .external_lex_state = 2}, + [1437] = {.lex_state = 39, .external_lex_state = 11}, + [1438] = {.lex_state = 39, .external_lex_state = 3}, + [1439] = {.lex_state = 39, .external_lex_state = 3}, + [1440] = {.lex_state = 39, .external_lex_state = 3}, + [1441] = {.lex_state = 39, .external_lex_state = 11}, [1442] = {.lex_state = 39, .external_lex_state = 11}, - [1443] = {.lex_state = 39, .external_lex_state = 3}, - [1444] = {.lex_state = 39, .external_lex_state = 9}, - [1445] = {.lex_state = 39, .external_lex_state = 9}, + [1443] = {.lex_state = 39, .external_lex_state = 11}, + [1444] = {.lex_state = 39, .external_lex_state = 2}, + [1445] = {.lex_state = 39, .external_lex_state = 11}, [1446] = {.lex_state = 39, .external_lex_state = 11}, - [1447] = {.lex_state = 39, .external_lex_state = 9}, - [1448] = {.lex_state = 39, .external_lex_state = 9}, + [1447] = {.lex_state = 39, .external_lex_state = 11}, + [1448] = {.lex_state = 39, .external_lex_state = 2}, [1449] = {.lex_state = 39, .external_lex_state = 9}, [1450] = {.lex_state = 39, .external_lex_state = 9}, - [1451] = {.lex_state = 39, .external_lex_state = 9}, + [1451] = {.lex_state = 39, .external_lex_state = 11}, [1452] = {.lex_state = 39, .external_lex_state = 11}, - [1453] = {.lex_state = 39, .external_lex_state = 11}, - [1454] = {.lex_state = 39, .external_lex_state = 11}, - [1455] = {.lex_state = 39, .external_lex_state = 11}, + [1453] = {.lex_state = 39, .external_lex_state = 9}, + [1454] = {.lex_state = 39, .external_lex_state = 9}, + [1455] = {.lex_state = 39, .external_lex_state = 2}, [1456] = {.lex_state = 39, .external_lex_state = 11}, - [1457] = {.lex_state = 39, .external_lex_state = 3}, - [1458] = {.lex_state = 39, .external_lex_state = 11}, - [1459] = {.lex_state = 39, .external_lex_state = 11}, - [1460] = {.lex_state = 39, .external_lex_state = 11}, - [1461] = {.lex_state = 39, .external_lex_state = 11}, + [1457] = {.lex_state = 39, .external_lex_state = 9}, + [1458] = {.lex_state = 39, .external_lex_state = 9}, + [1459] = {.lex_state = 39, .external_lex_state = 2}, + [1460] = {.lex_state = 39, .external_lex_state = 9}, + [1461] = {.lex_state = 39, .external_lex_state = 9}, [1462] = {.lex_state = 39, .external_lex_state = 11}, [1463] = {.lex_state = 39, .external_lex_state = 11}, - [1464] = {.lex_state = 39, .external_lex_state = 11}, + [1464] = {.lex_state = 39, .external_lex_state = 9}, [1465] = {.lex_state = 39, .external_lex_state = 11}, - [1466] = {.lex_state = 39, .external_lex_state = 11}, - [1467] = {.lex_state = 39, .external_lex_state = 11}, - [1468] = {.lex_state = 39, .external_lex_state = 11}, + [1466] = {.lex_state = 39, .external_lex_state = 9}, + [1467] = {.lex_state = 39, .external_lex_state = 9}, + [1468] = {.lex_state = 39, .external_lex_state = 9}, [1469] = {.lex_state = 39, .external_lex_state = 11}, - [1470] = {.lex_state = 39, .external_lex_state = 11}, - [1471] = {.lex_state = 39, .external_lex_state = 11}, + [1470] = {.lex_state = 39, .external_lex_state = 9}, + [1471] = {.lex_state = 39, .external_lex_state = 9}, [1472] = {.lex_state = 39, .external_lex_state = 9}, [1473] = {.lex_state = 39, .external_lex_state = 11}, - [1474] = {.lex_state = 39, .external_lex_state = 3}, + [1474] = {.lex_state = 39, .external_lex_state = 11}, [1475] = {.lex_state = 39, .external_lex_state = 9}, - [1476] = {.lex_state = 39, .external_lex_state = 11}, - [1477] = {.lex_state = 39, .external_lex_state = 9}, - [1478] = {.lex_state = 39, .external_lex_state = 2}, - [1479] = {.lex_state = 39, .external_lex_state = 3}, - [1480] = {.lex_state = 39, .external_lex_state = 3}, + [1476] = {.lex_state = 39, .external_lex_state = 9}, + [1477] = {.lex_state = 39, .external_lex_state = 11}, + [1478] = {.lex_state = 39, .external_lex_state = 11}, + [1479] = {.lex_state = 39, .external_lex_state = 11}, + [1480] = {.lex_state = 39, .external_lex_state = 9}, [1481] = {.lex_state = 39, .external_lex_state = 11}, - [1482] = {.lex_state = 39, .external_lex_state = 9}, - [1483] = {.lex_state = 39, .external_lex_state = 9}, + [1482] = {.lex_state = 39, .external_lex_state = 11}, + [1483] = {.lex_state = 39, .external_lex_state = 3}, [1484] = {.lex_state = 39, .external_lex_state = 11}, - [1485] = {.lex_state = 3, .external_lex_state = 10}, - [1486] = {.lex_state = 39, .external_lex_state = 9}, + [1485] = {.lex_state = 39, .external_lex_state = 11}, + [1486] = {.lex_state = 39, .external_lex_state = 3}, [1487] = {.lex_state = 39, .external_lex_state = 11}, [1488] = {.lex_state = 39, .external_lex_state = 11}, - [1489] = {.lex_state = 3, .external_lex_state = 10}, - [1490] = {.lex_state = 39, .external_lex_state = 11}, - [1491] = {.lex_state = 39, .external_lex_state = 8}, - [1492] = {.lex_state = 39, .external_lex_state = 11}, + [1489] = {.lex_state = 39, .external_lex_state = 2}, + [1490] = {.lex_state = 39, .external_lex_state = 9}, + [1491] = {.lex_state = 39, .external_lex_state = 11}, + [1492] = {.lex_state = 3, .external_lex_state = 10}, [1493] = {.lex_state = 39, .external_lex_state = 11}, - [1494] = {.lex_state = 3, .external_lex_state = 10}, - [1495] = {.lex_state = 3, .external_lex_state = 10}, - [1496] = {.lex_state = 3, .external_lex_state = 10}, + [1494] = {.lex_state = 39, .external_lex_state = 8}, + [1495] = {.lex_state = 39, .external_lex_state = 8}, + [1496] = {.lex_state = 39, .external_lex_state = 8}, [1497] = {.lex_state = 39, .external_lex_state = 9}, - [1498] = {.lex_state = 3, .external_lex_state = 10}, - [1499] = {.lex_state = 39, .external_lex_state = 8}, - [1500] = {.lex_state = 3, .external_lex_state = 10}, - [1501] = {.lex_state = 39, .external_lex_state = 8}, - [1502] = {.lex_state = 3, .external_lex_state = 10}, + [1498] = {.lex_state = 39, .external_lex_state = 8}, + [1499] = {.lex_state = 39, .external_lex_state = 9}, + [1500] = {.lex_state = 39, .external_lex_state = 8}, + [1501] = {.lex_state = 39, .external_lex_state = 11}, + [1502] = {.lex_state = 39, .external_lex_state = 8}, [1503] = {.lex_state = 39, .external_lex_state = 8}, - [1504] = {.lex_state = 3, .external_lex_state = 10}, + [1504] = {.lex_state = 39, .external_lex_state = 11}, [1505] = {.lex_state = 39, .external_lex_state = 8}, [1506] = {.lex_state = 39, .external_lex_state = 8}, [1507] = {.lex_state = 39, .external_lex_state = 9}, - [1508] = {.lex_state = 39, .external_lex_state = 9}, + [1508] = {.lex_state = 39, .external_lex_state = 8}, [1509] = {.lex_state = 39, .external_lex_state = 9}, [1510] = {.lex_state = 39, .external_lex_state = 9}, [1511] = {.lex_state = 39, .external_lex_state = 9}, - [1512] = {.lex_state = 39, .external_lex_state = 9}, - [1513] = {.lex_state = 39, .external_lex_state = 8}, + [1512] = {.lex_state = 39, .external_lex_state = 8}, + [1513] = {.lex_state = 39, .external_lex_state = 9}, [1514] = {.lex_state = 39, .external_lex_state = 9}, - [1515] = {.lex_state = 39, .external_lex_state = 9}, + [1515] = {.lex_state = 39, .external_lex_state = 11}, [1516] = {.lex_state = 39, .external_lex_state = 9}, [1517] = {.lex_state = 39, .external_lex_state = 9}, [1518] = {.lex_state = 39, .external_lex_state = 9}, - [1519] = {.lex_state = 39, .external_lex_state = 9}, - [1520] = {.lex_state = 39, .external_lex_state = 8}, - [1521] = {.lex_state = 39, .external_lex_state = 11}, + [1519] = {.lex_state = 39, .external_lex_state = 8}, + [1520] = {.lex_state = 39, .external_lex_state = 11}, + [1521] = {.lex_state = 39, .external_lex_state = 9}, [1522] = {.lex_state = 39, .external_lex_state = 9}, - [1523] = {.lex_state = 39, .external_lex_state = 9}, - [1524] = {.lex_state = 3, .external_lex_state = 10}, + [1523] = {.lex_state = 39, .external_lex_state = 8}, + [1524] = {.lex_state = 39, .external_lex_state = 9}, [1525] = {.lex_state = 39, .external_lex_state = 9}, - [1526] = {.lex_state = 3, .external_lex_state = 10}, - [1527] = {.lex_state = 39, .external_lex_state = 11}, + [1526] = {.lex_state = 39, .external_lex_state = 9}, + [1527] = {.lex_state = 39, .external_lex_state = 9}, [1528] = {.lex_state = 39, .external_lex_state = 9}, - [1529] = {.lex_state = 3, .external_lex_state = 10}, - [1530] = {.lex_state = 39, .external_lex_state = 9}, - [1531] = {.lex_state = 39, .external_lex_state = 9}, - [1532] = {.lex_state = 3, .external_lex_state = 10}, - [1533] = {.lex_state = 39, .external_lex_state = 8}, + [1529] = {.lex_state = 39, .external_lex_state = 8}, + [1530] = {.lex_state = 39, .external_lex_state = 8}, + [1531] = {.lex_state = 39, .external_lex_state = 8}, + [1532] = {.lex_state = 39, .external_lex_state = 8}, + [1533] = {.lex_state = 3, .external_lex_state = 10}, [1534] = {.lex_state = 39, .external_lex_state = 8}, - [1535] = {.lex_state = 3, .external_lex_state = 10}, - [1536] = {.lex_state = 39, .external_lex_state = 9}, - [1537] = {.lex_state = 39, .external_lex_state = 9}, + [1535] = {.lex_state = 39, .external_lex_state = 8}, + [1536] = {.lex_state = 39, .external_lex_state = 8}, + [1537] = {.lex_state = 39, .external_lex_state = 8}, [1538] = {.lex_state = 39, .external_lex_state = 8}, - [1539] = {.lex_state = 39, .external_lex_state = 11}, - [1540] = {.lex_state = 39, .external_lex_state = 8}, - [1541] = {.lex_state = 39, .external_lex_state = 8}, - [1542] = {.lex_state = 39, .external_lex_state = 8}, - [1543] = {.lex_state = 3, .external_lex_state = 10}, - [1544] = {.lex_state = 3, .external_lex_state = 10}, - [1545] = {.lex_state = 39, .external_lex_state = 8}, - [1546] = {.lex_state = 39, .external_lex_state = 11}, - [1547] = {.lex_state = 3, .external_lex_state = 10}, - [1548] = {.lex_state = 3, .external_lex_state = 10}, - [1549] = {.lex_state = 39, .external_lex_state = 11}, - [1550] = {.lex_state = 39, .external_lex_state = 11}, - [1551] = {.lex_state = 39, .external_lex_state = 11}, + [1539] = {.lex_state = 39, .external_lex_state = 8}, + [1540] = {.lex_state = 39, .external_lex_state = 11}, + [1541] = {.lex_state = 39, .external_lex_state = 11}, + [1542] = {.lex_state = 39, .external_lex_state = 11}, + [1543] = {.lex_state = 39, .external_lex_state = 8}, + [1544] = {.lex_state = 39, .external_lex_state = 9}, + [1545] = {.lex_state = 39, .external_lex_state = 11}, + [1546] = {.lex_state = 39, .external_lex_state = 9}, + [1547] = {.lex_state = 39, .external_lex_state = 9}, + [1548] = {.lex_state = 39, .external_lex_state = 11}, + [1549] = {.lex_state = 39, .external_lex_state = 8}, + [1550] = {.lex_state = 39, .external_lex_state = 9}, + [1551] = {.lex_state = 3, .external_lex_state = 10}, [1552] = {.lex_state = 3, .external_lex_state = 10}, [1553] = {.lex_state = 39, .external_lex_state = 11}, - [1554] = {.lex_state = 39, .external_lex_state = 9}, - [1555] = {.lex_state = 39, .external_lex_state = 8}, - [1556] = {.lex_state = 39, .external_lex_state = 11}, + [1554] = {.lex_state = 3, .external_lex_state = 10}, + [1555] = {.lex_state = 3, .external_lex_state = 10}, + [1556] = {.lex_state = 3, .external_lex_state = 10}, [1557] = {.lex_state = 3, .external_lex_state = 10}, - [1558] = {.lex_state = 39, .external_lex_state = 8}, - [1559] = {.lex_state = 39, .external_lex_state = 8}, + [1558] = {.lex_state = 39, .external_lex_state = 9}, + [1559] = {.lex_state = 3, .external_lex_state = 10}, [1560] = {.lex_state = 39, .external_lex_state = 9}, [1561] = {.lex_state = 3, .external_lex_state = 10}, [1562] = {.lex_state = 3, .external_lex_state = 10}, - [1563] = {.lex_state = 3, .external_lex_state = 10}, - [1564] = {.lex_state = 39, .external_lex_state = 8}, - [1565] = {.lex_state = 39, .external_lex_state = 8}, - [1566] = {.lex_state = 39, .external_lex_state = 8}, - [1567] = {.lex_state = 3, .external_lex_state = 10}, + [1563] = {.lex_state = 39, .external_lex_state = 8}, + [1564] = {.lex_state = 39, .external_lex_state = 9}, + [1565] = {.lex_state = 39, .external_lex_state = 9}, + [1566] = {.lex_state = 3, .external_lex_state = 10}, + [1567] = {.lex_state = 39, .external_lex_state = 8}, [1568] = {.lex_state = 39, .external_lex_state = 8}, - [1569] = {.lex_state = 39, .external_lex_state = 8}, + [1569] = {.lex_state = 3, .external_lex_state = 10}, [1570] = {.lex_state = 39, .external_lex_state = 9}, [1571] = {.lex_state = 39, .external_lex_state = 8}, [1572] = {.lex_state = 39, .external_lex_state = 11}, - [1573] = {.lex_state = 39, .external_lex_state = 11}, + [1573] = {.lex_state = 3, .external_lex_state = 10}, [1574] = {.lex_state = 3, .external_lex_state = 10}, - [1575] = {.lex_state = 39, .external_lex_state = 8}, - [1576] = {.lex_state = 39, .external_lex_state = 9}, - [1577] = {.lex_state = 39, .external_lex_state = 8}, - [1578] = {.lex_state = 3, .external_lex_state = 10}, - [1579] = {.lex_state = 3, .external_lex_state = 10}, - [1580] = {.lex_state = 3, .external_lex_state = 10}, - [1581] = {.lex_state = 3, .external_lex_state = 10}, - [1582] = {.lex_state = 3, .external_lex_state = 10}, - [1583] = {.lex_state = 39, .external_lex_state = 11}, - [1584] = {.lex_state = 3, .external_lex_state = 10}, + [1575] = {.lex_state = 39, .external_lex_state = 11}, + [1576] = {.lex_state = 39, .external_lex_state = 11}, + [1577] = {.lex_state = 39, .external_lex_state = 11}, + [1578] = {.lex_state = 39, .external_lex_state = 11}, + [1579] = {.lex_state = 39, .external_lex_state = 11}, + [1580] = {.lex_state = 39, .external_lex_state = 11}, + [1581] = {.lex_state = 39, .external_lex_state = 11}, + [1582] = {.lex_state = 39, .external_lex_state = 8}, + [1583] = {.lex_state = 3, .external_lex_state = 10}, + [1584] = {.lex_state = 39, .external_lex_state = 8}, [1585] = {.lex_state = 3, .external_lex_state = 10}, - [1586] = {.lex_state = 39, .external_lex_state = 11}, - [1587] = {.lex_state = 3, .external_lex_state = 10}, - [1588] = {.lex_state = 39, .external_lex_state = 8}, - [1589] = {.lex_state = 39, .external_lex_state = 9}, + [1586] = {.lex_state = 3, .external_lex_state = 10}, + [1587] = {.lex_state = 39, .external_lex_state = 9}, + [1588] = {.lex_state = 3, .external_lex_state = 10}, + [1589] = {.lex_state = 39, .external_lex_state = 11}, [1590] = {.lex_state = 39, .external_lex_state = 8}, - [1591] = {.lex_state = 39, .external_lex_state = 8}, + [1591] = {.lex_state = 3, .external_lex_state = 10}, [1592] = {.lex_state = 3, .external_lex_state = 10}, - [1593] = {.lex_state = 39, .external_lex_state = 11}, - [1594] = {.lex_state = 39, .external_lex_state = 11}, - [1595] = {.lex_state = 3, .external_lex_state = 10}, - [1596] = {.lex_state = 3, .external_lex_state = 10}, - [1597] = {.lex_state = 39, .external_lex_state = 11}, - [1598] = {.lex_state = 39, .external_lex_state = 11}, - [1599] = {.lex_state = 39, .external_lex_state = 11}, - [1600] = {.lex_state = 3, .external_lex_state = 10}, - [1601] = {.lex_state = 39, .external_lex_state = 8}, + [1593] = {.lex_state = 3, .external_lex_state = 10}, + [1594] = {.lex_state = 3, .external_lex_state = 10}, + [1595] = {.lex_state = 39, .external_lex_state = 11}, + [1596] = {.lex_state = 39, .external_lex_state = 8}, + [1597] = {.lex_state = 3, .external_lex_state = 10}, + [1598] = {.lex_state = 39, .external_lex_state = 8}, + [1599] = {.lex_state = 39, .external_lex_state = 9}, + [1600] = {.lex_state = 39, .external_lex_state = 8}, + [1601] = {.lex_state = 39, .external_lex_state = 11}, [1602] = {.lex_state = 39, .external_lex_state = 8}, - [1603] = {.lex_state = 39, .external_lex_state = 8}, - [1604] = {.lex_state = 39, .external_lex_state = 8}, - [1605] = {.lex_state = 39, .external_lex_state = 8}, - [1606] = {.lex_state = 39, .external_lex_state = 11}, - [1607] = {.lex_state = 39, .external_lex_state = 8}, + [1603] = {.lex_state = 3, .external_lex_state = 10}, + [1604] = {.lex_state = 3, .external_lex_state = 10}, + [1605] = {.lex_state = 3, .external_lex_state = 10}, + [1606] = {.lex_state = 3, .external_lex_state = 10}, + [1607] = {.lex_state = 3, .external_lex_state = 10}, [1608] = {.lex_state = 3, .external_lex_state = 10}, - [1609] = {.lex_state = 39, .external_lex_state = 8}, - [1610] = {.lex_state = 3, .external_lex_state = 10}, - [1611] = {.lex_state = 39, .external_lex_state = 11}, - [1612] = {.lex_state = 39, .external_lex_state = 8}, + [1609] = {.lex_state = 3, .external_lex_state = 10}, + [1610] = {.lex_state = 39, .external_lex_state = 8}, + [1611] = {.lex_state = 39, .external_lex_state = 8}, + [1612] = {.lex_state = 39, .external_lex_state = 11}, [1613] = {.lex_state = 3, .external_lex_state = 10}, - [1614] = {.lex_state = 3, .external_lex_state = 10}, - [1615] = {.lex_state = 3, .external_lex_state = 10}, - [1616] = {.lex_state = 39, .external_lex_state = 9}, - [1617] = {.lex_state = 39, .external_lex_state = 8}, - [1618] = {.lex_state = 39, .external_lex_state = 9}, - [1619] = {.lex_state = 39, .external_lex_state = 9}, - [1620] = {.lex_state = 39, .external_lex_state = 9}, - [1621] = {.lex_state = 39, .external_lex_state = 9}, + [1614] = {.lex_state = 39, .external_lex_state = 8}, + [1615] = {.lex_state = 39, .external_lex_state = 9}, + [1616] = {.lex_state = 3, .external_lex_state = 10}, + [1617] = {.lex_state = 39, .external_lex_state = 11}, + [1618] = {.lex_state = 3, .external_lex_state = 10}, + [1619] = {.lex_state = 39, .external_lex_state = 11}, + [1620] = {.lex_state = 39, .external_lex_state = 11}, + [1621] = {.lex_state = 3, .external_lex_state = 10}, [1622] = {.lex_state = 39, .external_lex_state = 8}, - [1623] = {.lex_state = 39, .external_lex_state = 8}, - [1624] = {.lex_state = 39, .external_lex_state = 8}, - [1625] = {.lex_state = 39, .external_lex_state = 8}, - [1626] = {.lex_state = 39, .external_lex_state = 11}, - [1627] = {.lex_state = 39, .external_lex_state = 2}, - [1628] = {.lex_state = 39, .external_lex_state = 8}, - [1629] = {.lex_state = 39, .external_lex_state = 12}, + [1623] = {.lex_state = 39, .external_lex_state = 9}, + [1624] = {.lex_state = 3, .external_lex_state = 10}, + [1625] = {.lex_state = 3, .external_lex_state = 10}, + [1626] = {.lex_state = 39, .external_lex_state = 8}, + [1627] = {.lex_state = 3, .external_lex_state = 10}, + [1628] = {.lex_state = 3, .external_lex_state = 10}, + [1629] = {.lex_state = 3, .external_lex_state = 10}, [1630] = {.lex_state = 39, .external_lex_state = 8}, - [1631] = {.lex_state = 39, .external_lex_state = 8}, + [1631] = {.lex_state = 39, .external_lex_state = 9}, [1632] = {.lex_state = 3, .external_lex_state = 10}, - [1633] = {.lex_state = 39, .external_lex_state = 8}, - [1634] = {.lex_state = 39, .external_lex_state = 9}, + [1633] = {.lex_state = 39, .external_lex_state = 11}, + [1634] = {.lex_state = 3, .external_lex_state = 10}, [1635] = {.lex_state = 39, .external_lex_state = 12}, - [1636] = {.lex_state = 39, .external_lex_state = 12}, - [1637] = {.lex_state = 3, .external_lex_state = 10}, - [1638] = {.lex_state = 39, .external_lex_state = 9}, - [1639] = {.lex_state = 3, .external_lex_state = 10}, - [1640] = {.lex_state = 3, .external_lex_state = 10}, - [1641] = {.lex_state = 39, .external_lex_state = 9}, - [1642] = {.lex_state = 39, .external_lex_state = 9}, - [1643] = {.lex_state = 39, .external_lex_state = 12}, + [1636] = {.lex_state = 39, .external_lex_state = 2}, + [1637] = {.lex_state = 39, .external_lex_state = 11}, + [1638] = {.lex_state = 39, .external_lex_state = 11}, + [1639] = {.lex_state = 39, .external_lex_state = 11}, + [1640] = {.lex_state = 39, .external_lex_state = 3}, + [1641] = {.lex_state = 39, .external_lex_state = 11}, + [1642] = {.lex_state = 39, .external_lex_state = 8}, + [1643] = {.lex_state = 3, .external_lex_state = 10}, [1644] = {.lex_state = 39, .external_lex_state = 11}, - [1645] = {.lex_state = 39, .external_lex_state = 9}, - [1646] = {.lex_state = 39, .external_lex_state = 12}, - [1647] = {.lex_state = 39, .external_lex_state = 12}, - [1648] = {.lex_state = 39, .external_lex_state = 3}, - [1649] = {.lex_state = 39, .external_lex_state = 9}, + [1645] = {.lex_state = 39, .external_lex_state = 8}, + [1646] = {.lex_state = 3, .external_lex_state = 10}, + [1647] = {.lex_state = 39, .external_lex_state = 9}, + [1648] = {.lex_state = 39, .external_lex_state = 8}, + [1649] = {.lex_state = 39, .external_lex_state = 11}, [1650] = {.lex_state = 39, .external_lex_state = 3}, - [1651] = {.lex_state = 39, .external_lex_state = 3}, - [1652] = {.lex_state = 39, .external_lex_state = 12}, - [1653] = {.lex_state = 3, .external_lex_state = 10}, - [1654] = {.lex_state = 39, .external_lex_state = 3}, - [1655] = {.lex_state = 39, .external_lex_state = 8}, - [1656] = {.lex_state = 39, .external_lex_state = 11}, + [1651] = {.lex_state = 39, .external_lex_state = 11}, + [1652] = {.lex_state = 39, .external_lex_state = 3}, + [1653] = {.lex_state = 39, .external_lex_state = 8}, + [1654] = {.lex_state = 39, .external_lex_state = 8}, + [1655] = {.lex_state = 39, .external_lex_state = 11}, + [1656] = {.lex_state = 3, .external_lex_state = 10}, [1657] = {.lex_state = 39, .external_lex_state = 11}, - [1658] = {.lex_state = 39, .external_lex_state = 11}, - [1659] = {.lex_state = 39, .external_lex_state = 11}, - [1660] = {.lex_state = 39, .external_lex_state = 11}, - [1661] = {.lex_state = 39, .external_lex_state = 8}, - [1662] = {.lex_state = 39, .external_lex_state = 11}, - [1663] = {.lex_state = 39, .external_lex_state = 11}, + [1658] = {.lex_state = 39, .external_lex_state = 8}, + [1659] = {.lex_state = 39, .external_lex_state = 8}, + [1660] = {.lex_state = 39, .external_lex_state = 9}, + [1661] = {.lex_state = 39, .external_lex_state = 9}, + [1662] = {.lex_state = 39, .external_lex_state = 3}, + [1663] = {.lex_state = 39, .external_lex_state = 10}, [1664] = {.lex_state = 39, .external_lex_state = 11}, [1665] = {.lex_state = 39, .external_lex_state = 11}, [1666] = {.lex_state = 39, .external_lex_state = 11}, - [1667] = {.lex_state = 39, .external_lex_state = 3}, + [1667] = {.lex_state = 39, .external_lex_state = 12}, [1668] = {.lex_state = 39, .external_lex_state = 11}, - [1669] = {.lex_state = 39, .external_lex_state = 8}, - [1670] = {.lex_state = 39, .external_lex_state = 11}, - [1671] = {.lex_state = 39, .external_lex_state = 11}, + [1669] = {.lex_state = 39, .external_lex_state = 3}, + [1670] = {.lex_state = 39, .external_lex_state = 3}, + [1671] = {.lex_state = 39, .external_lex_state = 8}, [1672] = {.lex_state = 3, .external_lex_state = 10}, - [1673] = {.lex_state = 39, .external_lex_state = 8}, + [1673] = {.lex_state = 39, .external_lex_state = 11}, [1674] = {.lex_state = 39, .external_lex_state = 3}, - [1675] = {.lex_state = 39, .external_lex_state = 3}, + [1675] = {.lex_state = 39, .external_lex_state = 11}, [1676] = {.lex_state = 39, .external_lex_state = 11}, - [1677] = {.lex_state = 39, .external_lex_state = 11}, - [1678] = {.lex_state = 39, .external_lex_state = 11}, - [1679] = {.lex_state = 39, .external_lex_state = 11}, - [1680] = {.lex_state = 39, .external_lex_state = 8}, - [1681] = {.lex_state = 3, .external_lex_state = 10}, + [1677] = {.lex_state = 39, .external_lex_state = 3}, + [1678] = {.lex_state = 39, .external_lex_state = 3}, + [1679] = {.lex_state = 39, .external_lex_state = 2}, + [1680] = {.lex_state = 39, .external_lex_state = 11}, + [1681] = {.lex_state = 39, .external_lex_state = 12}, [1682] = {.lex_state = 39, .external_lex_state = 11}, - [1683] = {.lex_state = 39, .external_lex_state = 8}, - [1684] = {.lex_state = 39, .external_lex_state = 3}, + [1683] = {.lex_state = 39, .external_lex_state = 2}, + [1684] = {.lex_state = 39, .external_lex_state = 2}, [1685] = {.lex_state = 39, .external_lex_state = 8}, - [1686] = {.lex_state = 3, .external_lex_state = 10}, - [1687] = {.lex_state = 39, .external_lex_state = 11}, + [1686] = {.lex_state = 39, .external_lex_state = 11}, + [1687] = {.lex_state = 39, .external_lex_state = 3}, [1688] = {.lex_state = 39, .external_lex_state = 11}, - [1689] = {.lex_state = 39, .external_lex_state = 12}, - [1690] = {.lex_state = 39, .external_lex_state = 11}, - [1691] = {.lex_state = 39, .external_lex_state = 2}, - [1692] = {.lex_state = 39, .external_lex_state = 11}, - [1693] = {.lex_state = 39, .external_lex_state = 3}, - [1694] = {.lex_state = 39, .external_lex_state = 11}, - [1695] = {.lex_state = 39, .external_lex_state = 11}, - [1696] = {.lex_state = 39, .external_lex_state = 11}, - [1697] = {.lex_state = 39, .external_lex_state = 3}, - [1698] = {.lex_state = 39, .external_lex_state = 3}, - [1699] = {.lex_state = 39, .external_lex_state = 8}, - [1700] = {.lex_state = 39, .external_lex_state = 8}, - [1701] = {.lex_state = 39, .external_lex_state = 3}, - [1702] = {.lex_state = 39, .external_lex_state = 3}, - [1703] = {.lex_state = 39, .external_lex_state = 11}, - [1704] = {.lex_state = 39, .external_lex_state = 11}, + [1689] = {.lex_state = 39, .external_lex_state = 2}, + [1690] = {.lex_state = 39, .external_lex_state = 2}, + [1691] = {.lex_state = 3, .external_lex_state = 10}, + [1692] = {.lex_state = 39, .external_lex_state = 9}, + [1693] = {.lex_state = 39, .external_lex_state = 2}, + [1694] = {.lex_state = 39, .external_lex_state = 3}, + [1695] = {.lex_state = 39, .external_lex_state = 2}, + [1696] = {.lex_state = 39, .external_lex_state = 2}, + [1697] = {.lex_state = 3, .external_lex_state = 10}, + [1698] = {.lex_state = 39, .external_lex_state = 2}, + [1699] = {.lex_state = 39, .external_lex_state = 3}, + [1700] = {.lex_state = 39, .external_lex_state = 3}, + [1701] = {.lex_state = 39, .external_lex_state = 2}, + [1702] = {.lex_state = 39, .external_lex_state = 12}, + [1703] = {.lex_state = 39, .external_lex_state = 2}, + [1704] = {.lex_state = 39, .external_lex_state = 3}, [1705] = {.lex_state = 39, .external_lex_state = 11}, - [1706] = {.lex_state = 3, .external_lex_state = 10}, - [1707] = {.lex_state = 39, .external_lex_state = 11}, - [1708] = {.lex_state = 39, .external_lex_state = 11}, - [1709] = {.lex_state = 39, .external_lex_state = 12}, - [1710] = {.lex_state = 39, .external_lex_state = 11}, - [1711] = {.lex_state = 39, .external_lex_state = 11}, - [1712] = {.lex_state = 39, .external_lex_state = 3}, - [1713] = {.lex_state = 39, .external_lex_state = 8}, - [1714] = {.lex_state = 39, .external_lex_state = 12}, + [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 = 11}, + [1710] = {.lex_state = 39, .external_lex_state = 9}, + [1711] = {.lex_state = 39, .external_lex_state = 8}, + [1712] = {.lex_state = 39, .external_lex_state = 11}, + [1713] = {.lex_state = 39, .external_lex_state = 3}, + [1714] = {.lex_state = 39, .external_lex_state = 2}, [1715] = {.lex_state = 39, .external_lex_state = 3}, - [1716] = {.lex_state = 3, .external_lex_state = 10}, - [1717] = {.lex_state = 39, .external_lex_state = 3}, - [1718] = {.lex_state = 39, .external_lex_state = 11}, - [1719] = {.lex_state = 3, .external_lex_state = 10}, - [1720] = {.lex_state = 39, .external_lex_state = 11}, - [1721] = {.lex_state = 3, .external_lex_state = 10}, - [1722] = {.lex_state = 39, .external_lex_state = 12}, - [1723] = {.lex_state = 39, .external_lex_state = 8}, - [1724] = {.lex_state = 3, .external_lex_state = 10}, + [1716] = {.lex_state = 39, .external_lex_state = 12}, + [1717] = {.lex_state = 39, .external_lex_state = 12}, + [1718] = {.lex_state = 39, .external_lex_state = 12}, + [1719] = {.lex_state = 39, .external_lex_state = 8}, + [1720] = {.lex_state = 39, .external_lex_state = 8}, + [1721] = {.lex_state = 39, .external_lex_state = 9}, + [1722] = {.lex_state = 39, .external_lex_state = 3}, + [1723] = {.lex_state = 39, .external_lex_state = 3}, + [1724] = {.lex_state = 39, .external_lex_state = 8}, [1725] = {.lex_state = 39, .external_lex_state = 11}, - [1726] = {.lex_state = 39, .external_lex_state = 11}, - [1727] = {.lex_state = 39, .external_lex_state = 12}, + [1726] = {.lex_state = 39, .external_lex_state = 8}, + [1727] = {.lex_state = 39, .external_lex_state = 2}, [1728] = {.lex_state = 39, .external_lex_state = 11}, - [1729] = {.lex_state = 39, .external_lex_state = 11}, - [1730] = {.lex_state = 39, .external_lex_state = 12}, - [1731] = {.lex_state = 39, .external_lex_state = 3}, - [1732] = {.lex_state = 39, .external_lex_state = 3}, - [1733] = {.lex_state = 39, .external_lex_state = 11}, + [1729] = {.lex_state = 39, .external_lex_state = 2}, + [1730] = {.lex_state = 39, .external_lex_state = 11}, + [1731] = {.lex_state = 39, .external_lex_state = 9}, + [1732] = {.lex_state = 39, .external_lex_state = 11}, + [1733] = {.lex_state = 39, .external_lex_state = 3}, [1734] = {.lex_state = 39, .external_lex_state = 3}, [1735] = {.lex_state = 39, .external_lex_state = 11}, - [1736] = {.lex_state = 39, .external_lex_state = 3}, - [1737] = {.lex_state = 39, .external_lex_state = 12}, - [1738] = {.lex_state = 3, .external_lex_state = 10}, + [1736] = {.lex_state = 39, .external_lex_state = 9}, + [1737] = {.lex_state = 39, .external_lex_state = 11}, + [1738] = {.lex_state = 39, .external_lex_state = 8}, [1739] = {.lex_state = 39, .external_lex_state = 12}, [1740] = {.lex_state = 39, .external_lex_state = 12}, - [1741] = {.lex_state = 39, .external_lex_state = 12}, + [1741] = {.lex_state = 39, .external_lex_state = 8}, [1742] = {.lex_state = 39, .external_lex_state = 8}, - [1743] = {.lex_state = 39, .external_lex_state = 3}, - [1744] = {.lex_state = 39, .external_lex_state = 3}, - [1745] = {.lex_state = 39, .external_lex_state = 12}, - [1746] = {.lex_state = 39, .external_lex_state = 12}, - [1747] = {.lex_state = 39, .external_lex_state = 8}, + [1743] = {.lex_state = 39, .external_lex_state = 11}, + [1744] = {.lex_state = 39, .external_lex_state = 11}, + [1745] = {.lex_state = 3, .external_lex_state = 10}, + [1746] = {.lex_state = 39, .external_lex_state = 11}, + [1747] = {.lex_state = 39, .external_lex_state = 11}, [1748] = {.lex_state = 39, .external_lex_state = 8}, - [1749] = {.lex_state = 39, .external_lex_state = 8}, - [1750] = {.lex_state = 39, .external_lex_state = 11}, - [1751] = {.lex_state = 39, .external_lex_state = 8}, - [1752] = {.lex_state = 39, .external_lex_state = 3}, - [1753] = {.lex_state = 39, .external_lex_state = 11}, - [1754] = {.lex_state = 39, .external_lex_state = 11}, + [1749] = {.lex_state = 39, .external_lex_state = 2}, + [1750] = {.lex_state = 39, .external_lex_state = 2}, + [1751] = {.lex_state = 39, .external_lex_state = 2}, + [1752] = {.lex_state = 39, .external_lex_state = 2}, + [1753] = {.lex_state = 39, .external_lex_state = 8}, + [1754] = {.lex_state = 39, .external_lex_state = 8}, [1755] = {.lex_state = 39, .external_lex_state = 12}, - [1756] = {.lex_state = 3, .external_lex_state = 10}, - [1757] = {.lex_state = 39, .external_lex_state = 11}, - [1758] = {.lex_state = 39, .external_lex_state = 11}, + [1756] = {.lex_state = 39, .external_lex_state = 3}, + [1757] = {.lex_state = 39, .external_lex_state = 12}, + [1758] = {.lex_state = 39, .external_lex_state = 3}, [1759] = {.lex_state = 39, .external_lex_state = 11}, [1760] = {.lex_state = 39, .external_lex_state = 12}, - [1761] = {.lex_state = 39, .external_lex_state = 11}, - [1762] = {.lex_state = 39, .external_lex_state = 3}, - [1763] = {.lex_state = 39, .external_lex_state = 11}, - [1764] = {.lex_state = 39, .external_lex_state = 9}, + [1761] = {.lex_state = 39, .external_lex_state = 12}, + [1762] = {.lex_state = 3, .external_lex_state = 10}, + [1763] = {.lex_state = 39, .external_lex_state = 12}, + [1764] = {.lex_state = 3, .external_lex_state = 10}, [1765] = {.lex_state = 39, .external_lex_state = 12}, - [1766] = {.lex_state = 3, .external_lex_state = 10}, - [1767] = {.lex_state = 3, .external_lex_state = 10}, - [1768] = {.lex_state = 39, .external_lex_state = 12}, - [1769] = {.lex_state = 39, .external_lex_state = 8}, - [1770] = {.lex_state = 39, .external_lex_state = 12}, - [1771] = {.lex_state = 39, .external_lex_state = 3}, - [1772] = {.lex_state = 3, .external_lex_state = 10}, + [1766] = {.lex_state = 39, .external_lex_state = 12}, + [1767] = {.lex_state = 39, .external_lex_state = 12}, + [1768] = {.lex_state = 39, .external_lex_state = 2}, + [1769] = {.lex_state = 3, .external_lex_state = 10}, + [1770] = {.lex_state = 3, .external_lex_state = 10}, + [1771] = {.lex_state = 39, .external_lex_state = 2}, + [1772] = {.lex_state = 39, .external_lex_state = 9}, [1773] = {.lex_state = 39, .external_lex_state = 12}, [1774] = {.lex_state = 39, .external_lex_state = 12}, - [1775] = {.lex_state = 39, .external_lex_state = 2}, - [1776] = {.lex_state = 39, .external_lex_state = 9}, - [1777] = {.lex_state = 39, .external_lex_state = 12}, - [1778] = {.lex_state = 39, .external_lex_state = 9}, + [1775] = {.lex_state = 39, .external_lex_state = 11}, + [1776] = {.lex_state = 39, .external_lex_state = 12}, + [1777] = {.lex_state = 39, .external_lex_state = 3}, + [1778] = {.lex_state = 39, .external_lex_state = 8}, [1779] = {.lex_state = 39, .external_lex_state = 12}, - [1780] = {.lex_state = 39, .external_lex_state = 2}, - [1781] = {.lex_state = 39, .external_lex_state = 2}, - [1782] = {.lex_state = 39, .external_lex_state = 9}, + [1780] = {.lex_state = 3, .external_lex_state = 10}, + [1781] = {.lex_state = 39, .external_lex_state = 8}, + [1782] = {.lex_state = 39, .external_lex_state = 12}, [1783] = {.lex_state = 39, .external_lex_state = 9}, - [1784] = {.lex_state = 39, .external_lex_state = 2}, - [1785] = {.lex_state = 39, .external_lex_state = 10}, - [1786] = {.lex_state = 39, .external_lex_state = 12}, - [1787] = {.lex_state = 39, .external_lex_state = 2}, + [1784] = {.lex_state = 39, .external_lex_state = 12}, + [1785] = {.lex_state = 39, .external_lex_state = 12}, + [1786] = {.lex_state = 39, .external_lex_state = 9}, + [1787] = {.lex_state = 39, .external_lex_state = 11}, [1788] = {.lex_state = 3, .external_lex_state = 10}, - [1789] = {.lex_state = 39, .external_lex_state = 2}, - [1790] = {.lex_state = 39, .external_lex_state = 2}, + [1789] = {.lex_state = 39, .external_lex_state = 12}, + [1790] = {.lex_state = 39, .external_lex_state = 11}, [1791] = {.lex_state = 39, .external_lex_state = 12}, - [1792] = {.lex_state = 39, .external_lex_state = 2}, - [1793] = {.lex_state = 39, .external_lex_state = 2}, - [1794] = {.lex_state = 39, .external_lex_state = 2}, - [1795] = {.lex_state = 3, .external_lex_state = 10}, - [1796] = {.lex_state = 39, .external_lex_state = 2}, - [1797] = {.lex_state = 39, .external_lex_state = 2}, - [1798] = {.lex_state = 39, .external_lex_state = 8}, - [1799] = {.lex_state = 39, .external_lex_state = 2}, - [1800] = {.lex_state = 39, .external_lex_state = 2}, - [1801] = {.lex_state = 39, .external_lex_state = 12}, - [1802] = {.lex_state = 39, .external_lex_state = 12}, - [1803] = {.lex_state = 39, .external_lex_state = 2}, - [1804] = {.lex_state = 39, .external_lex_state = 12}, - [1805] = {.lex_state = 39, .external_lex_state = 12}, - [1806] = {.lex_state = 39, .external_lex_state = 8}, - [1807] = {.lex_state = 39, .external_lex_state = 2}, - [1808] = {.lex_state = 39, .external_lex_state = 2}, - [1809] = {.lex_state = 3, .external_lex_state = 10}, - [1810] = {.lex_state = 3, .external_lex_state = 10}, - [1811] = {.lex_state = 3, .external_lex_state = 10}, + [1792] = {.lex_state = 39, .external_lex_state = 12}, + [1793] = {.lex_state = 39, .external_lex_state = 12}, + [1794] = {.lex_state = 39, .external_lex_state = 12}, + [1795] = {.lex_state = 39, .external_lex_state = 3}, + [1796] = {.lex_state = 39, .external_lex_state = 11}, + [1797] = {.lex_state = 39, .external_lex_state = 11}, + [1798] = {.lex_state = 39, .external_lex_state = 3}, + [1799] = {.lex_state = 39, .external_lex_state = 11}, + [1800] = {.lex_state = 39, .external_lex_state = 3}, + [1801] = {.lex_state = 3, .external_lex_state = 10}, + [1802] = {.lex_state = 3, .external_lex_state = 10}, + [1803] = {.lex_state = 39, .external_lex_state = 12}, + [1804] = {.lex_state = 39, .external_lex_state = 8}, + [1805] = {.lex_state = 39, .external_lex_state = 11}, + [1806] = {.lex_state = 39, .external_lex_state = 9}, + [1807] = {.lex_state = 3, .external_lex_state = 10}, + [1808] = {.lex_state = 39, .external_lex_state = 9}, + [1809] = {.lex_state = 39, .external_lex_state = 12}, + [1810] = {.lex_state = 39, .external_lex_state = 12}, + [1811] = {.lex_state = 39, .external_lex_state = 2}, [1812] = {.lex_state = 3, .external_lex_state = 10}, - [1813] = {.lex_state = 39, .external_lex_state = 12}, - [1814] = {.lex_state = 39, .external_lex_state = 2}, - [1815] = {.lex_state = 39, .external_lex_state = 2}, - [1816] = {.lex_state = 39, .external_lex_state = 8}, - [1817] = {.lex_state = 39, .external_lex_state = 9}, + [1813] = {.lex_state = 39, .external_lex_state = 11}, + [1814] = {.lex_state = 39, .external_lex_state = 11}, + [1815] = {.lex_state = 39, .external_lex_state = 11}, + [1816] = {.lex_state = 39, .external_lex_state = 12}, + [1817] = {.lex_state = 39, .external_lex_state = 12}, [1818] = {.lex_state = 39, .external_lex_state = 11}, - [1819] = {.lex_state = 39, .external_lex_state = 12}, - [1820] = {.lex_state = 39, .external_lex_state = 12}, - [1821] = {.lex_state = 39, .external_lex_state = 12}, - [1822] = {.lex_state = 39, .external_lex_state = 12}, + [1819] = {.lex_state = 3, .external_lex_state = 10}, + [1820] = {.lex_state = 3, .external_lex_state = 10}, + [1821] = {.lex_state = 3, .external_lex_state = 10}, + [1822] = {.lex_state = 3, .external_lex_state = 10}, [1823] = {.lex_state = 39, .external_lex_state = 12}, - [1824] = {.lex_state = 3, .external_lex_state = 10}, - [1825] = {.lex_state = 39, .external_lex_state = 12}, - [1826] = {.lex_state = 3, .external_lex_state = 10}, - [1827] = {.lex_state = 39, .external_lex_state = 9}, - [1828] = {.lex_state = 39, .external_lex_state = 8}, - [1829] = {.lex_state = 39, .external_lex_state = 12}, - [1830] = {.lex_state = 3, .external_lex_state = 10}, + [1824] = {.lex_state = 39, .external_lex_state = 2}, + [1825] = {.lex_state = 39, .external_lex_state = 11}, + [1826] = {.lex_state = 39, .external_lex_state = 11}, + [1827] = {.lex_state = 39, .external_lex_state = 2}, + [1828] = {.lex_state = 39, .external_lex_state = 12}, + [1829] = {.lex_state = 39, .external_lex_state = 8}, + [1830] = {.lex_state = 39, .external_lex_state = 8}, [1831] = {.lex_state = 39, .external_lex_state = 8}, - [1832] = {.lex_state = 39, .external_lex_state = 2}, - [1833] = {.lex_state = 39, .external_lex_state = 2}, - [1834] = {.lex_state = 39, .external_lex_state = 8}, - [1835] = {.lex_state = 39, .external_lex_state = 2}, - [1836] = {.lex_state = 39, .external_lex_state = 2}, - [1837] = {.lex_state = 39, .external_lex_state = 12}, + [1832] = {.lex_state = 39, .external_lex_state = 12}, + [1833] = {.lex_state = 39, .external_lex_state = 3}, + [1834] = {.lex_state = 39, .external_lex_state = 12}, + [1835] = {.lex_state = 39, .external_lex_state = 11}, + [1836] = {.lex_state = 3, .external_lex_state = 10}, + [1837] = {.lex_state = 3, .external_lex_state = 10}, [1838] = {.lex_state = 3, .external_lex_state = 10}, - [1839] = {.lex_state = 39, .external_lex_state = 8}, - [1840] = {.lex_state = 39, .external_lex_state = 8}, + [1839] = {.lex_state = 39, .external_lex_state = 12}, + [1840] = {.lex_state = 39, .external_lex_state = 11}, [1841] = {.lex_state = 3, .external_lex_state = 10}, - [1842] = {.lex_state = 39, .external_lex_state = 8}, - [1843] = {.lex_state = 3, .external_lex_state = 10}, + [1842] = {.lex_state = 3, .external_lex_state = 10}, + [1843] = {.lex_state = 39, .external_lex_state = 12}, [1844] = {.lex_state = 3, .external_lex_state = 10}, - [1845] = {.lex_state = 3, .external_lex_state = 10}, - [1846] = {.lex_state = 39, .external_lex_state = 12}, - [1847] = {.lex_state = 3, .external_lex_state = 10}, - [1848] = {.lex_state = 3, .external_lex_state = 10}, - [1849] = {.lex_state = 39, .external_lex_state = 12}, + [1845] = {.lex_state = 39, .external_lex_state = 12}, + [1846] = {.lex_state = 39, .external_lex_state = 11}, + [1847] = {.lex_state = 39, .external_lex_state = 8}, + [1848] = {.lex_state = 39, .external_lex_state = 12}, + [1849] = {.lex_state = 39, .external_lex_state = 8}, [1850] = {.lex_state = 39, .external_lex_state = 8}, - [1851] = {.lex_state = 3, .external_lex_state = 10}, - [1852] = {.lex_state = 39, .external_lex_state = 8}, + [1851] = {.lex_state = 39, .external_lex_state = 12}, + [1852] = {.lex_state = 39, .external_lex_state = 12}, [1853] = {.lex_state = 3, .external_lex_state = 10}, - [1854] = {.lex_state = 39, .external_lex_state = 8}, - [1855] = {.lex_state = 3, .external_lex_state = 10}, - [1856] = {.lex_state = 3, .external_lex_state = 10}, - [1857] = {.lex_state = 39, .external_lex_state = 8}, + [1854] = {.lex_state = 3, .external_lex_state = 10}, + [1855] = {.lex_state = 39, .external_lex_state = 12}, + [1856] = {.lex_state = 39, .external_lex_state = 9}, + [1857] = {.lex_state = 3, .external_lex_state = 10}, [1858] = {.lex_state = 39, .external_lex_state = 8}, - [1859] = {.lex_state = 39, .external_lex_state = 8}, - [1860] = {.lex_state = 39, .external_lex_state = 8}, + [1859] = {.lex_state = 3, .external_lex_state = 10}, + [1860] = {.lex_state = 3, .external_lex_state = 10}, [1861] = {.lex_state = 3, .external_lex_state = 10}, - [1862] = {.lex_state = 39, .external_lex_state = 12}, - [1863] = {.lex_state = 39, .external_lex_state = 8}, - [1864] = {.lex_state = 39, .external_lex_state = 8}, - [1865] = {.lex_state = 39, .external_lex_state = 8}, - [1866] = {.lex_state = 39, .external_lex_state = 8}, + [1862] = {.lex_state = 3, .external_lex_state = 10}, + [1863] = {.lex_state = 3, .external_lex_state = 10}, + [1864] = {.lex_state = 39, .external_lex_state = 12}, + [1865] = {.lex_state = 3, .external_lex_state = 10}, + [1866] = {.lex_state = 39, .external_lex_state = 12}, [1867] = {.lex_state = 39, .external_lex_state = 8}, - [1868] = {.lex_state = 3, .external_lex_state = 10}, - [1869] = {.lex_state = 39, .external_lex_state = 8}, + [1868] = {.lex_state = 39, .external_lex_state = 8}, + [1869] = {.lex_state = 3, .external_lex_state = 10}, [1870] = {.lex_state = 39, .external_lex_state = 8}, - [1871] = {.lex_state = 39, .external_lex_state = 8}, + [1871] = {.lex_state = 39, .external_lex_state = 12}, [1872] = {.lex_state = 39, .external_lex_state = 8}, - [1873] = {.lex_state = 39, .external_lex_state = 8}, + [1873] = {.lex_state = 3, .external_lex_state = 10}, [1874] = {.lex_state = 3, .external_lex_state = 10}, - [1875] = {.lex_state = 39, .external_lex_state = 8}, - [1876] = {.lex_state = 3, .external_lex_state = 10}, - [1877] = {.lex_state = 39, .external_lex_state = 12}, - [1878] = {.lex_state = 39, .external_lex_state = 8}, - [1879] = {.lex_state = 3, .external_lex_state = 10}, - [1880] = {.lex_state = 39, .external_lex_state = 12}, + [1875] = {.lex_state = 39, .external_lex_state = 12}, + [1876] = {.lex_state = 39, .external_lex_state = 8}, + [1877] = {.lex_state = 3, .external_lex_state = 10}, + [1878] = {.lex_state = 3, .external_lex_state = 10}, + [1879] = {.lex_state = 39, .external_lex_state = 8}, + [1880] = {.lex_state = 3, .external_lex_state = 10}, [1881] = {.lex_state = 39, .external_lex_state = 12}, - [1882] = {.lex_state = 39, .external_lex_state = 8}, + [1882] = {.lex_state = 39, .external_lex_state = 12}, [1883] = {.lex_state = 39, .external_lex_state = 8}, - [1884] = {.lex_state = 39, .external_lex_state = 8}, - [1885] = {.lex_state = 39, .external_lex_state = 8}, - [1886] = {.lex_state = 39, .external_lex_state = 8}, - [1887] = {.lex_state = 39, .external_lex_state = 8}, - [1888] = {.lex_state = 39, .external_lex_state = 12}, - [1889] = {.lex_state = 39, .external_lex_state = 8}, + [1884] = {.lex_state = 39, .external_lex_state = 12}, + [1885] = {.lex_state = 39, .external_lex_state = 12}, + [1886] = {.lex_state = 39, .external_lex_state = 12}, + [1887] = {.lex_state = 3, .external_lex_state = 10}, + [1888] = {.lex_state = 39, .external_lex_state = 8}, + [1889] = {.lex_state = 39, .external_lex_state = 12}, [1890] = {.lex_state = 3, .external_lex_state = 10}, - [1891] = {.lex_state = 3, .external_lex_state = 10}, + [1891] = {.lex_state = 39, .external_lex_state = 9}, [1892] = {.lex_state = 39, .external_lex_state = 8}, [1893] = {.lex_state = 39, .external_lex_state = 12}, - [1894] = {.lex_state = 3, .external_lex_state = 10}, - [1895] = {.lex_state = 39, .external_lex_state = 9}, - [1896] = {.lex_state = 39, .external_lex_state = 12}, + [1894] = {.lex_state = 39, .external_lex_state = 8}, + [1895] = {.lex_state = 39, .external_lex_state = 12}, + [1896] = {.lex_state = 39, .external_lex_state = 8}, [1897] = {.lex_state = 3, .external_lex_state = 10}, - [1898] = {.lex_state = 39, .external_lex_state = 8}, + [1898] = {.lex_state = 39, .external_lex_state = 12}, [1899] = {.lex_state = 39, .external_lex_state = 8}, [1900] = {.lex_state = 39, .external_lex_state = 12}, - [1901] = {.lex_state = 39, .external_lex_state = 8}, - [1902] = {.lex_state = 3, .external_lex_state = 10}, - [1903] = {.lex_state = 39, .external_lex_state = 12}, - [1904] = {.lex_state = 39, .external_lex_state = 8}, + [1901] = {.lex_state = 39, .external_lex_state = 12}, + [1902] = {.lex_state = 39, .external_lex_state = 12}, + [1903] = {.lex_state = 39, .external_lex_state = 8}, + [1904] = {.lex_state = 3, .external_lex_state = 10}, [1905] = {.lex_state = 39, .external_lex_state = 8}, - [1906] = {.lex_state = 39, .external_lex_state = 12}, + [1906] = {.lex_state = 39, .external_lex_state = 8}, [1907] = {.lex_state = 3, .external_lex_state = 10}, [1908] = {.lex_state = 3, .external_lex_state = 10}, [1909] = {.lex_state = 39, .external_lex_state = 8}, - [1910] = {.lex_state = 3, .external_lex_state = 10}, - [1911] = {.lex_state = 39, .external_lex_state = 8}, + [1910] = {.lex_state = 39, .external_lex_state = 12}, + [1911] = {.lex_state = 3, .external_lex_state = 10}, [1912] = {.lex_state = 3, .external_lex_state = 10}, - [1913] = {.lex_state = 39, .external_lex_state = 8}, - [1914] = {.lex_state = 3, .external_lex_state = 10}, + [1913] = {.lex_state = 3, .external_lex_state = 10}, + [1914] = {.lex_state = 39, .external_lex_state = 8}, [1915] = {.lex_state = 39, .external_lex_state = 12}, - [1916] = {.lex_state = 39, .external_lex_state = 12}, - [1917] = {.lex_state = 3, .external_lex_state = 10}, - [1918] = {.lex_state = 39, .external_lex_state = 12}, + [1916] = {.lex_state = 39, .external_lex_state = 8}, + [1917] = {.lex_state = 39, .external_lex_state = 8}, + [1918] = {.lex_state = 39, .external_lex_state = 8}, [1919] = {.lex_state = 3, .external_lex_state = 10}, - [1920] = {.lex_state = 3, .external_lex_state = 10}, - [1921] = {.lex_state = 39, .external_lex_state = 12}, - [1922] = {.lex_state = 39, .external_lex_state = 12}, - [1923] = {.lex_state = 39, .external_lex_state = 9}, - [1924] = {.lex_state = 39, .external_lex_state = 12}, - [1925] = {.lex_state = 39, .external_lex_state = 12}, - [1926] = {.lex_state = 3, .external_lex_state = 10}, - [1927] = {.lex_state = 3, .external_lex_state = 10}, - [1928] = {.lex_state = 3, .external_lex_state = 10}, + [1920] = {.lex_state = 39, .external_lex_state = 8}, + [1921] = {.lex_state = 39, .external_lex_state = 8}, + [1922] = {.lex_state = 39, .external_lex_state = 8}, + [1923] = {.lex_state = 39, .external_lex_state = 8}, + [1924] = {.lex_state = 39, .external_lex_state = 9}, + [1925] = {.lex_state = 3, .external_lex_state = 10}, + [1926] = {.lex_state = 39, .external_lex_state = 8}, + [1927] = {.lex_state = 39, .external_lex_state = 8}, + [1928] = {.lex_state = 39, .external_lex_state = 8}, [1929] = {.lex_state = 3, .external_lex_state = 10}, - [1930] = {.lex_state = 39, .external_lex_state = 12}, - [1931] = {.lex_state = 3, .external_lex_state = 10}, + [1930] = {.lex_state = 39, .external_lex_state = 8}, + [1931] = {.lex_state = 39, .external_lex_state = 8}, [1932] = {.lex_state = 39, .external_lex_state = 8}, - [1933] = {.lex_state = 3, .external_lex_state = 10}, + [1933] = {.lex_state = 39, .external_lex_state = 8}, [1934] = {.lex_state = 3, .external_lex_state = 10}, - [1935] = {.lex_state = 3, .external_lex_state = 10}, - [1936] = {.lex_state = 3, .external_lex_state = 10}, - [1937] = {.lex_state = 3, .external_lex_state = 10}, + [1935] = {.lex_state = 39, .external_lex_state = 8}, + [1936] = {.lex_state = 39, .external_lex_state = 8}, + [1937] = {.lex_state = 39, .external_lex_state = 12}, [1938] = {.lex_state = 39, .external_lex_state = 8}, - [1939] = {.lex_state = 39, .external_lex_state = 12}, + [1939] = {.lex_state = 39, .external_lex_state = 8}, [1940] = {.lex_state = 39, .external_lex_state = 8}, [1941] = {.lex_state = 3, .external_lex_state = 10}, - [1942] = {.lex_state = 3, .external_lex_state = 10}, + [1942] = {.lex_state = 39, .external_lex_state = 8}, [1943] = {.lex_state = 3, .external_lex_state = 10}, [1944] = {.lex_state = 3, .external_lex_state = 10}, - [1945] = {.lex_state = 39, .external_lex_state = 12}, - [1946] = {.lex_state = 39, .external_lex_state = 8}, - [1947] = {.lex_state = 39, .external_lex_state = 8}, - [1948] = {.lex_state = 39, .external_lex_state = 8}, - [1949] = {.lex_state = 39, .external_lex_state = 8}, - [1950] = {.lex_state = 39, .external_lex_state = 12}, - [1951] = {.lex_state = 39, .external_lex_state = 8}, - [1952] = {.lex_state = 39, .external_lex_state = 9}, - [1953] = {.lex_state = 39, .external_lex_state = 12}, + [1945] = {.lex_state = 3, .external_lex_state = 10}, + [1946] = {.lex_state = 3, .external_lex_state = 10}, + [1947] = {.lex_state = 3, .external_lex_state = 10}, + [1948] = {.lex_state = 3, .external_lex_state = 10}, + [1949] = {.lex_state = 3, .external_lex_state = 10}, + [1950] = {.lex_state = 39, .external_lex_state = 8}, + [1951] = {.lex_state = 39, .external_lex_state = 12}, + [1952] = {.lex_state = 3, .external_lex_state = 10}, + [1953] = {.lex_state = 3, .external_lex_state = 10}, [1954] = {.lex_state = 3, .external_lex_state = 10}, [1955] = {.lex_state = 39, .external_lex_state = 8}, [1956] = {.lex_state = 39, .external_lex_state = 8}, - [1957] = {.lex_state = 39, .external_lex_state = 12}, + [1957] = {.lex_state = 3, .external_lex_state = 10}, [1958] = {.lex_state = 3, .external_lex_state = 10}, [1959] = {.lex_state = 3, .external_lex_state = 10}, [1960] = {.lex_state = 39, .external_lex_state = 8}, - [1961] = {.lex_state = 3, .external_lex_state = 10}, - [1962] = {.lex_state = 39, .external_lex_state = 12}, - [1963] = {.lex_state = 3, .external_lex_state = 10}, - [1964] = {.lex_state = 3, .external_lex_state = 10}, - [1965] = {.lex_state = 39, .external_lex_state = 12}, - [1966] = {.lex_state = 39, .external_lex_state = 9}, - [1967] = {.lex_state = 39, .external_lex_state = 12}, + [1961] = {.lex_state = 39, .external_lex_state = 9}, + [1962] = {.lex_state = 3, .external_lex_state = 10}, + [1963] = {.lex_state = 39, .external_lex_state = 12}, + [1964] = {.lex_state = 39, .external_lex_state = 12}, + [1965] = {.lex_state = 3, .external_lex_state = 10}, + [1966] = {.lex_state = 39, .external_lex_state = 12}, + [1967] = {.lex_state = 39, .external_lex_state = 8}, [1968] = {.lex_state = 39, .external_lex_state = 12}, - [1969] = {.lex_state = 39, .external_lex_state = 9}, - [1970] = {.lex_state = 39, .external_lex_state = 5}, - [1971] = {.lex_state = 39, .external_lex_state = 9}, - [1972] = {.lex_state = 39, .external_lex_state = 9}, - [1973] = {.lex_state = 39, .external_lex_state = 12}, - [1974] = {.lex_state = 39, .external_lex_state = 5}, - [1975] = {.lex_state = 39, .external_lex_state = 12}, - [1976] = {.lex_state = 39, .external_lex_state = 12}, - [1977] = {.lex_state = 39, .external_lex_state = 12}, + [1969] = {.lex_state = 39, .external_lex_state = 8}, + [1970] = {.lex_state = 39, .external_lex_state = 8}, + [1971] = {.lex_state = 3, .external_lex_state = 10}, + [1972] = {.lex_state = 3, .external_lex_state = 10}, + [1973] = {.lex_state = 39, .external_lex_state = 8}, + [1974] = {.lex_state = 39, .external_lex_state = 8}, + [1975] = {.lex_state = 3, .external_lex_state = 10}, + [1976] = {.lex_state = 3, .external_lex_state = 10}, + [1977] = {.lex_state = 3, .external_lex_state = 10}, [1978] = {.lex_state = 39, .external_lex_state = 12}, [1979] = {.lex_state = 39, .external_lex_state = 12}, - [1980] = {.lex_state = 39, .external_lex_state = 12}, - [1981] = {.lex_state = 39, .external_lex_state = 12}, - [1982] = {.lex_state = 39, .external_lex_state = 12}, - [1983] = {.lex_state = 39, .external_lex_state = 12}, - [1984] = {.lex_state = 39, .external_lex_state = 5}, - [1985] = {.lex_state = 39, .external_lex_state = 12}, - [1986] = {.lex_state = 39, .external_lex_state = 12}, - [1987] = {.lex_state = 39, .external_lex_state = 12}, - [1988] = {.lex_state = 39, .external_lex_state = 12}, - [1989] = {.lex_state = 39, .external_lex_state = 5}, + [1980] = {.lex_state = 39, .external_lex_state = 9}, + [1981] = {.lex_state = 39, .external_lex_state = 9}, + [1982] = {.lex_state = 39, .external_lex_state = 9}, + [1983] = {.lex_state = 39, .external_lex_state = 9}, + [1984] = {.lex_state = 39, .external_lex_state = 9}, + [1985] = {.lex_state = 39, .external_lex_state = 9}, + [1986] = {.lex_state = 39, .external_lex_state = 9}, + [1987] = {.lex_state = 39, .external_lex_state = 9}, + [1988] = {.lex_state = 39, .external_lex_state = 9}, + [1989] = {.lex_state = 39, .external_lex_state = 9}, [1990] = {.lex_state = 39, .external_lex_state = 12}, - [1991] = {.lex_state = 39, .external_lex_state = 12}, - [1992] = {.lex_state = 39, .external_lex_state = 12}, - [1993] = {.lex_state = 39, .external_lex_state = 12}, - [1994] = {.lex_state = 39, .external_lex_state = 12}, - [1995] = {.lex_state = 39, .external_lex_state = 12}, + [1991] = {.lex_state = 39, .external_lex_state = 5}, + [1992] = {.lex_state = 39, .external_lex_state = 9}, + [1993] = {.lex_state = 39, .external_lex_state = 9}, + [1994] = {.lex_state = 39, .external_lex_state = 9}, + [1995] = {.lex_state = 39, .external_lex_state = 5}, [1996] = {.lex_state = 39, .external_lex_state = 12}, - [1997] = {.lex_state = 39, .external_lex_state = 12}, - [1998] = {.lex_state = 39, .external_lex_state = 9}, - [1999] = {.lex_state = 39, .external_lex_state = 12}, - [2000] = {.lex_state = 39, .external_lex_state = 12}, + [1997] = {.lex_state = 39, .external_lex_state = 8}, + [1998] = {.lex_state = 39, .external_lex_state = 12}, + [1999] = {.lex_state = 39, .external_lex_state = 9}, + [2000] = {.lex_state = 39, .external_lex_state = 9}, [2001] = {.lex_state = 39, .external_lex_state = 9}, - [2002] = {.lex_state = 39, .external_lex_state = 5}, - [2003] = {.lex_state = 39, .external_lex_state = 9}, + [2002] = {.lex_state = 39, .external_lex_state = 12}, + [2003] = {.lex_state = 39, .external_lex_state = 12}, [2004] = {.lex_state = 39, .external_lex_state = 12}, [2005] = {.lex_state = 39, .external_lex_state = 12}, [2006] = {.lex_state = 39, .external_lex_state = 12}, [2007] = {.lex_state = 39, .external_lex_state = 12}, [2008] = {.lex_state = 39, .external_lex_state = 12}, - [2009] = {.lex_state = 39, .external_lex_state = 5}, - [2010] = {.lex_state = 39, .external_lex_state = 8}, - [2011] = {.lex_state = 39, .external_lex_state = 9}, + [2009] = {.lex_state = 39, .external_lex_state = 12}, + [2010] = {.lex_state = 39, .external_lex_state = 12}, + [2011] = {.lex_state = 39, .external_lex_state = 12}, [2012] = {.lex_state = 39, .external_lex_state = 12}, [2013] = {.lex_state = 39, .external_lex_state = 12}, - [2014] = {.lex_state = 39, .external_lex_state = 9}, + [2014] = {.lex_state = 39, .external_lex_state = 12}, [2015] = {.lex_state = 39, .external_lex_state = 12}, - [2016] = {.lex_state = 39, .external_lex_state = 9}, + [2016] = {.lex_state = 39, .external_lex_state = 12}, [2017] = {.lex_state = 39, .external_lex_state = 12}, - [2018] = {.lex_state = 39, .external_lex_state = 9}, + [2018] = {.lex_state = 39, .external_lex_state = 12}, [2019] = {.lex_state = 39, .external_lex_state = 12}, [2020] = {.lex_state = 39, .external_lex_state = 12}, - [2021] = {.lex_state = 39, .external_lex_state = 5}, + [2021] = {.lex_state = 39, .external_lex_state = 12}, [2022] = {.lex_state = 39, .external_lex_state = 12}, [2023] = {.lex_state = 39, .external_lex_state = 12}, [2024] = {.lex_state = 39, .external_lex_state = 12}, [2025] = {.lex_state = 39, .external_lex_state = 12}, [2026] = {.lex_state = 39, .external_lex_state = 12}, - [2027] = {.lex_state = 39, .external_lex_state = 9}, + [2027] = {.lex_state = 39, .external_lex_state = 12}, [2028] = {.lex_state = 39, .external_lex_state = 12}, [2029] = {.lex_state = 39, .external_lex_state = 12}, [2030] = {.lex_state = 39, .external_lex_state = 12}, - [2031] = {.lex_state = 39, .external_lex_state = 9}, - [2032] = {.lex_state = 39, .external_lex_state = 9}, - [2033] = {.lex_state = 39, .external_lex_state = 9}, - [2034] = {.lex_state = 39, .external_lex_state = 12}, + [2031] = {.lex_state = 39, .external_lex_state = 12}, + [2032] = {.lex_state = 39, .external_lex_state = 12}, + [2033] = {.lex_state = 39, .external_lex_state = 12}, + [2034] = {.lex_state = 39, .external_lex_state = 9}, [2035] = {.lex_state = 39, .external_lex_state = 9}, - [2036] = {.lex_state = 39, .external_lex_state = 9}, + [2036] = {.lex_state = 39, .external_lex_state = 12}, [2037] = {.lex_state = 39, .external_lex_state = 12}, [2038] = {.lex_state = 39, .external_lex_state = 12}, [2039] = {.lex_state = 39, .external_lex_state = 9}, - [2040] = {.lex_state = 39, .external_lex_state = 9}, + [2040] = {.lex_state = 39, .external_lex_state = 12}, [2041] = {.lex_state = 39, .external_lex_state = 9}, - [2042] = {.lex_state = 39, .external_lex_state = 9}, - [2043] = {.lex_state = 39, .external_lex_state = 9}, - [2044] = {.lex_state = 39, .external_lex_state = 9}, - [2045] = {.lex_state = 39, .external_lex_state = 9}, - [2046] = {.lex_state = 39, .external_lex_state = 9}, - [2047] = {.lex_state = 39, .external_lex_state = 9}, + [2042] = {.lex_state = 39, .external_lex_state = 12}, + [2043] = {.lex_state = 39, .external_lex_state = 12}, + [2044] = {.lex_state = 39, .external_lex_state = 12}, + [2045] = {.lex_state = 39, .external_lex_state = 12}, + [2046] = {.lex_state = 39, .external_lex_state = 12}, + [2047] = {.lex_state = 39, .external_lex_state = 12}, [2048] = {.lex_state = 39, .external_lex_state = 9}, - [2049] = {.lex_state = 39, .external_lex_state = 9}, - [2050] = {.lex_state = 39, .external_lex_state = 9}, - [2051] = {.lex_state = 39, .external_lex_state = 8}, - [2052] = {.lex_state = 39, .external_lex_state = 9}, - [2053] = {.lex_state = 39, .external_lex_state = 9}, + [2049] = {.lex_state = 39, .external_lex_state = 12}, + [2050] = {.lex_state = 39, .external_lex_state = 12}, + [2051] = {.lex_state = 39, .external_lex_state = 5}, + [2052] = {.lex_state = 39, .external_lex_state = 5}, + [2053] = {.lex_state = 39, .external_lex_state = 5}, [2054] = {.lex_state = 39, .external_lex_state = 5}, - [2055] = {.lex_state = 39, .external_lex_state = 7}, - [2056] = {.lex_state = 39, .external_lex_state = 7}, - [2057] = {.lex_state = 39, .external_lex_state = 5}, - [2058] = {.lex_state = 39, .external_lex_state = 2}, - [2059] = {.lex_state = 39, .external_lex_state = 6}, - [2060] = {.lex_state = 39, .external_lex_state = 5}, - [2061] = {.lex_state = 39, .external_lex_state = 6}, - [2062] = {.lex_state = 39, .external_lex_state = 5}, - [2063] = {.lex_state = 39, .external_lex_state = 7}, - [2064] = {.lex_state = 39, .external_lex_state = 5}, - [2065] = {.lex_state = 39, .external_lex_state = 5}, - [2066] = {.lex_state = 39, .external_lex_state = 7}, - [2067] = {.lex_state = 39, .external_lex_state = 2}, + [2055] = {.lex_state = 39, .external_lex_state = 5}, + [2056] = {.lex_state = 39, .external_lex_state = 9}, + [2057] = {.lex_state = 39, .external_lex_state = 9}, + [2058] = {.lex_state = 39, .external_lex_state = 8}, + [2059] = {.lex_state = 39, .external_lex_state = 9}, + [2060] = {.lex_state = 39, .external_lex_state = 9}, + [2061] = {.lex_state = 39, .external_lex_state = 9}, + [2062] = {.lex_state = 39, .external_lex_state = 9}, + [2063] = {.lex_state = 39, .external_lex_state = 9}, + [2064] = {.lex_state = 39, .external_lex_state = 9}, + [2065] = {.lex_state = 39, .external_lex_state = 9}, + [2066] = {.lex_state = 39, .external_lex_state = 9}, + [2067] = {.lex_state = 39, .external_lex_state = 5}, [2068] = {.lex_state = 39, .external_lex_state = 6}, [2069] = {.lex_state = 39, .external_lex_state = 7}, - [2070] = {.lex_state = 39, .external_lex_state = 7}, - [2071] = {.lex_state = 39, .external_lex_state = 6}, + [2070] = {.lex_state = 39, .external_lex_state = 6}, + [2071] = {.lex_state = 39, .external_lex_state = 7}, [2072] = {.lex_state = 39, .external_lex_state = 5}, - [2073] = {.lex_state = 39, .external_lex_state = 7}, - [2074] = {.lex_state = 39, .external_lex_state = 2}, - [2075] = {.lex_state = 39, .external_lex_state = 7}, + [2073] = {.lex_state = 39, .external_lex_state = 2}, + [2074] = {.lex_state = 39, .external_lex_state = 5}, + [2075] = {.lex_state = 39, .external_lex_state = 5}, [2076] = {.lex_state = 39, .external_lex_state = 5}, - [2077] = {.lex_state = 39, .external_lex_state = 6}, - [2078] = {.lex_state = 39, .external_lex_state = 2}, - [2079] = {.lex_state = 39, .external_lex_state = 5}, - [2080] = {.lex_state = 39, .external_lex_state = 7}, - [2081] = {.lex_state = 39, .external_lex_state = 2}, - [2082] = {.lex_state = 39, .external_lex_state = 5}, - [2083] = {.lex_state = 39, .external_lex_state = 2}, - [2084] = {.lex_state = 39, .external_lex_state = 6}, - [2085] = {.lex_state = 39, .external_lex_state = 5}, - [2086] = {.lex_state = 39, .external_lex_state = 5}, + [2077] = {.lex_state = 39, .external_lex_state = 2}, + [2078] = {.lex_state = 39, .external_lex_state = 5}, + [2079] = {.lex_state = 39, .external_lex_state = 7}, + [2080] = {.lex_state = 39, .external_lex_state = 2}, + [2081] = {.lex_state = 39, .external_lex_state = 5}, + [2082] = {.lex_state = 39, .external_lex_state = 7}, + [2083] = {.lex_state = 39, .external_lex_state = 7}, + [2084] = {.lex_state = 39, .external_lex_state = 2}, + [2085] = {.lex_state = 39, .external_lex_state = 6}, + [2086] = {.lex_state = 39, .external_lex_state = 7}, [2087] = {.lex_state = 39, .external_lex_state = 7}, - [2088] = {.lex_state = 39, .external_lex_state = 2}, - [2089] = {.lex_state = 39, .external_lex_state = 6}, - [2090] = {.lex_state = 39, .external_lex_state = 5}, + [2088] = {.lex_state = 39, .external_lex_state = 6}, + [2089] = {.lex_state = 39, .external_lex_state = 7}, + [2090] = {.lex_state = 39, .external_lex_state = 6}, [2091] = {.lex_state = 39, .external_lex_state = 7}, [2092] = {.lex_state = 39, .external_lex_state = 5}, - [2093] = {.lex_state = 39, .external_lex_state = 7}, - [2094] = {.lex_state = 39, .external_lex_state = 2}, - [2095] = {.lex_state = 39, .external_lex_state = 6}, + [2093] = {.lex_state = 39, .external_lex_state = 2}, + [2094] = {.lex_state = 39, .external_lex_state = 5}, + [2095] = {.lex_state = 39, .external_lex_state = 2}, [2096] = {.lex_state = 39, .external_lex_state = 5}, [2097] = {.lex_state = 39, .external_lex_state = 5}, [2098] = {.lex_state = 39, .external_lex_state = 5}, [2099] = {.lex_state = 39, .external_lex_state = 5}, - [2100] = {.lex_state = 39, .external_lex_state = 5}, + [2100] = {.lex_state = 39, .external_lex_state = 2}, [2101] = {.lex_state = 39, .external_lex_state = 2}, - [2102] = {.lex_state = 39, .external_lex_state = 5}, - [2103] = {.lex_state = 39, .external_lex_state = 6}, - [2104] = {.lex_state = 39, .external_lex_state = 2}, + [2102] = {.lex_state = 39, .external_lex_state = 6}, + [2103] = {.lex_state = 39, .external_lex_state = 7}, + [2104] = {.lex_state = 39, .external_lex_state = 5}, [2105] = {.lex_state = 39, .external_lex_state = 7}, - [2106] = {.lex_state = 39, .external_lex_state = 7}, - [2107] = {.lex_state = 39, .external_lex_state = 7}, - [2108] = {.lex_state = 39, .external_lex_state = 2}, - [2109] = {.lex_state = 39, .external_lex_state = 2}, - [2110] = {.lex_state = 39, .external_lex_state = 2}, - [2111] = {.lex_state = 39, .external_lex_state = 2}, - [2112] = {.lex_state = 39, .external_lex_state = 2}, - [2113] = {.lex_state = 39, .external_lex_state = 2}, - [2114] = {.lex_state = 39, .external_lex_state = 2}, - [2115] = {.lex_state = 39, .external_lex_state = 2}, - [2116] = {.lex_state = 39, .external_lex_state = 10}, - [2117] = {.lex_state = 39, .external_lex_state = 2}, - [2118] = {.lex_state = 39, .external_lex_state = 2}, - [2119] = {.lex_state = 39, .external_lex_state = 2}, - [2120] = {.lex_state = 39, .external_lex_state = 2}, + [2106] = {.lex_state = 39, .external_lex_state = 2}, + [2107] = {.lex_state = 39, .external_lex_state = 2}, + [2108] = {.lex_state = 39, .external_lex_state = 7}, + [2109] = {.lex_state = 39, .external_lex_state = 6}, + [2110] = {.lex_state = 39, .external_lex_state = 5}, + [2111] = {.lex_state = 39, .external_lex_state = 7}, + [2112] = {.lex_state = 39, .external_lex_state = 5}, + [2113] = {.lex_state = 39, .external_lex_state = 5}, + [2114] = {.lex_state = 39, .external_lex_state = 5}, + [2115] = {.lex_state = 39, .external_lex_state = 7}, + [2116] = {.lex_state = 39, .external_lex_state = 5}, + [2117] = {.lex_state = 39, .external_lex_state = 5}, + [2118] = {.lex_state = 39, .external_lex_state = 6}, + [2119] = {.lex_state = 39, .external_lex_state = 7}, + [2120] = {.lex_state = 39, .external_lex_state = 6}, [2121] = {.lex_state = 39, .external_lex_state = 2}, [2122] = {.lex_state = 39, .external_lex_state = 2}, [2123] = {.lex_state = 39, .external_lex_state = 2}, @@ -10043,7 +10081,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2127] = {.lex_state = 39, .external_lex_state = 2}, [2128] = {.lex_state = 39, .external_lex_state = 2}, [2129] = {.lex_state = 39, .external_lex_state = 2}, - [2130] = {.lex_state = 39, .external_lex_state = 10}, + [2130] = {.lex_state = 39, .external_lex_state = 2}, [2131] = {.lex_state = 39, .external_lex_state = 2}, [2132] = {.lex_state = 39, .external_lex_state = 2}, [2133] = {.lex_state = 39, .external_lex_state = 2}, @@ -10061,11 +10099,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2145] = {.lex_state = 39, .external_lex_state = 2}, [2146] = {.lex_state = 39, .external_lex_state = 2}, [2147] = {.lex_state = 39, .external_lex_state = 2}, - [2148] = {.lex_state = 39, .external_lex_state = 2}, - [2149] = {.lex_state = 39, .external_lex_state = 2}, + [2148] = {.lex_state = 39, .external_lex_state = 10}, + [2149] = {.lex_state = 39, .external_lex_state = 10}, [2150] = {.lex_state = 39, .external_lex_state = 2}, - [2151] = {.lex_state = 39, .external_lex_state = 2}, - [2152] = {.lex_state = 39, .external_lex_state = 10}, + [2151] = {.lex_state = 39, .external_lex_state = 10}, + [2152] = {.lex_state = 39, .external_lex_state = 2}, [2153] = {.lex_state = 39, .external_lex_state = 2}, [2154] = {.lex_state = 39, .external_lex_state = 2}, [2155] = {.lex_state = 39, .external_lex_state = 2}, @@ -10095,10 +10133,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2179] = {.lex_state = 39, .external_lex_state = 2}, [2180] = {.lex_state = 39, .external_lex_state = 2}, [2181] = {.lex_state = 39, .external_lex_state = 2}, - [2182] = {.lex_state = 39, .external_lex_state = 2}, + [2182] = {.lex_state = 39, .external_lex_state = 9}, [2183] = {.lex_state = 39, .external_lex_state = 2}, [2184] = {.lex_state = 39, .external_lex_state = 2}, - [2185] = {.lex_state = 39, .external_lex_state = 10}, + [2185] = {.lex_state = 39, .external_lex_state = 2}, [2186] = {.lex_state = 39, .external_lex_state = 2}, [2187] = {.lex_state = 39, .external_lex_state = 2}, [2188] = {.lex_state = 39, .external_lex_state = 2}, @@ -10110,7 +10148,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2194] = {.lex_state = 39, .external_lex_state = 2}, [2195] = {.lex_state = 39, .external_lex_state = 2}, [2196] = {.lex_state = 39, .external_lex_state = 2}, - [2197] = {.lex_state = 39, .external_lex_state = 9}, + [2197] = {.lex_state = 39, .external_lex_state = 2}, [2198] = {.lex_state = 39, .external_lex_state = 2}, [2199] = {.lex_state = 39, .external_lex_state = 2}, [2200] = {.lex_state = 39, .external_lex_state = 2}, @@ -10123,357 +10161,357 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2207] = {.lex_state = 39, .external_lex_state = 2}, [2208] = {.lex_state = 39, .external_lex_state = 2}, [2209] = {.lex_state = 39, .external_lex_state = 2}, - [2210] = {.lex_state = 39, .external_lex_state = 2}, + [2210] = {.lex_state = 39, .external_lex_state = 10}, [2211] = {.lex_state = 39, .external_lex_state = 2}, [2212] = {.lex_state = 39, .external_lex_state = 2}, [2213] = {.lex_state = 39, .external_lex_state = 2}, - [2214] = {.lex_state = 39, .external_lex_state = 9}, - [2215] = {.lex_state = 39, .external_lex_state = 9}, - [2216] = {.lex_state = 39, .external_lex_state = 9}, - [2217] = {.lex_state = 39, .external_lex_state = 9}, - [2218] = {.lex_state = 39, .external_lex_state = 11}, - [2219] = {.lex_state = 39, .external_lex_state = 11}, - [2220] = {.lex_state = 39, .external_lex_state = 11}, - [2221] = {.lex_state = 39, .external_lex_state = 11}, - [2222] = {.lex_state = 3, .external_lex_state = 10}, - [2223] = {.lex_state = 39, .external_lex_state = 8}, - [2224] = {.lex_state = 3, .external_lex_state = 10}, - [2225] = {.lex_state = 39, .external_lex_state = 9}, - [2226] = {.lex_state = 3, .external_lex_state = 10}, + [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 = 2}, + [2218] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [2226] = {.lex_state = 39, .external_lex_state = 2}, [2227] = {.lex_state = 39, .external_lex_state = 9}, - [2228] = {.lex_state = 3, .external_lex_state = 10}, + [2228] = {.lex_state = 39, .external_lex_state = 9}, [2229] = {.lex_state = 39, .external_lex_state = 9}, - [2230] = {.lex_state = 39, .external_lex_state = 8}, - [2231] = {.lex_state = 39, .external_lex_state = 9}, - [2232] = {.lex_state = 39, .external_lex_state = 8}, - [2233] = {.lex_state = 39, .external_lex_state = 8}, - [2234] = {.lex_state = 39, .external_lex_state = 12}, - [2235] = {.lex_state = 3, .external_lex_state = 5}, - [2236] = {.lex_state = 39, .external_lex_state = 12}, - [2237] = {.lex_state = 39, .external_lex_state = 12}, - [2238] = {.lex_state = 3, .external_lex_state = 5}, - [2239] = {.lex_state = 39, .external_lex_state = 12}, - [2240] = {.lex_state = 3, .external_lex_state = 5}, - [2241] = {.lex_state = 39, .external_lex_state = 5}, - [2242] = {.lex_state = 39, .external_lex_state = 5}, - [2243] = {.lex_state = 39, .external_lex_state = 5}, - [2244] = {.lex_state = 3, .external_lex_state = 5}, - [2245] = {.lex_state = 39, .external_lex_state = 5}, - [2246] = {.lex_state = 39, .external_lex_state = 5}, - [2247] = {.lex_state = 39, .external_lex_state = 5}, - [2248] = {.lex_state = 39, .external_lex_state = 5}, - [2249] = {.lex_state = 39, .external_lex_state = 5}, + [2230] = {.lex_state = 39, .external_lex_state = 9}, + [2231] = {.lex_state = 39, .external_lex_state = 11}, + [2232] = {.lex_state = 39, .external_lex_state = 11}, + [2233] = {.lex_state = 39, .external_lex_state = 11}, + [2234] = {.lex_state = 39, .external_lex_state = 11}, + [2235] = {.lex_state = 3, .external_lex_state = 10}, + [2236] = {.lex_state = 39, .external_lex_state = 9}, + [2237] = {.lex_state = 3, .external_lex_state = 10}, + [2238] = {.lex_state = 3, .external_lex_state = 10}, + [2239] = {.lex_state = 39, .external_lex_state = 8}, + [2240] = {.lex_state = 39, .external_lex_state = 8}, + [2241] = {.lex_state = 39, .external_lex_state = 8}, + [2242] = {.lex_state = 39, .external_lex_state = 9}, + [2243] = {.lex_state = 3, .external_lex_state = 10}, + [2244] = {.lex_state = 39, .external_lex_state = 9}, + [2245] = {.lex_state = 39, .external_lex_state = 9}, + [2246] = {.lex_state = 39, .external_lex_state = 8}, + [2247] = {.lex_state = 3, .external_lex_state = 5}, + [2248] = {.lex_state = 39, .external_lex_state = 12}, + [2249] = {.lex_state = 39, .external_lex_state = 12}, [2250] = {.lex_state = 3, .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 = 9}, + [2251] = {.lex_state = 39, .external_lex_state = 12}, + [2252] = {.lex_state = 3, .external_lex_state = 5}, + [2253] = {.lex_state = 39, .external_lex_state = 12}, + [2254] = {.lex_state = 39, .external_lex_state = 5}, [2255] = {.lex_state = 39, .external_lex_state = 5}, - [2256] = {.lex_state = 39, .external_lex_state = 9}, - [2257] = {.lex_state = 39, .external_lex_state = 9}, - [2258] = {.lex_state = 39, .external_lex_state = 9}, + [2256] = {.lex_state = 3, .external_lex_state = 5}, + [2257] = {.lex_state = 39, .external_lex_state = 5}, + [2258] = {.lex_state = 39, .external_lex_state = 5}, [2259] = {.lex_state = 39, .external_lex_state = 5}, - [2260] = {.lex_state = 3, .external_lex_state = 2}, - [2261] = {.lex_state = 39, .external_lex_state = 10}, - [2262] = {.lex_state = 39, .external_lex_state = 8}, - [2263] = {.lex_state = 39, .external_lex_state = 2}, - [2264] = {.lex_state = 39, .external_lex_state = 10}, - [2265] = {.lex_state = 39, .external_lex_state = 10}, - [2266] = {.lex_state = 39, .external_lex_state = 10}, - [2267] = {.lex_state = 39, .external_lex_state = 10}, - [2268] = {.lex_state = 39, .external_lex_state = 2}, - [2269] = {.lex_state = 39, .external_lex_state = 11}, - [2270] = {.lex_state = 39, .external_lex_state = 11}, - [2271] = {.lex_state = 39, .external_lex_state = 11}, - [2272] = {.lex_state = 39, .external_lex_state = 11}, - [2273] = {.lex_state = 39, .external_lex_state = 11}, - [2274] = {.lex_state = 39, .external_lex_state = 11}, - [2275] = {.lex_state = 39, .external_lex_state = 9}, - [2276] = {.lex_state = 39, .external_lex_state = 9}, - [2277] = {.lex_state = 39, .external_lex_state = 11}, - [2278] = {.lex_state = 39, .external_lex_state = 11}, - [2279] = {.lex_state = 39, .external_lex_state = 11}, - [2280] = {.lex_state = 39, .external_lex_state = 9}, - [2281] = {.lex_state = 39, .external_lex_state = 9}, - [2282] = {.lex_state = 39, .external_lex_state = 9}, + [2260] = {.lex_state = 3, .external_lex_state = 5}, + [2261] = {.lex_state = 39, .external_lex_state = 5}, + [2262] = {.lex_state = 39, .external_lex_state = 5}, + [2263] = {.lex_state = 39, .external_lex_state = 5}, + [2264] = {.lex_state = 39, .external_lex_state = 5}, + [2265] = {.lex_state = 3, .external_lex_state = 2}, + [2266] = {.lex_state = 39, .external_lex_state = 9}, + [2267] = {.lex_state = 39, .external_lex_state = 9}, + [2268] = {.lex_state = 39, .external_lex_state = 9}, + [2269] = {.lex_state = 39, .external_lex_state = 5}, + [2270] = {.lex_state = 39, .external_lex_state = 5}, + [2271] = {.lex_state = 39, .external_lex_state = 5}, + [2272] = {.lex_state = 39, .external_lex_state = 9}, + [2273] = {.lex_state = 39, .external_lex_state = 5}, + [2274] = {.lex_state = 39, .external_lex_state = 10}, + [2275] = {.lex_state = 39, .external_lex_state = 10}, + [2276] = {.lex_state = 39, .external_lex_state = 10}, + [2277] = {.lex_state = 39, .external_lex_state = 10}, + [2278] = {.lex_state = 39, .external_lex_state = 2}, + [2279] = {.lex_state = 39, .external_lex_state = 2}, + [2280] = {.lex_state = 39, .external_lex_state = 10}, + [2281] = {.lex_state = 39, .external_lex_state = 8}, + [2282] = {.lex_state = 39, .external_lex_state = 11}, [2283] = {.lex_state = 39, .external_lex_state = 9}, - [2284] = {.lex_state = 39, .external_lex_state = 9}, + [2284] = {.lex_state = 39, .external_lex_state = 11}, [2285] = {.lex_state = 39, .external_lex_state = 11}, - [2286] = {.lex_state = 39, .external_lex_state = 9}, - [2287] = {.lex_state = 39, .external_lex_state = 11}, - [2288] = {.lex_state = 39, .external_lex_state = 11}, - [2289] = {.lex_state = 39, .external_lex_state = 10}, - [2290] = {.lex_state = 39, .external_lex_state = 11}, + [2286] = {.lex_state = 39, .external_lex_state = 11}, + [2287] = {.lex_state = 39, .external_lex_state = 9}, + [2288] = {.lex_state = 39, .external_lex_state = 9}, + [2289] = {.lex_state = 39, .external_lex_state = 11}, + [2290] = {.lex_state = 39, .external_lex_state = 9}, [2291] = {.lex_state = 39, .external_lex_state = 11}, - [2292] = {.lex_state = 39, .external_lex_state = 10}, - [2293] = {.lex_state = 39, .external_lex_state = 10}, + [2292] = {.lex_state = 39, .external_lex_state = 11}, + [2293] = {.lex_state = 39, .external_lex_state = 9}, [2294] = {.lex_state = 39, .external_lex_state = 11}, - [2295] = {.lex_state = 39, .external_lex_state = 10}, - [2296] = {.lex_state = 39, .external_lex_state = 11}, - [2297] = {.lex_state = 39, .external_lex_state = 10}, - [2298] = {.lex_state = 39, .external_lex_state = 11}, - [2299] = {.lex_state = 39, .external_lex_state = 10}, - [2300] = {.lex_state = 39, .external_lex_state = 2}, + [2295] = {.lex_state = 39, .external_lex_state = 11}, + [2296] = {.lex_state = 39, .external_lex_state = 9}, + [2297] = {.lex_state = 39, .external_lex_state = 9}, + [2298] = {.lex_state = 39, .external_lex_state = 10}, + [2299] = {.lex_state = 39, .external_lex_state = 11}, + [2300] = {.lex_state = 39, .external_lex_state = 11}, [2301] = {.lex_state = 39, .external_lex_state = 10}, - [2302] = {.lex_state = 39, .external_lex_state = 11}, - [2303] = {.lex_state = 39, .external_lex_state = 10}, + [2302] = {.lex_state = 39, .external_lex_state = 10}, + [2303] = {.lex_state = 39, .external_lex_state = 11}, [2304] = {.lex_state = 39, .external_lex_state = 11}, - [2305] = {.lex_state = 39, .external_lex_state = 11}, + [2305] = {.lex_state = 39, .external_lex_state = 10}, [2306] = {.lex_state = 39, .external_lex_state = 10}, [2307] = {.lex_state = 39, .external_lex_state = 9}, [2308] = {.lex_state = 39, .external_lex_state = 11}, [2309] = {.lex_state = 39, .external_lex_state = 11}, [2310] = {.lex_state = 39, .external_lex_state = 11}, - [2311] = {.lex_state = 39, .external_lex_state = 8}, - [2312] = {.lex_state = 39, .external_lex_state = 8}, - [2313] = {.lex_state = 39, .external_lex_state = 12}, - [2314] = {.lex_state = 39, .external_lex_state = 2}, - [2315] = {.lex_state = 39, .external_lex_state = 9}, - [2316] = {.lex_state = 39, .external_lex_state = 2}, - [2317] = {.lex_state = 39, .external_lex_state = 8}, - [2318] = {.lex_state = 39, .external_lex_state = 2}, - [2319] = {.lex_state = 39, .external_lex_state = 2}, - [2320] = {.lex_state = 39, .external_lex_state = 2}, - [2321] = {.lex_state = 39, .external_lex_state = 9}, - [2322] = {.lex_state = 39, .external_lex_state = 2}, + [2311] = {.lex_state = 39, .external_lex_state = 10}, + [2312] = {.lex_state = 39, .external_lex_state = 11}, + [2313] = {.lex_state = 39, .external_lex_state = 11}, + [2314] = {.lex_state = 39, .external_lex_state = 10}, + [2315] = {.lex_state = 39, .external_lex_state = 2}, + [2316] = {.lex_state = 39, .external_lex_state = 10}, + [2317] = {.lex_state = 39, .external_lex_state = 10}, + [2318] = {.lex_state = 39, .external_lex_state = 11}, + [2319] = {.lex_state = 39, .external_lex_state = 11}, + [2320] = {.lex_state = 39, .external_lex_state = 9}, + [2321] = {.lex_state = 39, .external_lex_state = 11}, + [2322] = {.lex_state = 39, .external_lex_state = 11}, [2323] = {.lex_state = 39, .external_lex_state = 11}, [2324] = {.lex_state = 39, .external_lex_state = 2}, - [2325] = {.lex_state = 39, .external_lex_state = 11}, - [2326] = {.lex_state = 3, .external_lex_state = 10}, + [2325] = {.lex_state = 39, .external_lex_state = 2}, + [2326] = {.lex_state = 39, .external_lex_state = 10}, [2327] = {.lex_state = 39, .external_lex_state = 12}, - [2328] = {.lex_state = 39, .external_lex_state = 2}, - [2329] = {.lex_state = 39, .external_lex_state = 2}, - [2330] = {.lex_state = 39, .external_lex_state = 2}, + [2328] = {.lex_state = 39, .external_lex_state = 8}, + [2329] = {.lex_state = 39, .external_lex_state = 12}, + [2330] = {.lex_state = 39, .external_lex_state = 12}, [2331] = {.lex_state = 39, .external_lex_state = 2}, - [2332] = {.lex_state = 3, .external_lex_state = 10}, - [2333] = {.lex_state = 39, .external_lex_state = 9}, - [2334] = {.lex_state = 3, .external_lex_state = 10}, - [2335] = {.lex_state = 3, .external_lex_state = 10}, - [2336] = {.lex_state = 39, .external_lex_state = 2}, + [2332] = {.lex_state = 39, .external_lex_state = 8}, + [2333] = {.lex_state = 39, .external_lex_state = 2}, + [2334] = {.lex_state = 39, .external_lex_state = 12}, + [2335] = {.lex_state = 39, .external_lex_state = 2}, + [2336] = {.lex_state = 39, .external_lex_state = 10}, [2337] = {.lex_state = 39, .external_lex_state = 2}, - [2338] = {.lex_state = 3, .external_lex_state = 10}, - [2339] = {.lex_state = 39, .external_lex_state = 12}, - [2340] = {.lex_state = 39, .external_lex_state = 2}, - [2341] = {.lex_state = 3, .external_lex_state = 10}, - [2342] = {.lex_state = 39, .external_lex_state = 12}, - [2343] = {.lex_state = 39, .external_lex_state = 11}, - [2344] = {.lex_state = 39, .external_lex_state = 2}, - [2345] = {.lex_state = 39, .external_lex_state = 9}, + [2338] = {.lex_state = 39, .external_lex_state = 11}, + [2339] = {.lex_state = 39, .external_lex_state = 9}, + [2340] = {.lex_state = 3, .external_lex_state = 10}, + [2341] = {.lex_state = 39, .external_lex_state = 9}, + [2342] = {.lex_state = 39, .external_lex_state = 2}, + [2343] = {.lex_state = 39, .external_lex_state = 2}, + [2344] = {.lex_state = 39, .external_lex_state = 8}, + [2345] = {.lex_state = 39, .external_lex_state = 12}, [2346] = {.lex_state = 39, .external_lex_state = 2}, - [2347] = {.lex_state = 3, .external_lex_state = 10}, - [2348] = {.lex_state = 39, .external_lex_state = 9}, - [2349] = {.lex_state = 39, .external_lex_state = 8}, - [2350] = {.lex_state = 39, .external_lex_state = 12}, - [2351] = {.lex_state = 39, .external_lex_state = 12}, - [2352] = {.lex_state = 39, .external_lex_state = 2}, - [2353] = {.lex_state = 39, .external_lex_state = 9}, + [2347] = {.lex_state = 39, .external_lex_state = 12}, + [2348] = {.lex_state = 39, .external_lex_state = 8}, + [2349] = {.lex_state = 39, .external_lex_state = 11}, + [2350] = {.lex_state = 39, .external_lex_state = 8}, + [2351] = {.lex_state = 39, .external_lex_state = 2}, + [2352] = {.lex_state = 3, .external_lex_state = 10}, + [2353] = {.lex_state = 3, .external_lex_state = 10}, [2354] = {.lex_state = 39, .external_lex_state = 9}, - [2355] = {.lex_state = 39, .external_lex_state = 12}, - [2356] = {.lex_state = 39, .external_lex_state = 11}, - [2357] = {.lex_state = 39, .external_lex_state = 10}, - [2358] = {.lex_state = 39, .external_lex_state = 10}, + [2355] = {.lex_state = 39, .external_lex_state = 11}, + [2356] = {.lex_state = 39, .external_lex_state = 12}, + [2357] = {.lex_state = 39, .external_lex_state = 2}, + [2358] = {.lex_state = 39, .external_lex_state = 9}, [2359] = {.lex_state = 39, .external_lex_state = 12}, - [2360] = {.lex_state = 39, .external_lex_state = 8}, + [2360] = {.lex_state = 39, .external_lex_state = 2}, [2361] = {.lex_state = 39, .external_lex_state = 9}, [2362] = {.lex_state = 39, .external_lex_state = 9}, [2363] = {.lex_state = 39, .external_lex_state = 12}, - [2364] = {.lex_state = 39, .external_lex_state = 8}, + [2364] = {.lex_state = 39, .external_lex_state = 2}, [2365] = {.lex_state = 39, .external_lex_state = 2}, [2366] = {.lex_state = 39, .external_lex_state = 2}, - [2367] = {.lex_state = 39, .external_lex_state = 11}, - [2368] = {.lex_state = 39, .external_lex_state = 10}, - [2369] = {.lex_state = 39, .external_lex_state = 2}, - [2370] = {.lex_state = 39, .external_lex_state = 10}, + [2367] = {.lex_state = 39, .external_lex_state = 2}, + [2368] = {.lex_state = 39, .external_lex_state = 8}, + [2369] = {.lex_state = 39, .external_lex_state = 9}, + [2370] = {.lex_state = 39, .external_lex_state = 11}, [2371] = {.lex_state = 39, .external_lex_state = 2}, - [2372] = {.lex_state = 39, .external_lex_state = 8}, - [2373] = {.lex_state = 39, .external_lex_state = 12}, - [2374] = {.lex_state = 39, .external_lex_state = 8}, - [2375] = {.lex_state = 39, .external_lex_state = 2}, - [2376] = {.lex_state = 39, .external_lex_state = 10}, - [2377] = {.lex_state = 39, .external_lex_state = 10}, - [2378] = {.lex_state = 39, .external_lex_state = 10}, - [2379] = {.lex_state = 39, .external_lex_state = 11}, + [2372] = {.lex_state = 3, .external_lex_state = 10}, + [2373] = {.lex_state = 3, .external_lex_state = 10}, + [2374] = {.lex_state = 39, .external_lex_state = 2}, + [2375] = {.lex_state = 39, .external_lex_state = 9}, + [2376] = {.lex_state = 39, .external_lex_state = 9}, + [2377] = {.lex_state = 3, .external_lex_state = 10}, + [2378] = {.lex_state = 3, .external_lex_state = 10}, + [2379] = {.lex_state = 39, .external_lex_state = 12}, [2380] = {.lex_state = 39, .external_lex_state = 10}, - [2381] = {.lex_state = 39, .external_lex_state = 2}, + [2381] = {.lex_state = 39, .external_lex_state = 10}, [2382] = {.lex_state = 39, .external_lex_state = 10}, - [2383] = {.lex_state = 39, .external_lex_state = 8}, + [2383] = {.lex_state = 39, .external_lex_state = 2}, [2384] = {.lex_state = 39, .external_lex_state = 10}, - [2385] = {.lex_state = 39, .external_lex_state = 8}, + [2385] = {.lex_state = 39, .external_lex_state = 11}, [2386] = {.lex_state = 39, .external_lex_state = 2}, [2387] = {.lex_state = 39, .external_lex_state = 2}, [2388] = {.lex_state = 39, .external_lex_state = 2}, - [2389] = {.lex_state = 39, .external_lex_state = 11}, - [2390] = {.lex_state = 39, .external_lex_state = 2}, - [2391] = {.lex_state = 39, .external_lex_state = 11}, + [2389] = {.lex_state = 39, .external_lex_state = 10}, + [2390] = {.lex_state = 39, .external_lex_state = 11}, + [2391] = {.lex_state = 39, .external_lex_state = 10}, [2392] = {.lex_state = 39, .external_lex_state = 2}, - [2393] = {.lex_state = 39, .external_lex_state = 2}, - [2394] = {.lex_state = 39, .external_lex_state = 10}, - [2395] = {.lex_state = 39, .external_lex_state = 11}, - [2396] = {.lex_state = 39, .external_lex_state = 10}, + [2393] = {.lex_state = 39, .external_lex_state = 12}, + [2394] = {.lex_state = 39, .external_lex_state = 2}, + [2395] = {.lex_state = 39, .external_lex_state = 10}, + [2396] = {.lex_state = 39, .external_lex_state = 2}, [2397] = {.lex_state = 39, .external_lex_state = 2}, - [2398] = {.lex_state = 39, .external_lex_state = 2}, - [2399] = {.lex_state = 39, .external_lex_state = 10}, - [2400] = {.lex_state = 39, .external_lex_state = 2}, - [2401] = {.lex_state = 39, .external_lex_state = 12}, - [2402] = {.lex_state = 39, .external_lex_state = 10}, - [2403] = {.lex_state = 39, .external_lex_state = 12}, - [2404] = {.lex_state = 39, .external_lex_state = 2}, - [2405] = {.lex_state = 39, .external_lex_state = 12}, - [2406] = {.lex_state = 39, .external_lex_state = 11}, - [2407] = {.lex_state = 39, .external_lex_state = 2}, - [2408] = {.lex_state = 39, .external_lex_state = 10}, - [2409] = {.lex_state = 39, .external_lex_state = 2}, - [2410] = {.lex_state = 39, .external_lex_state = 10}, + [2398] = {.lex_state = 39, .external_lex_state = 12}, + [2399] = {.lex_state = 39, .external_lex_state = 2}, + [2400] = {.lex_state = 39, .external_lex_state = 9}, + [2401] = {.lex_state = 39, .external_lex_state = 11}, + [2402] = {.lex_state = 39, .external_lex_state = 2}, + [2403] = {.lex_state = 39, .external_lex_state = 10}, + [2404] = {.lex_state = 39, .external_lex_state = 11}, + [2405] = {.lex_state = 39, .external_lex_state = 10}, + [2406] = {.lex_state = 39, .external_lex_state = 10}, + [2407] = {.lex_state = 39, .external_lex_state = 10}, + [2408] = {.lex_state = 39, .external_lex_state = 12}, + [2409] = {.lex_state = 39, .external_lex_state = 8}, + [2410] = {.lex_state = 39, .external_lex_state = 2}, [2411] = {.lex_state = 39, .external_lex_state = 2}, - [2412] = {.lex_state = 39, .external_lex_state = 10}, - [2413] = {.lex_state = 39, .external_lex_state = 12}, - [2414] = {.lex_state = 39, .external_lex_state = 10}, - [2415] = {.lex_state = 39, .external_lex_state = 2}, - [2416] = {.lex_state = 39, .external_lex_state = 12}, - [2417] = {.lex_state = 39, .external_lex_state = 10}, + [2412] = {.lex_state = 39, .external_lex_state = 2}, + [2413] = {.lex_state = 39, .external_lex_state = 9}, + [2414] = {.lex_state = 39, .external_lex_state = 9}, + [2415] = {.lex_state = 39, .external_lex_state = 10}, + [2416] = {.lex_state = 39, .external_lex_state = 10}, + [2417] = {.lex_state = 39, .external_lex_state = 9}, [2418] = {.lex_state = 39, .external_lex_state = 2}, - [2419] = {.lex_state = 39, .external_lex_state = 10}, - [2420] = {.lex_state = 39, .external_lex_state = 2}, - [2421] = {.lex_state = 39, .external_lex_state = 10}, - [2422] = {.lex_state = 39, .external_lex_state = 2}, + [2419] = {.lex_state = 39, .external_lex_state = 12}, + [2420] = {.lex_state = 39, .external_lex_state = 11}, + [2421] = {.lex_state = 39, .external_lex_state = 8}, + [2422] = {.lex_state = 39, .external_lex_state = 10}, [2423] = {.lex_state = 39, .external_lex_state = 2}, [2424] = {.lex_state = 39, .external_lex_state = 2}, - [2425] = {.lex_state = 39, .external_lex_state = 12}, - [2426] = {.lex_state = 39, .external_lex_state = 2}, + [2425] = {.lex_state = 39, .external_lex_state = 2}, + [2426] = {.lex_state = 39, .external_lex_state = 12}, [2427] = {.lex_state = 39, .external_lex_state = 2}, - [2428] = {.lex_state = 39, .external_lex_state = 10}, - [2429] = {.lex_state = 39, .external_lex_state = 2}, - [2430] = {.lex_state = 39, .external_lex_state = 9}, - [2431] = {.lex_state = 39, .external_lex_state = 10}, - [2432] = {.lex_state = 39, .external_lex_state = 9}, - [2433] = {.lex_state = 39, .external_lex_state = 8}, - [2434] = {.lex_state = 39, .external_lex_state = 8}, - [2435] = {.lex_state = 39, .external_lex_state = 9}, - [2436] = {.lex_state = 39, .external_lex_state = 12}, + [2428] = {.lex_state = 39, .external_lex_state = 2}, + [2429] = {.lex_state = 39, .external_lex_state = 10}, + [2430] = {.lex_state = 39, .external_lex_state = 8}, + [2431] = {.lex_state = 39, .external_lex_state = 2}, + [2432] = {.lex_state = 39, .external_lex_state = 10}, + [2433] = {.lex_state = 39, .external_lex_state = 10}, + [2434] = {.lex_state = 39, .external_lex_state = 11}, + [2435] = {.lex_state = 39, .external_lex_state = 10}, + [2436] = {.lex_state = 39, .external_lex_state = 2}, [2437] = {.lex_state = 39, .external_lex_state = 10}, - [2438] = {.lex_state = 39, .external_lex_state = 10}, - [2439] = {.lex_state = 39, .external_lex_state = 11}, - [2440] = {.lex_state = 39, .external_lex_state = 9}, - [2441] = {.lex_state = 39, .external_lex_state = 12}, - [2442] = {.lex_state = 39, .external_lex_state = 9}, - [2443] = {.lex_state = 39, .external_lex_state = 12}, - [2444] = {.lex_state = 39, .external_lex_state = 10}, - [2445] = {.lex_state = 39, .external_lex_state = 10}, - [2446] = {.lex_state = 39, .external_lex_state = 9}, - [2447] = {.lex_state = 39, .external_lex_state = 8}, - [2448] = {.lex_state = 39, .external_lex_state = 9}, + [2438] = {.lex_state = 39, .external_lex_state = 8}, + [2439] = {.lex_state = 39, .external_lex_state = 2}, + [2440] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 12}, + [2447] = {.lex_state = 39, .external_lex_state = 10}, + [2448] = {.lex_state = 39, .external_lex_state = 12}, [2449] = {.lex_state = 39, .external_lex_state = 8}, - [2450] = {.lex_state = 39, .external_lex_state = 10}, - [2451] = {.lex_state = 39, .external_lex_state = 10}, - [2452] = {.lex_state = 39, .external_lex_state = 10}, + [2450] = {.lex_state = 39, .external_lex_state = 9}, + [2451] = {.lex_state = 39, .external_lex_state = 9}, + [2452] = {.lex_state = 39, .external_lex_state = 9}, [2453] = {.lex_state = 39, .external_lex_state = 9}, - [2454] = {.lex_state = 39, .external_lex_state = 12}, - [2455] = {.lex_state = 39, .external_lex_state = 10}, - [2456] = {.lex_state = 39, .external_lex_state = 10}, - [2457] = {.lex_state = 39, .external_lex_state = 10}, - [2458] = {.lex_state = 39, .external_lex_state = 9}, + [2454] = {.lex_state = 39, .external_lex_state = 9}, + [2455] = {.lex_state = 39, .external_lex_state = 9}, + [2456] = {.lex_state = 39, .external_lex_state = 9}, + [2457] = {.lex_state = 39, .external_lex_state = 9}, + [2458] = {.lex_state = 39, .external_lex_state = 8}, [2459] = {.lex_state = 39, .external_lex_state = 10}, - [2460] = {.lex_state = 39, .external_lex_state = 11}, - [2461] = {.lex_state = 39, .external_lex_state = 12}, - [2462] = {.lex_state = 39, .external_lex_state = 11}, + [2460] = {.lex_state = 39, .external_lex_state = 8}, + [2461] = {.lex_state = 39, .external_lex_state = 9}, + [2462] = {.lex_state = 39, .external_lex_state = 12}, [2463] = {.lex_state = 39, .external_lex_state = 9}, [2464] = {.lex_state = 39, .external_lex_state = 9}, - [2465] = {.lex_state = 39, .external_lex_state = 9}, - [2466] = {.lex_state = 39, .external_lex_state = 11}, - [2467] = {.lex_state = 39, .external_lex_state = 9}, + [2465] = {.lex_state = 39, .external_lex_state = 10}, + [2466] = {.lex_state = 39, .external_lex_state = 10}, + [2467] = {.lex_state = 39, .external_lex_state = 11}, [2468] = {.lex_state = 39, .external_lex_state = 9}, - [2469] = {.lex_state = 39, .external_lex_state = 9}, + [2469] = {.lex_state = 39, .external_lex_state = 10}, [2470] = {.lex_state = 39, .external_lex_state = 9}, - [2471] = {.lex_state = 39, .external_lex_state = 11}, + [2471] = {.lex_state = 39, .external_lex_state = 12}, [2472] = {.lex_state = 39, .external_lex_state = 10}, - [2473] = {.lex_state = 39, .external_lex_state = 9}, + [2473] = {.lex_state = 39, .external_lex_state = 10}, [2474] = {.lex_state = 39, .external_lex_state = 10}, [2475] = {.lex_state = 39, .external_lex_state = 9}, - [2476] = {.lex_state = 39, .external_lex_state = 9}, - [2477] = {.lex_state = 39, .external_lex_state = 9}, - [2478] = {.lex_state = 39, .external_lex_state = 9}, + [2476] = {.lex_state = 39, .external_lex_state = 10}, + [2477] = {.lex_state = 39, .external_lex_state = 10}, + [2478] = {.lex_state = 39, .external_lex_state = 10}, [2479] = {.lex_state = 39, .external_lex_state = 9}, [2480] = {.lex_state = 39, .external_lex_state = 9}, - [2481] = {.lex_state = 39, .external_lex_state = 8}, + [2481] = {.lex_state = 39, .external_lex_state = 11}, [2482] = {.lex_state = 39, .external_lex_state = 9}, - [2483] = {.lex_state = 39, .external_lex_state = 9}, + [2483] = {.lex_state = 39, .external_lex_state = 10}, [2484] = {.lex_state = 39, .external_lex_state = 9}, - [2485] = {.lex_state = 39, .external_lex_state = 10}, + [2485] = {.lex_state = 39, .external_lex_state = 8}, [2486] = {.lex_state = 39, .external_lex_state = 9}, - [2487] = {.lex_state = 39, .external_lex_state = 9}, - [2488] = {.lex_state = 39, .external_lex_state = 10}, - [2489] = {.lex_state = 39, .external_lex_state = 12}, + [2487] = {.lex_state = 39, .external_lex_state = 10}, + [2488] = {.lex_state = 39, .external_lex_state = 8}, + [2489] = {.lex_state = 39, .external_lex_state = 9}, [2490] = {.lex_state = 39, .external_lex_state = 9}, [2491] = {.lex_state = 39, .external_lex_state = 10}, [2492] = {.lex_state = 39, .external_lex_state = 9}, - [2493] = {.lex_state = 39, .external_lex_state = 10}, - [2494] = {.lex_state = 39, .external_lex_state = 10}, - [2495] = {.lex_state = 39, .external_lex_state = 10}, - [2496] = {.lex_state = 39, .external_lex_state = 9}, + [2493] = {.lex_state = 39, .external_lex_state = 9}, + [2494] = {.lex_state = 39, .external_lex_state = 9}, + [2495] = {.lex_state = 39, .external_lex_state = 9}, + [2496] = {.lex_state = 39, .external_lex_state = 11}, [2497] = {.lex_state = 39, .external_lex_state = 10}, - [2498] = {.lex_state = 39, .external_lex_state = 9}, + [2498] = {.lex_state = 39, .external_lex_state = 10}, [2499] = {.lex_state = 39, .external_lex_state = 9}, [2500] = {.lex_state = 39, .external_lex_state = 10}, [2501] = {.lex_state = 39, .external_lex_state = 9}, - [2502] = {.lex_state = 39, .external_lex_state = 9}, - [2503] = {.lex_state = 39, .external_lex_state = 12}, + [2502] = {.lex_state = 39, .external_lex_state = 10}, + [2503] = {.lex_state = 39, .external_lex_state = 10}, [2504] = {.lex_state = 39, .external_lex_state = 9}, - [2505] = {.lex_state = 39, .external_lex_state = 9}, - [2506] = {.lex_state = 39, .external_lex_state = 11}, + [2505] = {.lex_state = 39, .external_lex_state = 12}, + [2506] = {.lex_state = 39, .external_lex_state = 10}, [2507] = {.lex_state = 39, .external_lex_state = 9}, - [2508] = {.lex_state = 39, .external_lex_state = 9}, + [2508] = {.lex_state = 39, .external_lex_state = 10}, [2509] = {.lex_state = 39, .external_lex_state = 10}, [2510] = {.lex_state = 39, .external_lex_state = 9}, - [2511] = {.lex_state = 39, .external_lex_state = 10}, - [2512] = {.lex_state = 39, .external_lex_state = 10}, - [2513] = {.lex_state = 39, .external_lex_state = 10}, - [2514] = {.lex_state = 39, .external_lex_state = 9}, - [2515] = {.lex_state = 39, .external_lex_state = 10}, - [2516] = {.lex_state = 39, .external_lex_state = 9}, - [2517] = {.lex_state = 39, .external_lex_state = 12}, - [2518] = {.lex_state = 39, .external_lex_state = 10}, + [2511] = {.lex_state = 39, .external_lex_state = 9}, + [2512] = {.lex_state = 39, .external_lex_state = 11}, + [2513] = {.lex_state = 39, .external_lex_state = 8}, + [2514] = {.lex_state = 39, .external_lex_state = 10}, + [2515] = {.lex_state = 39, .external_lex_state = 9}, + [2516] = {.lex_state = 39, .external_lex_state = 11}, + [2517] = {.lex_state = 39, .external_lex_state = 9}, + [2518] = {.lex_state = 39, .external_lex_state = 8}, [2519] = {.lex_state = 39, .external_lex_state = 9}, - [2520] = {.lex_state = 39, .external_lex_state = 10}, - [2521] = {.lex_state = 39, .external_lex_state = 9}, + [2520] = {.lex_state = 39, .external_lex_state = 9}, + [2521] = {.lex_state = 39, .external_lex_state = 8}, [2522] = {.lex_state = 39, .external_lex_state = 9}, [2523] = {.lex_state = 39, .external_lex_state = 10}, - [2524] = {.lex_state = 39, .external_lex_state = 11}, + [2524] = {.lex_state = 39, .external_lex_state = 12}, [2525] = {.lex_state = 39, .external_lex_state = 9}, - [2526] = {.lex_state = 39, .external_lex_state = 10}, - [2527] = {.lex_state = 39, .external_lex_state = 10}, - [2528] = {.lex_state = 39, .external_lex_state = 9}, - [2529] = {.lex_state = 39, .external_lex_state = 8}, - [2530] = {.lex_state = 39, .external_lex_state = 10}, + [2526] = {.lex_state = 39, .external_lex_state = 12}, + [2527] = {.lex_state = 39, .external_lex_state = 9}, + [2528] = {.lex_state = 39, .external_lex_state = 11}, + [2529] = {.lex_state = 39, .external_lex_state = 9}, + [2530] = {.lex_state = 39, .external_lex_state = 12}, [2531] = {.lex_state = 39, .external_lex_state = 9}, - [2532] = {.lex_state = 39, .external_lex_state = 12}, + [2532] = {.lex_state = 39, .external_lex_state = 9}, [2533] = {.lex_state = 39, .external_lex_state = 10}, [2534] = {.lex_state = 39, .external_lex_state = 9}, - [2535] = {.lex_state = 39, .external_lex_state = 10}, - [2536] = {.lex_state = 39, .external_lex_state = 11}, - [2537] = {.lex_state = 39, .external_lex_state = 10}, - [2538] = {.lex_state = 39, .external_lex_state = 8}, - [2539] = {.lex_state = 39, .external_lex_state = 8}, - [2540] = {.lex_state = 39, .external_lex_state = 11}, - [2541] = {.lex_state = 39, .external_lex_state = 9}, + [2535] = {.lex_state = 39, .external_lex_state = 12}, + [2536] = {.lex_state = 39, .external_lex_state = 10}, + [2537] = {.lex_state = 39, .external_lex_state = 9}, + [2538] = {.lex_state = 39, .external_lex_state = 9}, + [2539] = {.lex_state = 39, .external_lex_state = 10}, + [2540] = {.lex_state = 39, .external_lex_state = 10}, + [2541] = {.lex_state = 39, .external_lex_state = 10}, [2542] = {.lex_state = 39, .external_lex_state = 9}, - [2543] = {.lex_state = 39, .external_lex_state = 8}, + [2543] = {.lex_state = 39, .external_lex_state = 10}, [2544] = {.lex_state = 39, .external_lex_state = 9}, - [2545] = {.lex_state = 39, .external_lex_state = 9}, - [2546] = {.lex_state = 39, .external_lex_state = 9}, - [2547] = {.lex_state = 39, .external_lex_state = 9}, - [2548] = {.lex_state = 39, .external_lex_state = 9}, + [2545] = {.lex_state = 39, .external_lex_state = 10}, + [2546] = {.lex_state = 39, .external_lex_state = 10}, + [2547] = {.lex_state = 39, .external_lex_state = 10}, + [2548] = {.lex_state = 39, .external_lex_state = 10}, [2549] = {.lex_state = 39, .external_lex_state = 9}, - [2550] = {.lex_state = 39, .external_lex_state = 9}, - [2551] = {.lex_state = 39, .external_lex_state = 9}, + [2550] = {.lex_state = 39, .external_lex_state = 8}, + [2551] = {.lex_state = 39, .external_lex_state = 10}, [2552] = {.lex_state = 39, .external_lex_state = 9}, [2553] = {.lex_state = 39, .external_lex_state = 9}, [2554] = {.lex_state = 39, .external_lex_state = 9}, - [2555] = {.lex_state = 39, .external_lex_state = 9}, + [2555] = {.lex_state = 39, .external_lex_state = 11}, [2556] = {.lex_state = 39, .external_lex_state = 9}, - [2557] = {.lex_state = 39, .external_lex_state = 9}, - [2558] = {.lex_state = 39, .external_lex_state = 9}, - [2559] = {.lex_state = 39, .external_lex_state = 9}, - [2560] = {.lex_state = 39, .external_lex_state = 9}, + [2557] = {.lex_state = 39, .external_lex_state = 10}, + [2558] = {.lex_state = 39, .external_lex_state = 12}, + [2559] = {.lex_state = 39, .external_lex_state = 11}, + [2560] = {.lex_state = 39, .external_lex_state = 11}, [2561] = {.lex_state = 39, .external_lex_state = 9}, [2562] = {.lex_state = 39, .external_lex_state = 9}, [2563] = {.lex_state = 39, .external_lex_state = 9}, @@ -10484,390 +10522,390 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2568] = {.lex_state = 39, .external_lex_state = 9}, [2569] = {.lex_state = 39, .external_lex_state = 9}, [2570] = {.lex_state = 39, .external_lex_state = 9}, - [2571] = {.lex_state = 39, .external_lex_state = 8}, + [2571] = {.lex_state = 39, .external_lex_state = 9}, [2572] = {.lex_state = 39, .external_lex_state = 9}, - [2573] = {.lex_state = 22, .external_lex_state = 13}, - [2574] = {.lex_state = 22, .external_lex_state = 13}, - [2575] = {.lex_state = 22, .external_lex_state = 13}, - [2576] = {.lex_state = 22, .external_lex_state = 13}, - [2577] = {.lex_state = 22, .external_lex_state = 13}, - [2578] = {.lex_state = 22, .external_lex_state = 13}, - [2579] = {.lex_state = 22, .external_lex_state = 13}, - [2580] = {.lex_state = 22, .external_lex_state = 13}, - [2581] = {.lex_state = 22, .external_lex_state = 13}, - [2582] = {.lex_state = 22, .external_lex_state = 13}, - [2583] = {.lex_state = 22, .external_lex_state = 13}, - [2584] = {.lex_state = 22, .external_lex_state = 13}, - [2585] = {.lex_state = 22, .external_lex_state = 13}, - [2586] = {.lex_state = 22, .external_lex_state = 13}, - [2587] = {.lex_state = 22, .external_lex_state = 13}, - [2588] = {.lex_state = 21, .external_lex_state = 9}, + [2573] = {.lex_state = 39, .external_lex_state = 9}, + [2574] = {.lex_state = 39, .external_lex_state = 9}, + [2575] = {.lex_state = 39, .external_lex_state = 9}, + [2576] = {.lex_state = 39, .external_lex_state = 9}, + [2577] = {.lex_state = 39, .external_lex_state = 9}, + [2578] = {.lex_state = 39, .external_lex_state = 8}, + [2579] = {.lex_state = 39, .external_lex_state = 9}, + [2580] = {.lex_state = 39, .external_lex_state = 9}, + [2581] = {.lex_state = 39, .external_lex_state = 9}, + [2582] = {.lex_state = 39, .external_lex_state = 9}, + [2583] = {.lex_state = 39, .external_lex_state = 9}, + [2584] = {.lex_state = 39, .external_lex_state = 9}, + [2585] = {.lex_state = 39, .external_lex_state = 9}, + [2586] = {.lex_state = 39, .external_lex_state = 9}, + [2587] = {.lex_state = 39, .external_lex_state = 9}, + [2588] = {.lex_state = 39, .external_lex_state = 9}, [2589] = {.lex_state = 22, .external_lex_state = 13}, - [2590] = {.lex_state = 21, .external_lex_state = 9}, + [2590] = {.lex_state = 22, .external_lex_state = 13}, [2591] = {.lex_state = 22, .external_lex_state = 13}, [2592] = {.lex_state = 22, .external_lex_state = 13}, [2593] = {.lex_state = 22, .external_lex_state = 13}, - [2594] = {.lex_state = 21, .external_lex_state = 9}, - [2595] = {.lex_state = 21, .external_lex_state = 9}, - [2596] = {.lex_state = 39, .external_lex_state = 9}, - [2597] = {.lex_state = 39, .external_lex_state = 9}, - [2598] = {.lex_state = 39, .external_lex_state = 9}, - [2599] = {.lex_state = 39, .external_lex_state = 8}, - [2600] = {.lex_state = 39, .external_lex_state = 9}, - [2601] = {.lex_state = 39, .external_lex_state = 9}, - [2602] = {.lex_state = 39, .external_lex_state = 10}, - [2603] = {.lex_state = 39, .external_lex_state = 11}, - [2604] = {.lex_state = 39, .external_lex_state = 9}, - [2605] = {.lex_state = 39, .external_lex_state = 9}, - [2606] = {.lex_state = 39, .external_lex_state = 9}, - [2607] = {.lex_state = 39, .external_lex_state = 9}, - [2608] = {.lex_state = 39, .external_lex_state = 9}, - [2609] = {.lex_state = 39, .external_lex_state = 11}, + [2594] = {.lex_state = 22, .external_lex_state = 13}, + [2595] = {.lex_state = 22, .external_lex_state = 13}, + [2596] = {.lex_state = 22, .external_lex_state = 13}, + [2597] = {.lex_state = 22, .external_lex_state = 13}, + [2598] = {.lex_state = 22, .external_lex_state = 13}, + [2599] = {.lex_state = 22, .external_lex_state = 13}, + [2600] = {.lex_state = 22, .external_lex_state = 13}, + [2601] = {.lex_state = 22, .external_lex_state = 13}, + [2602] = {.lex_state = 21, .external_lex_state = 9}, + [2603] = {.lex_state = 21, .external_lex_state = 9}, + [2604] = {.lex_state = 22, .external_lex_state = 13}, + [2605] = {.lex_state = 22, .external_lex_state = 13}, + [2606] = {.lex_state = 22, .external_lex_state = 13}, + [2607] = {.lex_state = 22, .external_lex_state = 13}, + [2608] = {.lex_state = 22, .external_lex_state = 13}, + [2609] = {.lex_state = 22, .external_lex_state = 13}, [2610] = {.lex_state = 39, .external_lex_state = 9}, - [2611] = {.lex_state = 39, .external_lex_state = 12}, + [2611] = {.lex_state = 39, .external_lex_state = 8}, [2612] = {.lex_state = 39, .external_lex_state = 9}, - [2613] = {.lex_state = 39, .external_lex_state = 9}, + [2613] = {.lex_state = 21, .external_lex_state = 9}, [2614] = {.lex_state = 39, .external_lex_state = 9}, [2615] = {.lex_state = 39, .external_lex_state = 9}, - [2616] = {.lex_state = 39, .external_lex_state = 9}, + [2616] = {.lex_state = 21, .external_lex_state = 9}, [2617] = {.lex_state = 39, .external_lex_state = 9}, [2618] = {.lex_state = 39, .external_lex_state = 9}, [2619] = {.lex_state = 39, .external_lex_state = 9}, [2620] = {.lex_state = 39, .external_lex_state = 9}, - [2621] = {.lex_state = 39, .external_lex_state = 10}, - [2622] = {.lex_state = 3, .external_lex_state = 10}, + [2621] = {.lex_state = 39, .external_lex_state = 9}, + [2622] = {.lex_state = 39, .external_lex_state = 10}, [2623] = {.lex_state = 39, .external_lex_state = 9}, - [2624] = {.lex_state = 39, .external_lex_state = 10}, + [2624] = {.lex_state = 39, .external_lex_state = 9}, [2625] = {.lex_state = 39, .external_lex_state = 10}, [2626] = {.lex_state = 39, .external_lex_state = 9}, [2627] = {.lex_state = 39, .external_lex_state = 9}, - [2628] = {.lex_state = 39, .external_lex_state = 10}, - [2629] = {.lex_state = 39, .external_lex_state = 9}, + [2628] = {.lex_state = 39, .external_lex_state = 9}, + [2629] = {.lex_state = 39, .external_lex_state = 10}, [2630] = {.lex_state = 39, .external_lex_state = 9}, [2631] = {.lex_state = 39, .external_lex_state = 9}, - [2632] = {.lex_state = 39, .external_lex_state = 12}, + [2632] = {.lex_state = 39, .external_lex_state = 9}, [2633] = {.lex_state = 39, .external_lex_state = 9}, [2634] = {.lex_state = 39, .external_lex_state = 10}, [2635] = {.lex_state = 39, .external_lex_state = 9}, - [2636] = {.lex_state = 39, .external_lex_state = 11}, - [2637] = {.lex_state = 39, .external_lex_state = 10}, + [2636] = {.lex_state = 39, .external_lex_state = 9}, + [2637] = {.lex_state = 39, .external_lex_state = 9}, [2638] = {.lex_state = 39, .external_lex_state = 9}, - [2639] = {.lex_state = 22, .external_lex_state = 13}, + [2639] = {.lex_state = 39, .external_lex_state = 9}, [2640] = {.lex_state = 39, .external_lex_state = 10}, [2641] = {.lex_state = 39, .external_lex_state = 9}, [2642] = {.lex_state = 39, .external_lex_state = 9}, - [2643] = {.lex_state = 39, .external_lex_state = 10}, - [2644] = {.lex_state = 39, .external_lex_state = 10}, + [2643] = {.lex_state = 39, .external_lex_state = 9}, + [2644] = {.lex_state = 39, .external_lex_state = 9}, [2645] = {.lex_state = 39, .external_lex_state = 9}, - [2646] = {.lex_state = 39, .external_lex_state = 9}, + [2646] = {.lex_state = 3, .external_lex_state = 10}, [2647] = {.lex_state = 39, .external_lex_state = 9}, - [2648] = {.lex_state = 39, .external_lex_state = 10}, + [2648] = {.lex_state = 22, .external_lex_state = 13}, [2649] = {.lex_state = 39, .external_lex_state = 9}, - [2650] = {.lex_state = 22, .external_lex_state = 13}, - [2651] = {.lex_state = 3, .external_lex_state = 10}, - [2652] = {.lex_state = 39, .external_lex_state = 10}, - [2653] = {.lex_state = 39, .external_lex_state = 12}, - [2654] = {.lex_state = 39, .external_lex_state = 9}, - [2655] = {.lex_state = 39, .external_lex_state = 9}, - [2656] = {.lex_state = 39, .external_lex_state = 12}, - [2657] = {.lex_state = 39, .external_lex_state = 12}, - [2658] = {.lex_state = 39, .external_lex_state = 12}, + [2650] = {.lex_state = 39, .external_lex_state = 9}, + [2651] = {.lex_state = 39, .external_lex_state = 11}, + [2652] = {.lex_state = 39, .external_lex_state = 9}, + [2653] = {.lex_state = 39, .external_lex_state = 9}, + [2654] = {.lex_state = 39, .external_lex_state = 12}, + [2655] = {.lex_state = 22, .external_lex_state = 13}, + [2656] = {.lex_state = 39, .external_lex_state = 10}, + [2657] = {.lex_state = 39, .external_lex_state = 11}, + [2658] = {.lex_state = 39, .external_lex_state = 11}, [2659] = {.lex_state = 39, .external_lex_state = 9}, - [2660] = {.lex_state = 39, .external_lex_state = 12}, - [2661] = {.lex_state = 39, .external_lex_state = 12}, - [2662] = {.lex_state = 39, .external_lex_state = 9}, - [2663] = {.lex_state = 39, .external_lex_state = 11}, - [2664] = {.lex_state = 39, .external_lex_state = 11}, + [2660] = {.lex_state = 39, .external_lex_state = 10}, + [2661] = {.lex_state = 39, .external_lex_state = 10}, + [2662] = {.lex_state = 39, .external_lex_state = 12}, + [2663] = {.lex_state = 39, .external_lex_state = 9}, + [2664] = {.lex_state = 39, .external_lex_state = 9}, [2665] = {.lex_state = 39, .external_lex_state = 9}, - [2666] = {.lex_state = 39, .external_lex_state = 12}, + [2666] = {.lex_state = 39, .external_lex_state = 9}, [2667] = {.lex_state = 39, .external_lex_state = 9}, - [2668] = {.lex_state = 39, .external_lex_state = 12}, - [2669] = {.lex_state = 39, .external_lex_state = 10}, + [2668] = {.lex_state = 3, .external_lex_state = 10}, + [2669] = {.lex_state = 39, .external_lex_state = 9}, [2670] = {.lex_state = 39, .external_lex_state = 9}, [2671] = {.lex_state = 39, .external_lex_state = 10}, - [2672] = {.lex_state = 39, .external_lex_state = 12}, - [2673] = {.lex_state = 39, .external_lex_state = 12}, - [2674] = {.lex_state = 39, .external_lex_state = 12}, + [2672] = {.lex_state = 39, .external_lex_state = 10}, + [2673] = {.lex_state = 39, .external_lex_state = 10}, + [2674] = {.lex_state = 39, .external_lex_state = 9}, [2675] = {.lex_state = 39, .external_lex_state = 9}, - [2676] = {.lex_state = 39, .external_lex_state = 12}, - [2677] = {.lex_state = 39, .external_lex_state = 12}, - [2678] = {.lex_state = 39, .external_lex_state = 12}, - [2679] = {.lex_state = 39, .external_lex_state = 12}, + [2676] = {.lex_state = 39, .external_lex_state = 9}, + [2677] = {.lex_state = 39, .external_lex_state = 10}, + [2678] = {.lex_state = 39, .external_lex_state = 11}, + [2679] = {.lex_state = 39, .external_lex_state = 9}, [2680] = {.lex_state = 39, .external_lex_state = 9}, - [2681] = {.lex_state = 39, .external_lex_state = 9}, + [2681] = {.lex_state = 39, .external_lex_state = 12}, [2682] = {.lex_state = 39, .external_lex_state = 9}, [2683] = {.lex_state = 39, .external_lex_state = 9}, - [2684] = {.lex_state = 39, .external_lex_state = 8}, - [2685] = {.lex_state = 39, .external_lex_state = 8}, - [2686] = {.lex_state = 39, .external_lex_state = 9}, - [2687] = {.lex_state = 39, .external_lex_state = 8}, + [2684] = {.lex_state = 39, .external_lex_state = 11}, + [2685] = {.lex_state = 39, .external_lex_state = 9}, + [2686] = {.lex_state = 39, .external_lex_state = 12}, + [2687] = {.lex_state = 39, .external_lex_state = 12}, [2688] = {.lex_state = 39, .external_lex_state = 12}, [2689] = {.lex_state = 39, .external_lex_state = 12}, - [2690] = {.lex_state = 39, .external_lex_state = 8}, + [2690] = {.lex_state = 39, .external_lex_state = 12}, [2691] = {.lex_state = 39, .external_lex_state = 9}, - [2692] = {.lex_state = 39, .external_lex_state = 8}, - [2693] = {.lex_state = 3, .external_lex_state = 10}, - [2694] = {.lex_state = 39, .external_lex_state = 8}, + [2692] = {.lex_state = 39, .external_lex_state = 12}, + [2693] = {.lex_state = 39, .external_lex_state = 12}, + [2694] = {.lex_state = 39, .external_lex_state = 10}, [2695] = {.lex_state = 39, .external_lex_state = 12}, - [2696] = {.lex_state = 39, .external_lex_state = 8}, - [2697] = {.lex_state = 3, .external_lex_state = 10}, - [2698] = {.lex_state = 39, .external_lex_state = 8}, + [2696] = {.lex_state = 39, .external_lex_state = 10}, + [2697] = {.lex_state = 39, .external_lex_state = 12}, + [2698] = {.lex_state = 39, .external_lex_state = 12}, [2699] = {.lex_state = 39, .external_lex_state = 12}, - [2700] = {.lex_state = 39, .external_lex_state = 8}, - [2701] = {.lex_state = 3, .external_lex_state = 10}, - [2702] = {.lex_state = 39, .external_lex_state = 8}, - [2703] = {.lex_state = 39, .external_lex_state = 8}, - [2704] = {.lex_state = 3, .external_lex_state = 10}, - [2705] = {.lex_state = 39, .external_lex_state = 8}, - [2706] = {.lex_state = 39, .external_lex_state = 12}, - [2707] = {.lex_state = 3, .external_lex_state = 10}, - [2708] = {.lex_state = 3, .external_lex_state = 10}, + [2700] = {.lex_state = 39, .external_lex_state = 12}, + [2701] = {.lex_state = 39, .external_lex_state = 12}, + [2702] = {.lex_state = 39, .external_lex_state = 12}, + [2703] = {.lex_state = 39, .external_lex_state = 12}, + [2704] = {.lex_state = 39, .external_lex_state = 12}, + [2705] = {.lex_state = 3, .external_lex_state = 10}, + [2706] = {.lex_state = 39, .external_lex_state = 9}, + [2707] = {.lex_state = 39, .external_lex_state = 12}, + [2708] = {.lex_state = 39, .external_lex_state = 8}, [2709] = {.lex_state = 3, .external_lex_state = 10}, - [2710] = {.lex_state = 39, .external_lex_state = 9}, - [2711] = {.lex_state = 39, .external_lex_state = 8}, - [2712] = {.lex_state = 3, .external_lex_state = 10}, + [2710] = {.lex_state = 39, .external_lex_state = 8}, + [2711] = {.lex_state = 3, .external_lex_state = 10}, + [2712] = {.lex_state = 39, .external_lex_state = 8}, [2713] = {.lex_state = 39, .external_lex_state = 8}, - [2714] = {.lex_state = 3, .external_lex_state = 10}, - [2715] = {.lex_state = 39, .external_lex_state = 8}, + [2714] = {.lex_state = 39, .external_lex_state = 12}, + [2715] = {.lex_state = 39, .external_lex_state = 12}, [2716] = {.lex_state = 39, .external_lex_state = 12}, - [2717] = {.lex_state = 3, .external_lex_state = 10}, - [2718] = {.lex_state = 39, .external_lex_state = 8}, - [2719] = {.lex_state = 39, .external_lex_state = 8}, - [2720] = {.lex_state = 39, .external_lex_state = 12}, - [2721] = {.lex_state = 39, .external_lex_state = 9}, - [2722] = {.lex_state = 39, .external_lex_state = 12}, - [2723] = {.lex_state = 39, .external_lex_state = 9}, + [2717] = {.lex_state = 39, .external_lex_state = 8}, + [2718] = {.lex_state = 39, .external_lex_state = 9}, + [2719] = {.lex_state = 3, .external_lex_state = 10}, + [2720] = {.lex_state = 3, .external_lex_state = 10}, + [2721] = {.lex_state = 39, .external_lex_state = 12}, + [2722] = {.lex_state = 39, .external_lex_state = 8}, + [2723] = {.lex_state = 39, .external_lex_state = 8}, [2724] = {.lex_state = 39, .external_lex_state = 8}, - [2725] = {.lex_state = 3, .external_lex_state = 10}, - [2726] = {.lex_state = 39, .external_lex_state = 8}, - [2727] = {.lex_state = 39, .external_lex_state = 9}, - [2728] = {.lex_state = 39, .external_lex_state = 12}, - [2729] = {.lex_state = 3, .external_lex_state = 10}, - [2730] = {.lex_state = 39, .external_lex_state = 12}, - [2731] = {.lex_state = 3, .external_lex_state = 10}, - [2732] = {.lex_state = 39, .external_lex_state = 12}, - [2733] = {.lex_state = 39, .external_lex_state = 9}, - [2734] = {.lex_state = 39, .external_lex_state = 11}, - [2735] = {.lex_state = 39, .external_lex_state = 12}, - [2736] = {.lex_state = 39, .external_lex_state = 10}, - [2737] = {.lex_state = 39, .external_lex_state = 11}, - [2738] = {.lex_state = 39, .external_lex_state = 10}, - [2739] = {.lex_state = 39, .external_lex_state = 10}, - [2740] = {.lex_state = 39, .external_lex_state = 11}, - [2741] = {.lex_state = 39, .external_lex_state = 12}, - [2742] = {.lex_state = 39, .external_lex_state = 11}, - [2743] = {.lex_state = 39, .external_lex_state = 10}, - [2744] = {.lex_state = 39, .external_lex_state = 12}, - [2745] = {.lex_state = 39, .external_lex_state = 12}, - [2746] = {.lex_state = 39, .external_lex_state = 12}, - [2747] = {.lex_state = 39, .external_lex_state = 11}, - [2748] = {.lex_state = 39, .external_lex_state = 9}, - [2749] = {.lex_state = 39, .external_lex_state = 11}, - [2750] = {.lex_state = 39, .external_lex_state = 10}, + [2725] = {.lex_state = 39, .external_lex_state = 8}, + [2726] = {.lex_state = 39, .external_lex_state = 9}, + [2727] = {.lex_state = 39, .external_lex_state = 12}, + [2728] = {.lex_state = 39, .external_lex_state = 9}, + [2729] = {.lex_state = 39, .external_lex_state = 8}, + [2730] = {.lex_state = 39, .external_lex_state = 8}, + [2731] = {.lex_state = 39, .external_lex_state = 8}, + [2732] = {.lex_state = 39, .external_lex_state = 8}, + [2733] = {.lex_state = 3, .external_lex_state = 10}, + [2734] = {.lex_state = 3, .external_lex_state = 10}, + [2735] = {.lex_state = 3, .external_lex_state = 10}, + [2736] = {.lex_state = 39, .external_lex_state = 8}, + [2737] = {.lex_state = 39, .external_lex_state = 8}, + [2738] = {.lex_state = 39, .external_lex_state = 8}, + [2739] = {.lex_state = 39, .external_lex_state = 8}, + [2740] = {.lex_state = 39, .external_lex_state = 12}, + [2741] = {.lex_state = 39, .external_lex_state = 8}, + [2742] = {.lex_state = 3, .external_lex_state = 10}, + [2743] = {.lex_state = 39, .external_lex_state = 12}, + [2744] = {.lex_state = 39, .external_lex_state = 8}, + [2745] = {.lex_state = 3, .external_lex_state = 10}, + [2746] = {.lex_state = 3, .external_lex_state = 10}, + [2747] = {.lex_state = 3, .external_lex_state = 10}, + [2748] = {.lex_state = 39, .external_lex_state = 10}, + [2749] = {.lex_state = 39, .external_lex_state = 9}, + [2750] = {.lex_state = 39, .external_lex_state = 12}, [2751] = {.lex_state = 39, .external_lex_state = 11}, - [2752] = {.lex_state = 39, .external_lex_state = 12}, - [2753] = {.lex_state = 39, .external_lex_state = 12}, - [2754] = {.lex_state = 39, .external_lex_state = 10}, - [2755] = {.lex_state = 39, .external_lex_state = 10}, + [2752] = {.lex_state = 39, .external_lex_state = 10}, + [2753] = {.lex_state = 39, .external_lex_state = 11}, + [2754] = {.lex_state = 39, .external_lex_state = 12}, + [2755] = {.lex_state = 39, .external_lex_state = 12}, [2756] = {.lex_state = 39, .external_lex_state = 10}, [2757] = {.lex_state = 39, .external_lex_state = 11}, - [2758] = {.lex_state = 39, .external_lex_state = 11}, - [2759] = {.lex_state = 39, .external_lex_state = 11}, - [2760] = {.lex_state = 39, .external_lex_state = 12}, - [2761] = {.lex_state = 39, .external_lex_state = 9}, - [2762] = {.lex_state = 39, .external_lex_state = 11}, - [2763] = {.lex_state = 39, .external_lex_state = 9}, - [2764] = {.lex_state = 39, .external_lex_state = 12}, - [2765] = {.lex_state = 39, .external_lex_state = 11}, + [2758] = {.lex_state = 39, .external_lex_state = 10}, + [2759] = {.lex_state = 39, .external_lex_state = 12}, + [2760] = {.lex_state = 39, .external_lex_state = 9}, + [2761] = {.lex_state = 39, .external_lex_state = 11}, + [2762] = {.lex_state = 39, .external_lex_state = 10}, + [2763] = {.lex_state = 39, .external_lex_state = 12}, + [2764] = {.lex_state = 39, .external_lex_state = 11}, + [2765] = {.lex_state = 39, .external_lex_state = 12}, [2766] = {.lex_state = 39, .external_lex_state = 11}, - [2767] = {.lex_state = 39, .external_lex_state = 10}, - [2768] = {.lex_state = 39, .external_lex_state = 10}, - [2769] = {.lex_state = 39, .external_lex_state = 10}, + [2767] = {.lex_state = 39, .external_lex_state = 11}, + [2768] = {.lex_state = 39, .external_lex_state = 12}, + [2769] = {.lex_state = 39, .external_lex_state = 9}, [2770] = {.lex_state = 39, .external_lex_state = 11}, - [2771] = {.lex_state = 39, .external_lex_state = 12}, - [2772] = {.lex_state = 39, .external_lex_state = 11}, - [2773] = {.lex_state = 39, .external_lex_state = 11}, + [2771] = {.lex_state = 39, .external_lex_state = 10}, + [2772] = {.lex_state = 39, .external_lex_state = 10}, + [2773] = {.lex_state = 39, .external_lex_state = 12}, [2774] = {.lex_state = 39, .external_lex_state = 10}, - [2775] = {.lex_state = 39, .external_lex_state = 9}, - [2776] = {.lex_state = 39, .external_lex_state = 9}, + [2775] = {.lex_state = 39, .external_lex_state = 11}, + [2776] = {.lex_state = 39, .external_lex_state = 12}, [2777] = {.lex_state = 39, .external_lex_state = 11}, - [2778] = {.lex_state = 39, .external_lex_state = 12}, - [2779] = {.lex_state = 39, .external_lex_state = 9}, + [2778] = {.lex_state = 39, .external_lex_state = 11}, + [2779] = {.lex_state = 39, .external_lex_state = 10}, [2780] = {.lex_state = 39, .external_lex_state = 11}, [2781] = {.lex_state = 39, .external_lex_state = 10}, - [2782] = {.lex_state = 39, .external_lex_state = 12}, - [2783] = {.lex_state = 39, .external_lex_state = 9}, - [2784] = {.lex_state = 39, .external_lex_state = 10}, - [2785] = {.lex_state = 39, .external_lex_state = 9}, - [2786] = {.lex_state = 39, .external_lex_state = 11}, - [2787] = {.lex_state = 39, .external_lex_state = 9}, - [2788] = {.lex_state = 39, .external_lex_state = 9}, - [2789] = {.lex_state = 39, .external_lex_state = 12}, + [2782] = {.lex_state = 39, .external_lex_state = 11}, + [2783] = {.lex_state = 39, .external_lex_state = 11}, + [2784] = {.lex_state = 39, .external_lex_state = 11}, + [2785] = {.lex_state = 39, .external_lex_state = 10}, + [2786] = {.lex_state = 39, .external_lex_state = 10}, + [2787] = {.lex_state = 39, .external_lex_state = 12}, + [2788] = {.lex_state = 39, .external_lex_state = 12}, + [2789] = {.lex_state = 39, .external_lex_state = 10}, [2790] = {.lex_state = 39, .external_lex_state = 10}, - [2791] = {.lex_state = 39, .external_lex_state = 9}, - [2792] = {.lex_state = 39, .external_lex_state = 9}, - [2793] = {.lex_state = 39, .external_lex_state = 12}, - [2794] = {.lex_state = 39, .external_lex_state = 9}, - [2795] = {.lex_state = 39, .external_lex_state = 11}, + [2791] = {.lex_state = 39, .external_lex_state = 12}, + [2792] = {.lex_state = 39, .external_lex_state = 10}, + [2793] = {.lex_state = 39, .external_lex_state = 10}, + [2794] = {.lex_state = 39, .external_lex_state = 12}, + [2795] = {.lex_state = 39, .external_lex_state = 10}, [2796] = {.lex_state = 39, .external_lex_state = 11}, [2797] = {.lex_state = 39, .external_lex_state = 12}, - [2798] = {.lex_state = 39, .external_lex_state = 12}, - [2799] = {.lex_state = 39, .external_lex_state = 11}, - [2800] = {.lex_state = 39, .external_lex_state = 11}, - [2801] = {.lex_state = 39, .external_lex_state = 11}, - [2802] = {.lex_state = 39, .external_lex_state = 11}, - [2803] = {.lex_state = 39, .external_lex_state = 10}, - [2804] = {.lex_state = 39, .external_lex_state = 12}, - [2805] = {.lex_state = 39, .external_lex_state = 9}, - [2806] = {.lex_state = 39, .external_lex_state = 11}, - [2807] = {.lex_state = 39, .external_lex_state = 11}, - [2808] = {.lex_state = 39, .external_lex_state = 9}, - [2809] = {.lex_state = 39, .external_lex_state = 10}, - [2810] = {.lex_state = 3, .external_lex_state = 10}, - [2811] = {.lex_state = 39, .external_lex_state = 12}, - [2812] = {.lex_state = 39, .external_lex_state = 10}, + [2798] = {.lex_state = 39, .external_lex_state = 11}, + [2799] = {.lex_state = 39, .external_lex_state = 9}, + [2800] = {.lex_state = 39, .external_lex_state = 9}, + [2801] = {.lex_state = 39, .external_lex_state = 9}, + [2802] = {.lex_state = 39, .external_lex_state = 12}, + [2803] = {.lex_state = 39, .external_lex_state = 11}, + [2804] = {.lex_state = 39, .external_lex_state = 9}, + [2805] = {.lex_state = 39, .external_lex_state = 12}, + [2806] = {.lex_state = 39, .external_lex_state = 9}, + [2807] = {.lex_state = 39, .external_lex_state = 9}, + [2808] = {.lex_state = 39, .external_lex_state = 11}, + [2809] = {.lex_state = 3, .external_lex_state = 10}, + [2810] = {.lex_state = 39, .external_lex_state = 11}, + [2811] = {.lex_state = 39, .external_lex_state = 11}, + [2812] = {.lex_state = 39, .external_lex_state = 9}, [2813] = {.lex_state = 39, .external_lex_state = 12}, - [2814] = {.lex_state = 39, .external_lex_state = 9}, - [2815] = {.lex_state = 39, .external_lex_state = 11}, - [2816] = {.lex_state = 39, .external_lex_state = 10}, - [2817] = {.lex_state = 39, .external_lex_state = 10}, - [2818] = {.lex_state = 39, .external_lex_state = 10}, - [2819] = {.lex_state = 39, .external_lex_state = 10}, - [2820] = {.lex_state = 3, .external_lex_state = 10}, - [2821] = {.lex_state = 39, .external_lex_state = 11}, - [2822] = {.lex_state = 3, .external_lex_state = 10}, - [2823] = {.lex_state = 39, .external_lex_state = 10}, - [2824] = {.lex_state = 39, .external_lex_state = 12}, - [2825] = {.lex_state = 39, .external_lex_state = 9}, + [2814] = {.lex_state = 39, .external_lex_state = 10}, + [2815] = {.lex_state = 39, .external_lex_state = 9}, + [2816] = {.lex_state = 39, .external_lex_state = 12}, + [2817] = {.lex_state = 39, .external_lex_state = 9}, + [2818] = {.lex_state = 39, .external_lex_state = 11}, + [2819] = {.lex_state = 39, .external_lex_state = 11}, + [2820] = {.lex_state = 39, .external_lex_state = 9}, + [2821] = {.lex_state = 39, .external_lex_state = 10}, + [2822] = {.lex_state = 39, .external_lex_state = 10}, + [2823] = {.lex_state = 39, .external_lex_state = 11}, + [2824] = {.lex_state = 39, .external_lex_state = 9}, + [2825] = {.lex_state = 39, .external_lex_state = 11}, [2826] = {.lex_state = 39, .external_lex_state = 11}, - [2827] = {.lex_state = 39, .external_lex_state = 9}, - [2828] = {.lex_state = 39, .external_lex_state = 11}, - [2829] = {.lex_state = 3, .external_lex_state = 10}, - [2830] = {.lex_state = 39, .external_lex_state = 11}, + [2827] = {.lex_state = 39, .external_lex_state = 12}, + [2828] = {.lex_state = 39, .external_lex_state = 9}, + [2829] = {.lex_state = 39, .external_lex_state = 11}, + [2830] = {.lex_state = 39, .external_lex_state = 10}, [2831] = {.lex_state = 39, .external_lex_state = 10}, - [2832] = {.lex_state = 39, .external_lex_state = 9}, - [2833] = {.lex_state = 39, .external_lex_state = 12}, - [2834] = {.lex_state = 39, .external_lex_state = 11}, - [2835] = {.lex_state = 39, .external_lex_state = 9}, - [2836] = {.lex_state = 39, .external_lex_state = 11}, - [2837] = {.lex_state = 39, .external_lex_state = 12}, - [2838] = {.lex_state = 39, .external_lex_state = 12}, + [2832] = {.lex_state = 39, .external_lex_state = 11}, + [2833] = {.lex_state = 39, .external_lex_state = 9}, + [2834] = {.lex_state = 39, .external_lex_state = 12}, + [2835] = {.lex_state = 39, .external_lex_state = 10}, + [2836] = {.lex_state = 39, .external_lex_state = 12}, + [2837] = {.lex_state = 39, .external_lex_state = 9}, + [2838] = {.lex_state = 39, .external_lex_state = 11}, [2839] = {.lex_state = 39, .external_lex_state = 11}, - [2840] = {.lex_state = 39, .external_lex_state = 10}, - [2841] = {.lex_state = 39, .external_lex_state = 12}, + [2840] = {.lex_state = 39, .external_lex_state = 12}, + [2841] = {.lex_state = 39, .external_lex_state = 9}, [2842] = {.lex_state = 39, .external_lex_state = 10}, - [2843] = {.lex_state = 39, .external_lex_state = 11}, - [2844] = {.lex_state = 39, .external_lex_state = 10}, - [2845] = {.lex_state = 39, .external_lex_state = 12}, - [2846] = {.lex_state = 39, .external_lex_state = 11}, + [2843] = {.lex_state = 39, .external_lex_state = 10}, + [2844] = {.lex_state = 39, .external_lex_state = 11}, + [2845] = {.lex_state = 39, .external_lex_state = 11}, + [2846] = {.lex_state = 39, .external_lex_state = 10}, [2847] = {.lex_state = 39, .external_lex_state = 11}, - [2848] = {.lex_state = 39, .external_lex_state = 10}, - [2849] = {.lex_state = 39, .external_lex_state = 11}, - [2850] = {.lex_state = 39, .external_lex_state = 12}, - [2851] = {.lex_state = 39, .external_lex_state = 10}, - [2852] = {.lex_state = 39, .external_lex_state = 12}, - [2853] = {.lex_state = 39, .external_lex_state = 9}, - [2854] = {.lex_state = 39, .external_lex_state = 11}, - [2855] = {.lex_state = 39, .external_lex_state = 10}, + [2848] = {.lex_state = 39, .external_lex_state = 12}, + [2849] = {.lex_state = 39, .external_lex_state = 10}, + [2850] = {.lex_state = 39, .external_lex_state = 9}, + [2851] = {.lex_state = 39, .external_lex_state = 12}, + [2852] = {.lex_state = 39, .external_lex_state = 10}, + [2853] = {.lex_state = 39, .external_lex_state = 12}, + [2854] = {.lex_state = 39, .external_lex_state = 12}, + [2855] = {.lex_state = 39, .external_lex_state = 11}, [2856] = {.lex_state = 39, .external_lex_state = 12}, - [2857] = {.lex_state = 39, .external_lex_state = 8}, - [2858] = {.lex_state = 39, .external_lex_state = 9}, - [2859] = {.lex_state = 39, .external_lex_state = 11}, - [2860] = {.lex_state = 39, .external_lex_state = 10}, + [2857] = {.lex_state = 3, .external_lex_state = 10}, + [2858] = {.lex_state = 39, .external_lex_state = 11}, + [2859] = {.lex_state = 39, .external_lex_state = 9}, + [2860] = {.lex_state = 3, .external_lex_state = 10}, [2861] = {.lex_state = 39, .external_lex_state = 11}, - [2862] = {.lex_state = 39, .external_lex_state = 11}, - [2863] = {.lex_state = 39, .external_lex_state = 11}, - [2864] = {.lex_state = 3, .external_lex_state = 10}, - [2865] = {.lex_state = 39, .external_lex_state = 12}, + [2862] = {.lex_state = 39, .external_lex_state = 12}, + [2863] = {.lex_state = 39, .external_lex_state = 10}, + [2864] = {.lex_state = 39, .external_lex_state = 11}, + [2865] = {.lex_state = 39, .external_lex_state = 11}, [2866] = {.lex_state = 39, .external_lex_state = 10}, - [2867] = {.lex_state = 39, .external_lex_state = 12}, - [2868] = {.lex_state = 39, .external_lex_state = 12}, - [2869] = {.lex_state = 39, .external_lex_state = 9}, - [2870] = {.lex_state = 39, .external_lex_state = 11}, - [2871] = {.lex_state = 39, .external_lex_state = 9}, - [2872] = {.lex_state = 39, .external_lex_state = 12}, - [2873] = {.lex_state = 39, .external_lex_state = 10}, + [2867] = {.lex_state = 39, .external_lex_state = 11}, + [2868] = {.lex_state = 39, .external_lex_state = 11}, + [2869] = {.lex_state = 3, .external_lex_state = 10}, + [2870] = {.lex_state = 39, .external_lex_state = 9}, + [2871] = {.lex_state = 39, .external_lex_state = 12}, + [2872] = {.lex_state = 39, .external_lex_state = 11}, + [2873] = {.lex_state = 39, .external_lex_state = 11}, [2874] = {.lex_state = 39, .external_lex_state = 11}, - [2875] = {.lex_state = 39, .external_lex_state = 12}, - [2876] = {.lex_state = 39, .external_lex_state = 10}, - [2877] = {.lex_state = 39, .external_lex_state = 11}, - [2878] = {.lex_state = 39, .external_lex_state = 9}, - [2879] = {.lex_state = 39, .external_lex_state = 12}, - [2880] = {.lex_state = 39, .external_lex_state = 9}, - [2881] = {.lex_state = 39, .external_lex_state = 12}, - [2882] = {.lex_state = 39, .external_lex_state = 10}, - [2883] = {.lex_state = 39, .external_lex_state = 11}, - [2884] = {.lex_state = 39, .external_lex_state = 10}, - [2885] = {.lex_state = 39, .external_lex_state = 10}, - [2886] = {.lex_state = 39, .external_lex_state = 10}, + [2875] = {.lex_state = 39, .external_lex_state = 11}, + [2876] = {.lex_state = 39, .external_lex_state = 9}, + [2877] = {.lex_state = 39, .external_lex_state = 9}, + [2878] = {.lex_state = 39, .external_lex_state = 10}, + [2879] = {.lex_state = 39, .external_lex_state = 10}, + [2880] = {.lex_state = 39, .external_lex_state = 11}, + [2881] = {.lex_state = 39, .external_lex_state = 9}, + [2882] = {.lex_state = 39, .external_lex_state = 9}, + [2883] = {.lex_state = 39, .external_lex_state = 12}, + [2884] = {.lex_state = 39, .external_lex_state = 11}, + [2885] = {.lex_state = 39, .external_lex_state = 11}, + [2886] = {.lex_state = 39, .external_lex_state = 11}, [2887] = {.lex_state = 39, .external_lex_state = 10}, - [2888] = {.lex_state = 39, .external_lex_state = 10}, + [2888] = {.lex_state = 39, .external_lex_state = 12}, [2889] = {.lex_state = 39, .external_lex_state = 10}, - [2890] = {.lex_state = 39, .external_lex_state = 11}, - [2891] = {.lex_state = 39, .external_lex_state = 10}, + [2890] = {.lex_state = 39, .external_lex_state = 9}, + [2891] = {.lex_state = 39, .external_lex_state = 11}, [2892] = {.lex_state = 39, .external_lex_state = 10}, - [2893] = {.lex_state = 39, .external_lex_state = 10}, + [2893] = {.lex_state = 39, .external_lex_state = 12}, [2894] = {.lex_state = 39, .external_lex_state = 10}, [2895] = {.lex_state = 39, .external_lex_state = 10}, - [2896] = {.lex_state = 39, .external_lex_state = 10}, - [2897] = {.lex_state = 39, .external_lex_state = 11}, + [2896] = {.lex_state = 39, .external_lex_state = 11}, + [2897] = {.lex_state = 39, .external_lex_state = 12}, [2898] = {.lex_state = 39, .external_lex_state = 11}, [2899] = {.lex_state = 39, .external_lex_state = 11}, - [2900] = {.lex_state = 39, .external_lex_state = 11}, - [2901] = {.lex_state = 39, .external_lex_state = 9}, + [2900] = {.lex_state = 39, .external_lex_state = 10}, + [2901] = {.lex_state = 39, .external_lex_state = 8}, [2902] = {.lex_state = 39, .external_lex_state = 10}, - [2903] = {.lex_state = 39, .external_lex_state = 10}, - [2904] = {.lex_state = 39, .external_lex_state = 2}, - [2905] = {.lex_state = 39, .external_lex_state = 9}, - [2906] = {.lex_state = 39, .external_lex_state = 11}, - [2907] = {.lex_state = 39, .external_lex_state = 12}, - [2908] = {.lex_state = 39, .external_lex_state = 10}, + [2903] = {.lex_state = 39, .external_lex_state = 12}, + [2904] = {.lex_state = 39, .external_lex_state = 10}, + [2905] = {.lex_state = 39, .external_lex_state = 10}, + [2906] = {.lex_state = 39, .external_lex_state = 10}, + [2907] = {.lex_state = 39, .external_lex_state = 10}, + [2908] = {.lex_state = 39, .external_lex_state = 12}, [2909] = {.lex_state = 39, .external_lex_state = 10}, - [2910] = {.lex_state = 39, .external_lex_state = 9}, - [2911] = {.lex_state = 39, .external_lex_state = 9}, - [2912] = {.lex_state = 39, .external_lex_state = 9}, - [2913] = {.lex_state = 39, .external_lex_state = 9}, + [2910] = {.lex_state = 3, .external_lex_state = 10}, + [2911] = {.lex_state = 39, .external_lex_state = 10}, + [2912] = {.lex_state = 39, .external_lex_state = 11}, + [2913] = {.lex_state = 39, .external_lex_state = 10}, [2914] = {.lex_state = 39, .external_lex_state = 10}, - [2915] = {.lex_state = 39, .external_lex_state = 2}, - [2916] = {.lex_state = 39, .external_lex_state = 9}, - [2917] = {.lex_state = 39, .external_lex_state = 10}, + [2915] = {.lex_state = 3, .external_lex_state = 10}, + [2916] = {.lex_state = 39, .external_lex_state = 12}, + [2917] = {.lex_state = 39, .external_lex_state = 8}, [2918] = {.lex_state = 39, .external_lex_state = 9}, - [2919] = {.lex_state = 39, .external_lex_state = 10}, - [2920] = {.lex_state = 39, .external_lex_state = 11}, + [2919] = {.lex_state = 39, .external_lex_state = 2}, + [2920] = {.lex_state = 39, .external_lex_state = 9}, [2921] = {.lex_state = 39, .external_lex_state = 9}, - [2922] = {.lex_state = 39, .external_lex_state = 8}, - [2923] = {.lex_state = 39, .external_lex_state = 9}, - [2924] = {.lex_state = 39, .external_lex_state = 8}, - [2925] = {.lex_state = 39, .external_lex_state = 10}, + [2922] = {.lex_state = 39, .external_lex_state = 2}, + [2923] = {.lex_state = 39, .external_lex_state = 10}, + [2924] = {.lex_state = 39, .external_lex_state = 9}, + [2925] = {.lex_state = 39, .external_lex_state = 9}, [2926] = {.lex_state = 39, .external_lex_state = 10}, - [2927] = {.lex_state = 39, .external_lex_state = 9}, + [2927] = {.lex_state = 39, .external_lex_state = 10}, [2928] = {.lex_state = 39, .external_lex_state = 9}, [2929] = {.lex_state = 39, .external_lex_state = 9}, - [2930] = {.lex_state = 39, .external_lex_state = 11}, - [2931] = {.lex_state = 39, .external_lex_state = 9}, + [2930] = {.lex_state = 39, .external_lex_state = 10}, + [2931] = {.lex_state = 39, .external_lex_state = 10}, [2932] = {.lex_state = 39, .external_lex_state = 10}, - [2933] = {.lex_state = 39, .external_lex_state = 10}, + [2933] = {.lex_state = 39, .external_lex_state = 9}, [2934] = {.lex_state = 39, .external_lex_state = 9}, [2935] = {.lex_state = 39, .external_lex_state = 9}, [2936] = {.lex_state = 39, .external_lex_state = 9}, - [2937] = {.lex_state = 39, .external_lex_state = 9}, - [2938] = {.lex_state = 39, .external_lex_state = 9}, - [2939] = {.lex_state = 39, .external_lex_state = 9}, - [2940] = {.lex_state = 39, .external_lex_state = 9}, - [2941] = {.lex_state = 39, .external_lex_state = 9}, + [2937] = {.lex_state = 39, .external_lex_state = 11}, + [2938] = {.lex_state = 39, .external_lex_state = 10}, + [2939] = {.lex_state = 39, .external_lex_state = 10}, + [2940] = {.lex_state = 39, .external_lex_state = 10}, + [2941] = {.lex_state = 39, .external_lex_state = 12}, [2942] = {.lex_state = 39, .external_lex_state = 10}, - [2943] = {.lex_state = 39, .external_lex_state = 2}, - [2944] = {.lex_state = 39, .external_lex_state = 10}, + [2943] = {.lex_state = 39, .external_lex_state = 10}, + [2944] = {.lex_state = 39, .external_lex_state = 9}, [2945] = {.lex_state = 39, .external_lex_state = 9}, [2946] = {.lex_state = 39, .external_lex_state = 11}, - [2947] = {.lex_state = 39, .external_lex_state = 2}, + [2947] = {.lex_state = 39, .external_lex_state = 8}, [2948] = {.lex_state = 39, .external_lex_state = 9}, [2949] = {.lex_state = 39, .external_lex_state = 9}, [2950] = {.lex_state = 39, .external_lex_state = 10}, [2951] = {.lex_state = 39, .external_lex_state = 10}, - [2952] = {.lex_state = 39, .external_lex_state = 10}, - [2953] = {.lex_state = 39, .external_lex_state = 10}, - [2954] = {.lex_state = 39, .external_lex_state = 10}, + [2952] = {.lex_state = 39, .external_lex_state = 9}, + [2953] = {.lex_state = 39, .external_lex_state = 9}, + [2954] = {.lex_state = 39, .external_lex_state = 11}, [2955] = {.lex_state = 39, .external_lex_state = 9}, [2956] = {.lex_state = 39, .external_lex_state = 9}, [2957] = {.lex_state = 39, .external_lex_state = 9}, @@ -10876,238 +10914,238 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2960] = {.lex_state = 39, .external_lex_state = 9}, [2961] = {.lex_state = 39, .external_lex_state = 9}, [2962] = {.lex_state = 39, .external_lex_state = 9}, - [2963] = {.lex_state = 39, .external_lex_state = 9}, - [2964] = {.lex_state = 39, .external_lex_state = 10}, + [2963] = {.lex_state = 39, .external_lex_state = 10}, + [2964] = {.lex_state = 39, .external_lex_state = 2}, [2965] = {.lex_state = 39, .external_lex_state = 9}, - [2966] = {.lex_state = 39, .external_lex_state = 9}, - [2967] = {.lex_state = 39, .external_lex_state = 12}, + [2966] = {.lex_state = 39, .external_lex_state = 11}, + [2967] = {.lex_state = 39, .external_lex_state = 10}, [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 = 12}, + [2969] = {.lex_state = 39, .external_lex_state = 10}, + [2970] = {.lex_state = 39, .external_lex_state = 10}, + [2971] = {.lex_state = 39, .external_lex_state = 10}, [2972] = {.lex_state = 39, .external_lex_state = 9}, - [2973] = {.lex_state = 39, .external_lex_state = 10}, - [2974] = {.lex_state = 39, .external_lex_state = 10}, - [2975] = {.lex_state = 39, .external_lex_state = 10}, - [2976] = {.lex_state = 39, .external_lex_state = 10}, - [2977] = {.lex_state = 39, .external_lex_state = 11}, + [2973] = {.lex_state = 39, .external_lex_state = 9}, + [2974] = {.lex_state = 39, .external_lex_state = 9}, + [2975] = {.lex_state = 39, .external_lex_state = 2}, + [2976] = {.lex_state = 39, .external_lex_state = 9}, + [2977] = {.lex_state = 39, .external_lex_state = 9}, [2978] = {.lex_state = 39, .external_lex_state = 9}, - [2979] = {.lex_state = 39, .external_lex_state = 8}, + [2979] = {.lex_state = 39, .external_lex_state = 9}, [2980] = {.lex_state = 39, .external_lex_state = 9}, [2981] = {.lex_state = 39, .external_lex_state = 10}, [2982] = {.lex_state = 39, .external_lex_state = 9}, - [2983] = {.lex_state = 23, .external_lex_state = 9}, + [2983] = {.lex_state = 39, .external_lex_state = 9}, [2984] = {.lex_state = 39, .external_lex_state = 9}, - [2985] = {.lex_state = 68, .external_lex_state = 9}, + [2985] = {.lex_state = 39, .external_lex_state = 9}, [2986] = {.lex_state = 39, .external_lex_state = 9}, - [2987] = {.lex_state = 39, .external_lex_state = 8}, - [2988] = {.lex_state = 39, .external_lex_state = 9}, - [2989] = {.lex_state = 39, .external_lex_state = 10}, + [2987] = {.lex_state = 39, .external_lex_state = 10}, + [2988] = {.lex_state = 39, .external_lex_state = 10}, + [2989] = {.lex_state = 39, .external_lex_state = 11}, [2990] = {.lex_state = 39, .external_lex_state = 9}, - [2991] = {.lex_state = 68, .external_lex_state = 9}, - [2992] = {.lex_state = 39, .external_lex_state = 12}, - [2993] = {.lex_state = 39, .external_lex_state = 11}, - [2994] = {.lex_state = 39, .external_lex_state = 10}, + [2991] = {.lex_state = 39, .external_lex_state = 12}, + [2992] = {.lex_state = 39, .external_lex_state = 9}, + [2993] = {.lex_state = 39, .external_lex_state = 9}, + [2994] = {.lex_state = 39, .external_lex_state = 9}, [2995] = {.lex_state = 39, .external_lex_state = 9}, - [2996] = {.lex_state = 39, .external_lex_state = 10}, - [2997] = {.lex_state = 39, .external_lex_state = 9}, - [2998] = {.lex_state = 39, .external_lex_state = 12}, - [2999] = {.lex_state = 39, .external_lex_state = 9}, + [2996] = {.lex_state = 39, .external_lex_state = 9}, + [2997] = {.lex_state = 39, .external_lex_state = 10}, + [2998] = {.lex_state = 39, .external_lex_state = 10}, + [2999] = {.lex_state = 39, .external_lex_state = 11}, [3000] = {.lex_state = 39, .external_lex_state = 10}, - [3001] = {.lex_state = 39, .external_lex_state = 10}, - [3002] = {.lex_state = 39, .external_lex_state = 9}, - [3003] = {.lex_state = 39, .external_lex_state = 11}, + [3001] = {.lex_state = 39, .external_lex_state = 9}, + [3002] = {.lex_state = 68, .external_lex_state = 9}, + [3003] = {.lex_state = 39, .external_lex_state = 10}, [3004] = {.lex_state = 39, .external_lex_state = 10}, - [3005] = {.lex_state = 39, .external_lex_state = 11}, - [3006] = {.lex_state = 39, .external_lex_state = 11}, - [3007] = {.lex_state = 39, .external_lex_state = 9}, - [3008] = {.lex_state = 39, .external_lex_state = 10}, + [3005] = {.lex_state = 39, .external_lex_state = 8}, + [3006] = {.lex_state = 39, .external_lex_state = 10}, + [3007] = {.lex_state = 39, .external_lex_state = 10}, + [3008] = {.lex_state = 39, .external_lex_state = 9}, [3009] = {.lex_state = 39, .external_lex_state = 9}, - [3010] = {.lex_state = 39, .external_lex_state = 10}, - [3011] = {.lex_state = 39, .external_lex_state = 10}, - [3012] = {.lex_state = 39, .external_lex_state = 9}, - [3013] = {.lex_state = 68, .external_lex_state = 9}, + [3010] = {.lex_state = 39, .external_lex_state = 12}, + [3011] = {.lex_state = 39, .external_lex_state = 12}, + [3012] = {.lex_state = 39, .external_lex_state = 8}, + [3013] = {.lex_state = 39, .external_lex_state = 12}, [3014] = {.lex_state = 39, .external_lex_state = 10}, - [3015] = {.lex_state = 39, .external_lex_state = 10}, - [3016] = {.lex_state = 39, .external_lex_state = 8}, - [3017] = {.lex_state = 39, .external_lex_state = 12}, - [3018] = {.lex_state = 39, .external_lex_state = 12}, - [3019] = {.lex_state = 39, .external_lex_state = 9}, + [3015] = {.lex_state = 39, .external_lex_state = 12}, + [3016] = {.lex_state = 39, .external_lex_state = 9}, + [3017] = {.lex_state = 39, .external_lex_state = 9}, + [3018] = {.lex_state = 39, .external_lex_state = 9}, + [3019] = {.lex_state = 68, .external_lex_state = 9}, [3020] = {.lex_state = 39, .external_lex_state = 10}, - [3021] = {.lex_state = 39, .external_lex_state = 12}, - [3022] = {.lex_state = 39, .external_lex_state = 12}, - [3023] = {.lex_state = 39, .external_lex_state = 10}, + [3021] = {.lex_state = 39, .external_lex_state = 10}, + [3022] = {.lex_state = 39, .external_lex_state = 10}, + [3023] = {.lex_state = 39, .external_lex_state = 9}, [3024] = {.lex_state = 39, .external_lex_state = 9}, - [3025] = {.lex_state = 39, .external_lex_state = 10}, + [3025] = {.lex_state = 39, .external_lex_state = 11}, [3026] = {.lex_state = 39, .external_lex_state = 10}, - [3027] = {.lex_state = 39, .external_lex_state = 10}, - [3028] = {.lex_state = 39, .external_lex_state = 9}, - [3029] = {.lex_state = 39, .external_lex_state = 10}, - [3030] = {.lex_state = 39, .external_lex_state = 11}, - [3031] = {.lex_state = 39, .external_lex_state = 9}, + [3027] = {.lex_state = 39, .external_lex_state = 12}, + [3028] = {.lex_state = 39, .external_lex_state = 10}, + [3029] = {.lex_state = 39, .external_lex_state = 9}, + [3030] = {.lex_state = 39, .external_lex_state = 10}, + [3031] = {.lex_state = 68, .external_lex_state = 9}, [3032] = {.lex_state = 39, .external_lex_state = 9}, [3033] = {.lex_state = 39, .external_lex_state = 10}, - [3034] = {.lex_state = 39, .external_lex_state = 9}, + [3034] = {.lex_state = 39, .external_lex_state = 11}, [3035] = {.lex_state = 39, .external_lex_state = 10}, [3036] = {.lex_state = 39, .external_lex_state = 9}, [3037] = {.lex_state = 39, .external_lex_state = 9}, - [3038] = {.lex_state = 68, .external_lex_state = 9}, - [3039] = {.lex_state = 39, .external_lex_state = 10}, + [3038] = {.lex_state = 39, .external_lex_state = 11}, + [3039] = {.lex_state = 39, .external_lex_state = 12}, [3040] = {.lex_state = 39, .external_lex_state = 9}, - [3041] = {.lex_state = 39, .external_lex_state = 8}, - [3042] = {.lex_state = 39, .external_lex_state = 9}, + [3041] = {.lex_state = 39, .external_lex_state = 9}, + [3042] = {.lex_state = 39, .external_lex_state = 10}, [3043] = {.lex_state = 39, .external_lex_state = 10}, [3044] = {.lex_state = 39, .external_lex_state = 9}, - [3045] = {.lex_state = 39, .external_lex_state = 10}, - [3046] = {.lex_state = 39, .external_lex_state = 12}, - [3047] = {.lex_state = 39, .external_lex_state = 9}, - [3048] = {.lex_state = 39, .external_lex_state = 9}, + [3045] = {.lex_state = 39, .external_lex_state = 9}, + [3046] = {.lex_state = 39, .external_lex_state = 9}, + [3047] = {.lex_state = 39, .external_lex_state = 11}, + [3048] = {.lex_state = 39, .external_lex_state = 10}, [3049] = {.lex_state = 39, .external_lex_state = 9}, - [3050] = {.lex_state = 39, .external_lex_state = 10}, - [3051] = {.lex_state = 39, .external_lex_state = 10}, - [3052] = {.lex_state = 39, .external_lex_state = 11}, + [3050] = {.lex_state = 39, .external_lex_state = 9}, + [3051] = {.lex_state = 39, .external_lex_state = 9}, + [3052] = {.lex_state = 39, .external_lex_state = 10}, [3053] = {.lex_state = 39, .external_lex_state = 10}, - [3054] = {.lex_state = 39, .external_lex_state = 11}, - [3055] = {.lex_state = 39, .external_lex_state = 9}, - [3056] = {.lex_state = 39, .external_lex_state = 9}, + [3054] = {.lex_state = 39, .external_lex_state = 9}, + [3055] = {.lex_state = 39, .external_lex_state = 10}, + [3056] = {.lex_state = 68, .external_lex_state = 9}, [3057] = {.lex_state = 39, .external_lex_state = 9}, - [3058] = {.lex_state = 39, .external_lex_state = 9}, - [3059] = {.lex_state = 68, .external_lex_state = 9}, - [3060] = {.lex_state = 39, .external_lex_state = 8}, - [3061] = {.lex_state = 39, .external_lex_state = 10}, + [3058] = {.lex_state = 39, .external_lex_state = 10}, + [3059] = {.lex_state = 39, .external_lex_state = 9}, + [3060] = {.lex_state = 39, .external_lex_state = 9}, + [3061] = {.lex_state = 39, .external_lex_state = 11}, [3062] = {.lex_state = 39, .external_lex_state = 9}, [3063] = {.lex_state = 39, .external_lex_state = 9}, - [3064] = {.lex_state = 39, .external_lex_state = 9}, + [3064] = {.lex_state = 39, .external_lex_state = 12}, [3065] = {.lex_state = 39, .external_lex_state = 9}, [3066] = {.lex_state = 39, .external_lex_state = 9}, - [3067] = {.lex_state = 39, .external_lex_state = 12}, - [3068] = {.lex_state = 39, .external_lex_state = 9}, - [3069] = {.lex_state = 39, .external_lex_state = 9}, - [3070] = {.lex_state = 39, .external_lex_state = 9}, + [3067] = {.lex_state = 39, .external_lex_state = 9}, + [3068] = {.lex_state = 39, .external_lex_state = 11}, + [3069] = {.lex_state = 39, .external_lex_state = 11}, + [3070] = {.lex_state = 39, .external_lex_state = 10}, [3071] = {.lex_state = 39, .external_lex_state = 9}, - [3072] = {.lex_state = 39, .external_lex_state = 12}, - [3073] = {.lex_state = 39, .external_lex_state = 9}, - [3074] = {.lex_state = 39, .external_lex_state = 9}, - [3075] = {.lex_state = 39, .external_lex_state = 11}, + [3072] = {.lex_state = 39, .external_lex_state = 10}, + [3073] = {.lex_state = 39, .external_lex_state = 12}, + [3074] = {.lex_state = 39, .external_lex_state = 8}, + [3075] = {.lex_state = 39, .external_lex_state = 10}, [3076] = {.lex_state = 39, .external_lex_state = 10}, - [3077] = {.lex_state = 39, .external_lex_state = 8}, - [3078] = {.lex_state = 39, .external_lex_state = 10}, + [3077] = {.lex_state = 68, .external_lex_state = 9}, + [3078] = {.lex_state = 39, .external_lex_state = 12}, [3079] = {.lex_state = 39, .external_lex_state = 9}, - [3080] = {.lex_state = 68, .external_lex_state = 9}, - [3081] = {.lex_state = 39, .external_lex_state = 9}, + [3080] = {.lex_state = 39, .external_lex_state = 12}, + [3081] = {.lex_state = 39, .external_lex_state = 10}, [3082] = {.lex_state = 39, .external_lex_state = 9}, - [3083] = {.lex_state = 39, .external_lex_state = 10}, - [3084] = {.lex_state = 39, .external_lex_state = 11}, - [3085] = {.lex_state = 39, .external_lex_state = 10}, - [3086] = {.lex_state = 39, .external_lex_state = 10}, - [3087] = {.lex_state = 39, .external_lex_state = 12}, - [3088] = {.lex_state = 39, .external_lex_state = 12}, - [3089] = {.lex_state = 39, .external_lex_state = 8}, + [3083] = {.lex_state = 39, .external_lex_state = 9}, + [3084] = {.lex_state = 39, .external_lex_state = 8}, + [3085] = {.lex_state = 39, .external_lex_state = 12}, + [3086] = {.lex_state = 39, .external_lex_state = 8}, + [3087] = {.lex_state = 39, .external_lex_state = 9}, + [3088] = {.lex_state = 39, .external_lex_state = 10}, + [3089] = {.lex_state = 39, .external_lex_state = 9}, [3090] = {.lex_state = 39, .external_lex_state = 10}, [3091] = {.lex_state = 39, .external_lex_state = 9}, - [3092] = {.lex_state = 39, .external_lex_state = 9}, - [3093] = {.lex_state = 39, .external_lex_state = 8}, - [3094] = {.lex_state = 39, .external_lex_state = 10}, + [3092] = {.lex_state = 39, .external_lex_state = 11}, + [3093] = {.lex_state = 39, .external_lex_state = 9}, + [3094] = {.lex_state = 39, .external_lex_state = 9}, [3095] = {.lex_state = 39, .external_lex_state = 9}, [3096] = {.lex_state = 39, .external_lex_state = 9}, - [3097] = {.lex_state = 39, .external_lex_state = 10}, - [3098] = {.lex_state = 39, .external_lex_state = 9}, - [3099] = {.lex_state = 39, .external_lex_state = 10}, - [3100] = {.lex_state = 39, .external_lex_state = 11}, - [3101] = {.lex_state = 68, .external_lex_state = 9}, + [3097] = {.lex_state = 39, .external_lex_state = 9}, + [3098] = {.lex_state = 68, .external_lex_state = 9}, + [3099] = {.lex_state = 39, .external_lex_state = 8}, + [3100] = {.lex_state = 39, .external_lex_state = 9}, + [3101] = {.lex_state = 39, .external_lex_state = 9}, [3102] = {.lex_state = 39, .external_lex_state = 10}, [3103] = {.lex_state = 39, .external_lex_state = 9}, [3104] = {.lex_state = 39, .external_lex_state = 10}, - [3105] = {.lex_state = 39, .external_lex_state = 11}, - [3106] = {.lex_state = 39, .external_lex_state = 11}, - [3107] = {.lex_state = 39, .external_lex_state = 11}, - [3108] = {.lex_state = 39, .external_lex_state = 10}, - [3109] = {.lex_state = 39, .external_lex_state = 12}, - [3110] = {.lex_state = 39, .external_lex_state = 9}, + [3105] = {.lex_state = 39, .external_lex_state = 9}, + [3106] = {.lex_state = 39, .external_lex_state = 12}, + [3107] = {.lex_state = 39, .external_lex_state = 9}, + [3108] = {.lex_state = 39, .external_lex_state = 9}, + [3109] = {.lex_state = 39, .external_lex_state = 10}, + [3110] = {.lex_state = 39, .external_lex_state = 11}, [3111] = {.lex_state = 39, .external_lex_state = 10}, [3112] = {.lex_state = 39, .external_lex_state = 9}, - [3113] = {.lex_state = 39, .external_lex_state = 11}, - [3114] = {.lex_state = 39, .external_lex_state = 10}, - [3115] = {.lex_state = 39, .external_lex_state = 10}, - [3116] = {.lex_state = 39, .external_lex_state = 10}, - [3117] = {.lex_state = 39, .external_lex_state = 10}, + [3113] = {.lex_state = 39, .external_lex_state = 9}, + [3114] = {.lex_state = 39, .external_lex_state = 11}, + [3115] = {.lex_state = 39, .external_lex_state = 9}, + [3116] = {.lex_state = 39, .external_lex_state = 9}, + [3117] = {.lex_state = 39, .external_lex_state = 9}, [3118] = {.lex_state = 39, .external_lex_state = 9}, - [3119] = {.lex_state = 39, .external_lex_state = 10}, - [3120] = {.lex_state = 39, .external_lex_state = 10}, - [3121] = {.lex_state = 39, .external_lex_state = 8}, - [3122] = {.lex_state = 39, .external_lex_state = 9}, - [3123] = {.lex_state = 39, .external_lex_state = 9}, - [3124] = {.lex_state = 39, .external_lex_state = 8}, - [3125] = {.lex_state = 39, .external_lex_state = 8}, + [3119] = {.lex_state = 68, .external_lex_state = 9}, + [3120] = {.lex_state = 39, .external_lex_state = 8}, + [3121] = {.lex_state = 39, .external_lex_state = 10}, + [3122] = {.lex_state = 39, .external_lex_state = 11}, + [3123] = {.lex_state = 39, .external_lex_state = 10}, + [3124] = {.lex_state = 39, .external_lex_state = 10}, + [3125] = {.lex_state = 39, .external_lex_state = 10}, [3126] = {.lex_state = 39, .external_lex_state = 9}, - [3127] = {.lex_state = 39, .external_lex_state = 8}, - [3128] = {.lex_state = 39, .external_lex_state = 10}, - [3129] = {.lex_state = 39, .external_lex_state = 11}, + [3127] = {.lex_state = 39, .external_lex_state = 12}, + [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 = 9}, - [3133] = {.lex_state = 39, .external_lex_state = 9}, - [3134] = {.lex_state = 39, .external_lex_state = 9}, + [3131] = {.lex_state = 39, .external_lex_state = 10}, + [3132] = {.lex_state = 39, .external_lex_state = 10}, + [3133] = {.lex_state = 39, .external_lex_state = 10}, + [3134] = {.lex_state = 39, .external_lex_state = 10}, [3135] = {.lex_state = 39, .external_lex_state = 9}, - [3136] = {.lex_state = 39, .external_lex_state = 9}, - [3137] = {.lex_state = 39, .external_lex_state = 12}, - [3138] = {.lex_state = 39, .external_lex_state = 9}, - [3139] = {.lex_state = 39, .external_lex_state = 9}, - [3140] = {.lex_state = 39, .external_lex_state = 9}, - [3141] = {.lex_state = 39, .external_lex_state = 9}, - [3142] = {.lex_state = 39, .external_lex_state = 11}, - [3143] = {.lex_state = 39, .external_lex_state = 9}, - [3144] = {.lex_state = 39, .external_lex_state = 9}, + [3136] = {.lex_state = 39, .external_lex_state = 10}, + [3137] = {.lex_state = 39, .external_lex_state = 9}, + [3138] = {.lex_state = 39, .external_lex_state = 10}, + [3139] = {.lex_state = 39, .external_lex_state = 11}, + [3140] = {.lex_state = 39, .external_lex_state = 10}, + [3141] = {.lex_state = 39, .external_lex_state = 10}, + [3142] = {.lex_state = 39, .external_lex_state = 12}, + [3143] = {.lex_state = 39, .external_lex_state = 11}, + [3144] = {.lex_state = 39, .external_lex_state = 11}, [3145] = {.lex_state = 39, .external_lex_state = 10}, [3146] = {.lex_state = 39, .external_lex_state = 9}, - [3147] = {.lex_state = 39, .external_lex_state = 9}, - [3148] = {.lex_state = 39, .external_lex_state = 10}, - [3149] = {.lex_state = 39, .external_lex_state = 9}, - [3150] = {.lex_state = 39, .external_lex_state = 9}, + [3147] = {.lex_state = 39, .external_lex_state = 10}, + [3148] = {.lex_state = 39, .external_lex_state = 8}, + [3149] = {.lex_state = 39, .external_lex_state = 10}, + [3150] = {.lex_state = 39, .external_lex_state = 10}, [3151] = {.lex_state = 39, .external_lex_state = 9}, - [3152] = {.lex_state = 39, .external_lex_state = 9}, - [3153] = {.lex_state = 39, .external_lex_state = 9}, + [3152] = {.lex_state = 39, .external_lex_state = 10}, + [3153] = {.lex_state = 39, .external_lex_state = 10}, [3154] = {.lex_state = 39, .external_lex_state = 9}, - [3155] = {.lex_state = 39, .external_lex_state = 9}, - [3156] = {.lex_state = 39, .external_lex_state = 9}, - [3157] = {.lex_state = 39, .external_lex_state = 12}, - [3158] = {.lex_state = 39, .external_lex_state = 10}, - [3159] = {.lex_state = 39, .external_lex_state = 10}, - [3160] = {.lex_state = 39, .external_lex_state = 9}, + [3155] = {.lex_state = 39, .external_lex_state = 12}, + [3156] = {.lex_state = 39, .external_lex_state = 8}, + [3157] = {.lex_state = 39, .external_lex_state = 11}, + [3158] = {.lex_state = 39, .external_lex_state = 9}, + [3159] = {.lex_state = 39, .external_lex_state = 9}, + [3160] = {.lex_state = 39, .external_lex_state = 10}, [3161] = {.lex_state = 39, .external_lex_state = 9}, [3162] = {.lex_state = 39, .external_lex_state = 10}, [3163] = {.lex_state = 39, .external_lex_state = 9}, - [3164] = {.lex_state = 39, .external_lex_state = 9}, - [3165] = {.lex_state = 39, .external_lex_state = 8}, - [3166] = {.lex_state = 39, .external_lex_state = 9}, + [3164] = {.lex_state = 39, .external_lex_state = 10}, + [3165] = {.lex_state = 39, .external_lex_state = 9}, + [3166] = {.lex_state = 39, .external_lex_state = 12}, [3167] = {.lex_state = 39, .external_lex_state = 9}, - [3168] = {.lex_state = 68, .external_lex_state = 9}, + [3168] = {.lex_state = 39, .external_lex_state = 9}, [3169] = {.lex_state = 39, .external_lex_state = 9}, - [3170] = {.lex_state = 39, .external_lex_state = 10}, + [3170] = {.lex_state = 39, .external_lex_state = 9}, [3171] = {.lex_state = 39, .external_lex_state = 9}, [3172] = {.lex_state = 39, .external_lex_state = 9}, - [3173] = {.lex_state = 39, .external_lex_state = 9}, - [3174] = {.lex_state = 39, .external_lex_state = 10}, + [3173] = {.lex_state = 39, .external_lex_state = 8}, + [3174] = {.lex_state = 39, .external_lex_state = 9}, [3175] = {.lex_state = 39, .external_lex_state = 9}, - [3176] = {.lex_state = 39, .external_lex_state = 9}, + [3176] = {.lex_state = 39, .external_lex_state = 11}, [3177] = {.lex_state = 39, .external_lex_state = 9}, [3178] = {.lex_state = 39, .external_lex_state = 9}, [3179] = {.lex_state = 39, .external_lex_state = 9}, [3180] = {.lex_state = 39, .external_lex_state = 9}, [3181] = {.lex_state = 39, .external_lex_state = 9}, - [3182] = {.lex_state = 39, .external_lex_state = 10}, + [3182] = {.lex_state = 39, .external_lex_state = 9}, [3183] = {.lex_state = 39, .external_lex_state = 9}, [3184] = {.lex_state = 39, .external_lex_state = 9}, - [3185] = {.lex_state = 39, .external_lex_state = 12}, + [3185] = {.lex_state = 39, .external_lex_state = 10}, [3186] = {.lex_state = 39, .external_lex_state = 9}, - [3187] = {.lex_state = 39, .external_lex_state = 9}, + [3187] = {.lex_state = 39, .external_lex_state = 8}, [3188] = {.lex_state = 39, .external_lex_state = 9}, - [3189] = {.lex_state = 39, .external_lex_state = 9}, - [3190] = {.lex_state = 39, .external_lex_state = 9}, - [3191] = {.lex_state = 39, .external_lex_state = 9}, + [3189] = {.lex_state = 39, .external_lex_state = 10}, + [3190] = {.lex_state = 39, .external_lex_state = 11}, + [3191] = {.lex_state = 68, .external_lex_state = 9}, [3192] = {.lex_state = 39, .external_lex_state = 9}, [3193] = {.lex_state = 39, .external_lex_state = 9}, - [3194] = {.lex_state = 39, .external_lex_state = 10}, + [3194] = {.lex_state = 39, .external_lex_state = 8}, [3195] = {.lex_state = 39, .external_lex_state = 9}, [3196] = {.lex_state = 39, .external_lex_state = 9}, [3197] = {.lex_state = 39, .external_lex_state = 9}, @@ -11118,81 +11156,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3202] = {.lex_state = 39, .external_lex_state = 9}, [3203] = {.lex_state = 39, .external_lex_state = 9}, [3204] = {.lex_state = 39, .external_lex_state = 9}, - [3205] = {.lex_state = 39, .external_lex_state = 10}, - [3206] = {.lex_state = 68, .external_lex_state = 9}, + [3205] = {.lex_state = 39, .external_lex_state = 9}, + [3206] = {.lex_state = 39, .external_lex_state = 11}, [3207] = {.lex_state = 39, .external_lex_state = 9}, [3208] = {.lex_state = 39, .external_lex_state = 9}, [3209] = {.lex_state = 39, .external_lex_state = 10}, - [3210] = {.lex_state = 39, .external_lex_state = 11}, + [3210] = {.lex_state = 39, .external_lex_state = 10}, [3211] = {.lex_state = 39, .external_lex_state = 9}, [3212] = {.lex_state = 39, .external_lex_state = 9}, - [3213] = {.lex_state = 39, .external_lex_state = 11}, - [3214] = {.lex_state = 39, .external_lex_state = 9}, + [3213] = {.lex_state = 39, .external_lex_state = 9}, + [3214] = {.lex_state = 39, .external_lex_state = 12}, [3215] = {.lex_state = 39, .external_lex_state = 9}, [3216] = {.lex_state = 39, .external_lex_state = 9}, - [3217] = {.lex_state = 39, .external_lex_state = 11}, - [3218] = {.lex_state = 39, .external_lex_state = 11}, - [3219] = {.lex_state = 39, .external_lex_state = 10}, - [3220] = {.lex_state = 39, .external_lex_state = 11}, - [3221] = {.lex_state = 39, .external_lex_state = 10}, - [3222] = {.lex_state = 39, .external_lex_state = 10}, + [3217] = {.lex_state = 39, .external_lex_state = 10}, + [3218] = {.lex_state = 39, .external_lex_state = 8}, + [3219] = {.lex_state = 39, .external_lex_state = 9}, + [3220] = {.lex_state = 39, .external_lex_state = 9}, + [3221] = {.lex_state = 39, .external_lex_state = 12}, + [3222] = {.lex_state = 39, .external_lex_state = 9}, [3223] = {.lex_state = 39, .external_lex_state = 9}, [3224] = {.lex_state = 39, .external_lex_state = 9}, [3225] = {.lex_state = 39, .external_lex_state = 9}, [3226] = {.lex_state = 39, .external_lex_state = 9}, - [3227] = {.lex_state = 39, .external_lex_state = 10}, - [3228] = {.lex_state = 39, .external_lex_state = 8}, + [3227] = {.lex_state = 39, .external_lex_state = 9}, + [3228] = {.lex_state = 39, .external_lex_state = 9}, [3229] = {.lex_state = 39, .external_lex_state = 9}, - [3230] = {.lex_state = 39, .external_lex_state = 9}, - [3231] = {.lex_state = 39, .external_lex_state = 10}, - [3232] = {.lex_state = 39, .external_lex_state = 10}, + [3230] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [3234] = {.lex_state = 39, .external_lex_state = 11}, + [3235] = {.lex_state = 39, .external_lex_state = 10}, [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 = 10}, - [3240] = {.lex_state = 39, .external_lex_state = 10}, - [3241] = {.lex_state = 39, .external_lex_state = 9}, - [3242] = {.lex_state = 39, .external_lex_state = 11}, + [3237] = {.lex_state = 23, .external_lex_state = 9}, + [3238] = {.lex_state = 39, .external_lex_state = 10}, + [3239] = {.lex_state = 39, .external_lex_state = 11}, + [3240] = {.lex_state = 39, .external_lex_state = 11}, + [3241] = {.lex_state = 68, .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 = 10}, + [3244] = {.lex_state = 39, .external_lex_state = 9}, [3245] = {.lex_state = 39, .external_lex_state = 8}, [3246] = {.lex_state = 39, .external_lex_state = 11}, - [3247] = {.lex_state = 39, .external_lex_state = 11}, - [3248] = {.lex_state = 39, .external_lex_state = 8}, - [3249] = {.lex_state = 39, .external_lex_state = 11}, + [3247] = {.lex_state = 39, .external_lex_state = 10}, + [3248] = {.lex_state = 39, .external_lex_state = 10}, + [3249] = {.lex_state = 39, .external_lex_state = 9}, [3250] = {.lex_state = 39, .external_lex_state = 9}, - [3251] = {.lex_state = 39, .external_lex_state = 8}, + [3251] = {.lex_state = 39, .external_lex_state = 9}, [3252] = {.lex_state = 39, .external_lex_state = 9}, - [3253] = {.lex_state = 39, .external_lex_state = 10}, + [3253] = {.lex_state = 39, .external_lex_state = 9}, [3254] = {.lex_state = 39, .external_lex_state = 9}, [3255] = {.lex_state = 39, .external_lex_state = 9}, - [3256] = {.lex_state = 39, .external_lex_state = 12}, + [3256] = {.lex_state = 39, .external_lex_state = 11}, [3257] = {.lex_state = 39, .external_lex_state = 10}, - [3258] = {.lex_state = 39, .external_lex_state = 9}, - [3259] = {.lex_state = 39, .external_lex_state = 8}, + [3258] = {.lex_state = 39, .external_lex_state = 10}, + [3259] = {.lex_state = 39, .external_lex_state = 10}, [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 = 10}, - [3264] = {.lex_state = 39, .external_lex_state = 9}, - [3265] = {.lex_state = 39, .external_lex_state = 9}, + [3263] = {.lex_state = 39, .external_lex_state = 9}, + [3264] = {.lex_state = 39, .external_lex_state = 12}, + [3265] = {.lex_state = 39, .external_lex_state = 8}, [3266] = {.lex_state = 39, .external_lex_state = 9}, - [3267] = {.lex_state = 39, .external_lex_state = 10}, - [3268] = {.lex_state = 39, .external_lex_state = 9}, - [3269] = {.lex_state = 39, .external_lex_state = 9}, - [3270] = {.lex_state = 39, .external_lex_state = 9}, - [3271] = {.lex_state = 39, .external_lex_state = 9}, - [3272] = {.lex_state = 39, .external_lex_state = 9}, - [3273] = {.lex_state = 39, .external_lex_state = 9}, - [3274] = {.lex_state = 39, .external_lex_state = 9}, + [3267] = {.lex_state = 39, .external_lex_state = 8}, + [3268] = {.lex_state = 39, .external_lex_state = 8}, + [3269] = {.lex_state = 39, .external_lex_state = 10}, + [3270] = {.lex_state = 39, .external_lex_state = 10}, + [3271] = {.lex_state = 39, .external_lex_state = 8}, + [3272] = {.lex_state = 39, .external_lex_state = 10}, + [3273] = {.lex_state = 39, .external_lex_state = 10}, + [3274] = {.lex_state = 39, .external_lex_state = 10}, [3275] = {.lex_state = 39, .external_lex_state = 9}, [3276] = {.lex_state = 39, .external_lex_state = 9}, [3277] = {.lex_state = 39, .external_lex_state = 9}, [3278] = {.lex_state = 39, .external_lex_state = 9}, - [3279] = {.lex_state = 39, .external_lex_state = 9}, + [3279] = {.lex_state = 39, .external_lex_state = 10}, [3280] = {.lex_state = 39, .external_lex_state = 9}, [3281] = {.lex_state = 39, .external_lex_state = 9}, [3282] = {.lex_state = 39, .external_lex_state = 9}, @@ -11209,6 +11247,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3293] = {.lex_state = 39, .external_lex_state = 9}, [3294] = {.lex_state = 39, .external_lex_state = 9}, [3295] = {.lex_state = 39, .external_lex_state = 9}, + [3296] = {.lex_state = 39, .external_lex_state = 9}, + [3297] = {.lex_state = 39, .external_lex_state = 9}, + [3298] = {.lex_state = 39, .external_lex_state = 9}, + [3299] = {.lex_state = 39, .external_lex_state = 9}, + [3300] = {.lex_state = 39, .external_lex_state = 9}, + [3301] = {.lex_state = 39, .external_lex_state = 9}, + [3302] = {.lex_state = 39, .external_lex_state = 9}, + [3303] = {.lex_state = 39, .external_lex_state = 9}, + [3304] = {.lex_state = 39, .external_lex_state = 9}, + [3305] = {.lex_state = 39, .external_lex_state = 9}, + [3306] = {.lex_state = 39, .external_lex_state = 9}, + [3307] = {.lex_state = 39, .external_lex_state = 9}, + [3308] = {.lex_state = 39, .external_lex_state = 9}, + [3309] = {.lex_state = 39, .external_lex_state = 9}, + [3310] = {.lex_state = 39, .external_lex_state = 9}, + [3311] = {.lex_state = 39, .external_lex_state = 9}, + [3312] = {.lex_state = 39, .external_lex_state = 9}, + [3313] = {.lex_state = 39, .external_lex_state = 9}, + [3314] = {.lex_state = 39, .external_lex_state = 9}, + [3315] = {.lex_state = 39, .external_lex_state = 9}, + [3316] = {.lex_state = 39, .external_lex_state = 9}, + [3317] = {.lex_state = 39, .external_lex_state = 9}, }; enum { @@ -11423,63 +11483,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(3166), + [sym_module] = STATE(3188), [sym__statement] = STATE(36), [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), [sym_schema_statement] = STATE(36), [sym_mixin_statement] = STATE(36), [sym_protocol_statement] = STATE(36), [sym_rule_statement] = STATE(36), [sym_check_statement] = STATE(36), [sym_decorated_definition] = STATE(36), - [sym_decorator] = STATE(2276), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2374), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2287), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2438), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2276), + [aux_sym_decorated_definition_repeat1] = STATE(2287), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11520,61 +11580,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [2] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(2989), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3007), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11613,63 +11673,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [3] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3094), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(40), + [sym__simple_statements] = STATE(40), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(40), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(40), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(40), + [sym_mixin_statement] = STATE(40), + [sym_protocol_statement] = STATE(40), + [sym_rule_statement] = STATE(40), + [sym_check_statement] = STATE(40), + [sym_decorated_definition] = STATE(40), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1444), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(40), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11704,67 +11764,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [4] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1814), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(40), + [sym__simple_statements] = STATE(40), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(40), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(40), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(40), + [sym_mixin_statement] = STATE(40), + [sym_protocol_statement] = STATE(40), + [sym_rule_statement] = STATE(40), + [sym_check_statement] = STATE(40), + [sym_decorated_definition] = STATE(40), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1752), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(40), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11803,63 +11863,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [5] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1808), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(40), + [sym__simple_statements] = STATE(40), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(40), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(40), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(40), + [sym_mixin_statement] = STATE(40), + [sym_protocol_statement] = STATE(40), + [sym_rule_statement] = STATE(40), + [sym_check_statement] = STATE(40), + [sym_decorated_definition] = STATE(40), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1750), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(40), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11900,61 +11960,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [6] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3205), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3270), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11995,61 +12055,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [7] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3240), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3125), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12090,61 +12150,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [8] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3253), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3274), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12183,63 +12243,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [9] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1185), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3279), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12274,67 +12334,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [10] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3039), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(40), + [sym__simple_statements] = STATE(40), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(40), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(40), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(40), + [sym_mixin_statement] = STATE(40), + [sym_protocol_statement] = STATE(40), + [sym_rule_statement] = STATE(40), + [sym_check_statement] = STATE(40), + [sym_decorated_definition] = STATE(40), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1701), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(40), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12369,67 +12429,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [11] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1797), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(40), + [sym__simple_statements] = STATE(40), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(40), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(40), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(40), + [sym_mixin_statement] = STATE(40), + [sym_protocol_statement] = STATE(40), + [sym_rule_statement] = STATE(40), + [sym_check_statement] = STATE(40), + [sym_decorated_definition] = STATE(40), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1230), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(40), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12468,63 +12528,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [12] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1731), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(40), + [sym__simple_statements] = STATE(40), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(40), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(40), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(40), + [sym_mixin_statement] = STATE(40), + [sym_protocol_statement] = STATE(40), + [sym_rule_statement] = STATE(40), + [sym_check_statement] = STATE(40), + [sym_decorated_definition] = STATE(40), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1698), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(40), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12559,67 +12619,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [13] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3000), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3136), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12658,63 +12718,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [14] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1794), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(40), + [sym__simple_statements] = STATE(40), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(40), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(40), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(40), + [sym_mixin_statement] = STATE(40), + [sym_protocol_statement] = STATE(40), + [sym_rule_statement] = STATE(40), + [sym_check_statement] = STATE(40), + [sym_decorated_definition] = STATE(40), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1693), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(40), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12755,61 +12815,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [15] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(2996), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3132), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12848,63 +12908,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [16] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1815), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3003), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12939,67 +12999,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [17] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1732), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3058), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13034,67 +13094,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [18] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3061), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3053), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13133,63 +13193,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [19] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1425), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3111), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13224,67 +13284,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [20] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3001), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3258), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13323,63 +13383,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [21] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3108), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1715), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13414,67 +13474,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, [22] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1675), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1704), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13513,63 +13573,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [23] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3117), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1223), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13604,67 +13664,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, [24] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1684), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3028), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13699,67 +13759,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [25] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3174), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1713), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13794,67 +13854,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, [26] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3221), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1700), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13889,67 +13949,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, [27] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3227), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3020), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13990,61 +14050,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [28] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3078), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3147), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14083,63 +14143,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [29] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3232), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(40), + [sym__simple_statements] = STATE(40), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(40), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(40), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(40), + [sym_mixin_statement] = STATE(40), + [sym_protocol_statement] = STATE(40), + [sym_rule_statement] = STATE(40), + [sym_check_statement] = STATE(40), + [sym_decorated_definition] = STATE(40), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1751), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(40), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14174,67 +14234,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [30] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1195), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1433), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14273,63 +14333,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [31] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1474), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3081), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14364,67 +14424,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [32] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(1734), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3153), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14459,67 +14519,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [33] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2275), - [sym_block] = STATE(3035), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1678), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14554,262 +14614,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, [34] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2276), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2374), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2276), - [ts_builtin_sym_end] = ACTIONS(77), - [sym_identifier] = ACTIONS(79), - [anon_sym_import] = ACTIONS(82), - [anon_sym_DOT] = ACTIONS(85), - [anon_sym_assert] = ACTIONS(88), - [anon_sym_if] = ACTIONS(91), - [anon_sym_LPAREN] = ACTIONS(94), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_lambda] = ACTIONS(100), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_all] = ACTIONS(106), - [anon_sym_any] = ACTIONS(106), - [anon_sym_filter] = ACTIONS(106), - [anon_sym_map] = ACTIONS(106), - [anon_sym_type] = ACTIONS(109), - [anon_sym_schema] = ACTIONS(112), - [anon_sym_mixin] = ACTIONS(115), - [anon_sym_protocol] = ACTIONS(118), - [anon_sym_rule] = ACTIONS(121), - [anon_sym_check] = ACTIONS(124), - [anon_sym_AT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(130), - [anon_sym_not] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(136), - [sym_integer] = ACTIONS(142), - [sym_float] = ACTIONS(145), - [sym_true] = ACTIONS(142), - [sym_false] = ACTIONS(142), - [sym_none] = ACTIONS(142), - [sym_undefined] = ACTIONS(142), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(148), - }, - [35] = { - [sym__statement] = STATE(35), - [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(35), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(35), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(35), - [sym_mixin_statement] = STATE(35), - [sym_protocol_statement] = STATE(35), - [sym_rule_statement] = STATE(35), - [sym_check_statement] = STATE(35), - [sym_decorated_definition] = STATE(35), - [sym_decorator] = STATE(2275), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(35), - [aux_sym_decorated_definition_repeat1] = STATE(2275), - [sym_identifier] = ACTIONS(79), - [anon_sym_import] = ACTIONS(82), - [anon_sym_DOT] = ACTIONS(85), - [anon_sym_assert] = ACTIONS(88), - [anon_sym_if] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(94), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_lambda] = ACTIONS(100), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_all] = ACTIONS(106), - [anon_sym_any] = ACTIONS(106), - [anon_sym_filter] = ACTIONS(106), - [anon_sym_map] = ACTIONS(106), - [anon_sym_type] = ACTIONS(109), - [anon_sym_schema] = ACTIONS(157), - [anon_sym_mixin] = ACTIONS(160), - [anon_sym_protocol] = ACTIONS(163), - [anon_sym_rule] = ACTIONS(166), - [anon_sym_check] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(130), - [anon_sym_not] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(136), - [sym_integer] = ACTIONS(142), - [sym_float] = ACTIONS(145), - [sym_true] = ACTIONS(142), - [sym_false] = ACTIONS(142), - [sym_none] = ACTIONS(142), - [sym_undefined] = ACTIONS(142), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(77), - [sym_string_start] = ACTIONS(148), - }, - [36] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2276), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2374), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2276), - [ts_builtin_sym_end] = ACTIONS(172), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(3273), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [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_if] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -14817,11 +14689,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(31), - [anon_sym_mixin] = ACTIONS(33), - [anon_sym_protocol] = ACTIONS(35), - [anon_sym_rule] = ACTIONS(37), - [anon_sym_check] = ACTIONS(39), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(63), + [anon_sym_protocol] = ACTIONS(65), + [anon_sym_rule] = ACTIONS(67), + [anon_sym_check] = ACTIONS(69), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -14837,65 +14709,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, - [37] = { - [sym__statement] = STATE(35), - [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(35), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(35), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(35), - [sym_mixin_statement] = STATE(35), - [sym_protocol_statement] = STATE(35), - [sym_rule_statement] = STATE(35), - [sym_check_statement] = STATE(35), - [sym_decorated_definition] = STATE(35), - [sym_decorator] = STATE(2275), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(35), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [35] = { + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2290), + [sym_block] = STATE(1733), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14930,73 +14804,74 @@ 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(174), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [38] = { - [sym__statement] = STATE(35), - [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(35), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(35), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(35), - [sym_mixin_statement] = STATE(35), - [sym_protocol_statement] = STATE(35), - [sym_rule_statement] = STATE(35), - [sym_check_statement] = STATE(35), - [sym_decorated_definition] = STATE(35), - [sym_decorator] = STATE(2275), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(35), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [36] = { + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_schema_statement] = STATE(39), + [sym_mixin_statement] = STATE(39), + [sym_protocol_statement] = STATE(39), + [sym_rule_statement] = STATE(39), + [sym_check_statement] = STATE(39), + [sym_decorated_definition] = STATE(39), + [sym_decorator] = STATE(2287), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2438), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2287), + [ts_builtin_sym_end] = ACTIONS(77), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(21), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15004,11 +14879,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_schema] = ACTIONS(31), + [anon_sym_mixin] = ACTIONS(33), + [anon_sym_protocol] = ACTIONS(35), + [anon_sym_rule] = ACTIONS(37), + [anon_sym_check] = ACTIONS(39), [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), @@ -15024,66 +14899,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(176), [sym_string_start] = ACTIONS(55), }, - [39] = { - [sym__statement] = STATE(35), - [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_if_statement] = STATE(35), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_schema_index_signature] = STATE(35), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_schema_statement] = STATE(35), - [sym_mixin_statement] = STATE(35), - [sym_protocol_statement] = STATE(35), - [sym_rule_statement] = STATE(35), - [sym_check_statement] = STATE(35), - [sym_decorated_definition] = STATE(35), - [sym_decorator] = STATE(2275), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2372), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), - [aux_sym_module_repeat1] = STATE(35), - [aux_sym_decorated_definition_repeat1] = STATE(2275), + [37] = { + [sym__statement] = STATE(41), + [sym__simple_statements] = STATE(41), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(41), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(41), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(41), + [sym_mixin_statement] = STATE(41), + [sym_protocol_statement] = STATE(41), + [sym_rule_statement] = STATE(41), + [sym_check_statement] = STATE(41), + [sym_decorated_definition] = STATE(41), + [sym_decorator] = STATE(2290), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(41), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15118,60 +14992,73 @@ 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(178), + [sym__dedent] = ACTIONS(79), [sym_string_start] = ACTIONS(55), }, - [40] = { - [sym__simple_statements] = STATE(1701), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2543), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [38] = { + [sym__statement] = STATE(41), + [sym__simple_statements] = STATE(41), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(41), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(41), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(41), + [sym_mixin_statement] = STATE(41), + [sym_protocol_statement] = STATE(41), + [sym_rule_statement] = STATE(41), + [sym_check_statement] = STATE(41), + [sym_decorated_definition] = STATE(41), + [sym_decorator] = STATE(2290), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(41), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15179,6 +15066,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_type] = ACTIONS(29), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(63), + [anon_sym_protocol] = ACTIONS(65), + [anon_sym_rule] = ACTIONS(67), + [anon_sym_check] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -15193,61 +15086,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(182), - [sym__indent] = ACTIONS(184), + [sym__dedent] = ACTIONS(81), [sym_string_start] = ACTIONS(55), }, - [41] = { - [sym__simple_statements] = STATE(1752), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2543), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [39] = { + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_schema_statement] = STATE(39), + [sym_mixin_statement] = STATE(39), + [sym_protocol_statement] = STATE(39), + [sym_rule_statement] = STATE(39), + [sym_check_statement] = STATE(39), + [sym_decorated_definition] = STATE(39), + [sym_decorator] = STATE(2287), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2438), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2287), + [ts_builtin_sym_end] = ACTIONS(83), + [sym_identifier] = ACTIONS(85), + [anon_sym_import] = ACTIONS(88), + [anon_sym_DOT] = ACTIONS(91), + [anon_sym_assert] = ACTIONS(94), + [anon_sym_if] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_lambda] = ACTIONS(106), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_all] = ACTIONS(112), + [anon_sym_any] = ACTIONS(112), + [anon_sym_filter] = ACTIONS(112), + [anon_sym_map] = ACTIONS(112), + [anon_sym_type] = ACTIONS(115), + [anon_sym_schema] = ACTIONS(118), + [anon_sym_mixin] = ACTIONS(121), + [anon_sym_protocol] = ACTIONS(124), + [anon_sym_rule] = ACTIONS(127), + [anon_sym_check] = ACTIONS(130), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(136), + [anon_sym_not] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_TILDE] = ACTIONS(142), + [sym_integer] = ACTIONS(148), + [sym_float] = ACTIONS(151), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_none] = ACTIONS(148), + [sym_undefined] = ACTIONS(148), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(154), + }, + [40] = { + [sym__statement] = STATE(41), + [sym__simple_statements] = STATE(41), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(41), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(41), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(41), + [sym_mixin_statement] = STATE(41), + [sym_protocol_statement] = STATE(41), + [sym_rule_statement] = STATE(41), + [sym_check_statement] = STATE(41), + [sym_decorated_definition] = STATE(41), + [sym_decorator] = STATE(2290), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(41), + [aux_sym_decorated_definition_repeat1] = STATE(2290), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15255,6 +15254,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_type] = ACTIONS(29), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(63), + [anon_sym_protocol] = ACTIONS(65), + [anon_sym_rule] = ACTIONS(67), + [anon_sym_check] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -15269,55 +15274,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(186), - [sym__indent] = ACTIONS(188), + [sym__dedent] = ACTIONS(157), [sym_string_start] = ACTIONS(55), }, + [41] = { + [sym__statement] = STATE(41), + [sym__simple_statements] = STATE(41), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_if_statement] = STATE(41), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_schema_index_signature] = STATE(41), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_schema_statement] = STATE(41), + [sym_mixin_statement] = STATE(41), + [sym_protocol_statement] = STATE(41), + [sym_rule_statement] = STATE(41), + [sym_check_statement] = STATE(41), + [sym_decorated_definition] = STATE(41), + [sym_decorator] = STATE(2290), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2409), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [aux_sym_module_repeat1] = STATE(41), + [aux_sym_decorated_definition_repeat1] = STATE(2290), + [sym_identifier] = ACTIONS(85), + [anon_sym_import] = ACTIONS(88), + [anon_sym_DOT] = ACTIONS(91), + [anon_sym_assert] = ACTIONS(94), + [anon_sym_if] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_lambda] = ACTIONS(106), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_all] = ACTIONS(112), + [anon_sym_any] = ACTIONS(112), + [anon_sym_filter] = ACTIONS(112), + [anon_sym_map] = ACTIONS(112), + [anon_sym_type] = ACTIONS(115), + [anon_sym_schema] = ACTIONS(165), + [anon_sym_mixin] = ACTIONS(168), + [anon_sym_protocol] = ACTIONS(171), + [anon_sym_rule] = ACTIONS(174), + [anon_sym_check] = ACTIONS(177), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(136), + [anon_sym_not] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_TILDE] = ACTIONS(142), + [sym_integer] = ACTIONS(148), + [sym_float] = ACTIONS(151), + [sym_true] = ACTIONS(148), + [sym_false] = ACTIONS(148), + [sym_none] = ACTIONS(148), + [sym_undefined] = ACTIONS(148), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(154), + }, [42] = { - [sym__simple_statements] = STATE(1789), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2449), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym__simple_statements] = STATE(3014), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15345,55 +15443,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(190), - [sym__indent] = ACTIONS(192), + [sym__newline] = ACTIONS(182), + [sym__indent] = ACTIONS(184), [sym_string_start] = ACTIONS(55), }, [43] = { - [sym__simple_statements] = STATE(1781), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2449), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym__simple_statements] = STATE(1811), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2488), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15421,55 +15519,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(194), - [sym__indent] = ACTIONS(196), + [sym__newline] = ACTIONS(186), + [sym__indent] = ACTIONS(188), [sym_string_start] = ACTIONS(55), }, [44] = { - [sym__simple_statements] = STATE(3231), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_schema_expr] = STATE(934), + [sym_schema_instantiation] = STATE(934), + [sym_lambda_expr] = STATE(934), + [sym_quant_expr] = STATE(934), + [sym_quant_op] = STATE(3096), + [sym_dotted_name] = STATE(2517), + [sym_expression] = STATE(1172), + [sym_as_expression] = STATE(932), + [sym_selector_expression] = STATE(907), + [sym_primary_expression] = STATE(704), + [sym_paren_expression] = STATE(934), + [sym_braces_expression] = STATE(934), + [sym_not_operator] = STATE(932), + [sym_boolean_operator] = STATE(932), + [sym_long_expression] = STATE(932), + [sym_string_literal_expr] = STATE(934), + [sym_config_expr] = STATE(934), + [sym_binary_operator] = STATE(929), + [sym_unary_operator] = STATE(934), + [sym_sequence_operation] = STATE(932), + [sym_in_operation] = STATE(920), + [sym_not_in_operation] = STATE(920), + [sym_comparison_operator] = STATE(932), + [sym_select_suffix] = STATE(934), + [sym_attribute] = STATE(934), + [sym_optional_attribute] = STATE(934), + [sym_optional_attribute_declaration] = STATE(934), + [sym_optional_item] = STATE(934), + [sym_null_coalesce] = STATE(934), + [sym_subscript] = STATE(929), + [sym_call] = STATE(905), + [sym_list] = STATE(913), + [sym_dictionary] = STATE(913), + [sym_list_comprehension] = STATE(913), + [sym_dictionary_comprehension] = STATE(913), + [sym_conditional_expression] = STATE(932), + [sym_string] = STATE(934), + [aux_sym_check_statement_repeat1] = STATE(44), + [ts_builtin_sym_end] = ACTIONS(190), + [sym_identifier] = ACTIONS(192), + [anon_sym_import] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(197), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_lambda] = ACTIONS(206), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_all] = ACTIONS(212), + [anon_sym_any] = ACTIONS(212), + [anon_sym_filter] = ACTIONS(212), + [anon_sym_map] = ACTIONS(212), + [anon_sym_type] = ACTIONS(195), + [anon_sym_schema] = ACTIONS(195), + [anon_sym_mixin] = ACTIONS(195), + [anon_sym_protocol] = ACTIONS(195), + [anon_sym_rule] = ACTIONS(195), + [anon_sym_check] = ACTIONS(195), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_QMARK_DOT] = ACTIONS(215), + [anon_sym_not] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(221), + [sym_integer] = ACTIONS(227), + [sym_float] = ACTIONS(230), + [sym_true] = ACTIONS(227), + [sym_false] = ACTIONS(227), + [sym_none] = ACTIONS(227), + [sym_undefined] = ACTIONS(227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(233), + }, + [45] = { + [sym__simple_statements] = STATE(1669), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2518), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15497,131 +15671,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(198), - [sym__indent] = ACTIONS(200), + [sym__newline] = ACTIONS(236), + [sym__indent] = ACTIONS(238), [sym_string_start] = ACTIONS(55), }, - [45] = { - [sym_schema_expr] = STATE(940), - [sym_schema_instantiation] = STATE(940), - [sym_lambda_expr] = STATE(940), - [sym_quant_expr] = STATE(940), - [sym_quant_op] = STATE(3095), - [sym_dotted_name] = STATE(2502), - [sym_expression] = STATE(1167), - [sym_as_expression] = STATE(918), - [sym_selector_expression] = STATE(898), - [sym_primary_expression] = STATE(823), - [sym_paren_expression] = STATE(940), - [sym_braces_expression] = STATE(940), - [sym_not_operator] = STATE(918), - [sym_boolean_operator] = STATE(918), - [sym_long_expression] = STATE(918), - [sym_string_literal_expr] = STATE(940), - [sym_config_expr] = STATE(940), - [sym_binary_operator] = STATE(1001), - [sym_unary_operator] = STATE(940), - [sym_sequence_operation] = STATE(918), - [sym_in_operation] = STATE(914), - [sym_not_in_operation] = STATE(914), - [sym_comparison_operator] = STATE(918), - [sym_select_suffix] = STATE(940), - [sym_attribute] = STATE(940), - [sym_optional_attribute] = STATE(940), - [sym_optional_attribute_declaration] = STATE(940), - [sym_optional_item] = STATE(940), - [sym_null_coalesce] = STATE(940), - [sym_subscript] = STATE(1001), - [sym_call] = STATE(857), - [sym_list] = STATE(1002), - [sym_dictionary] = STATE(1002), - [sym_list_comprehension] = STATE(1002), - [sym_dictionary_comprehension] = STATE(1002), - [sym_conditional_expression] = STATE(918), - [sym_string] = STATE(940), - [aux_sym_check_statement_repeat1] = STATE(61), - [ts_builtin_sym_end] = ACTIONS(202), - [sym_identifier] = ACTIONS(204), - [anon_sym_import] = ACTIONS(204), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(202), - [anon_sym_lambda] = ACTIONS(204), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_all] = ACTIONS(204), - [anon_sym_any] = ACTIONS(204), - [anon_sym_filter] = ACTIONS(204), - [anon_sym_map] = ACTIONS(204), - [anon_sym_type] = ACTIONS(204), - [anon_sym_schema] = ACTIONS(204), - [anon_sym_mixin] = ACTIONS(204), - [anon_sym_protocol] = ACTIONS(204), - [anon_sym_rule] = ACTIONS(204), - [anon_sym_check] = ACTIONS(204), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_QMARK_DOT] = ACTIONS(202), - [anon_sym_not] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(202), - [anon_sym_DQUOTE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [sym_integer] = ACTIONS(204), - [sym_float] = ACTIONS(202), - [sym_true] = ACTIONS(204), - [sym_false] = ACTIONS(204), - [sym_none] = ACTIONS(204), - [sym_undefined] = ACTIONS(204), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(202), - }, [46] = { - [sym__simple_statements] = STATE(1426), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2449), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym__simple_statements] = STATE(1714), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2488), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15649,55 +15747,55 @@ 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(206), - [sym__indent] = ACTIONS(208), + [sym__newline] = ACTIONS(240), + [sym__indent] = ACTIONS(242), [sym_string_start] = ACTIONS(55), }, [47] = { - [sym__simple_statements] = STATE(3015), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym__simple_statements] = STATE(3104), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15725,55 +15823,55 @@ 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(210), - [sym__indent] = ACTIONS(212), + [sym__newline] = ACTIONS(244), + [sym__indent] = ACTIONS(246), [sym_string_start] = ACTIONS(55), }, [48] = { - [sym__simple_statements] = STATE(3027), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym__simple_statements] = STATE(3075), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15801,55 +15899,55 @@ 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(214), - [sym__indent] = ACTIONS(216), + [sym__newline] = ACTIONS(248), + [sym__indent] = ACTIONS(250), [sym_string_start] = ACTIONS(55), }, [49] = { - [sym__simple_statements] = STATE(1803), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2449), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym__simple_statements] = STATE(1188), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2488), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15877,55 +15975,131 @@ 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(218), - [sym__indent] = ACTIONS(220), + [sym__newline] = ACTIONS(252), + [sym__indent] = ACTIONS(254), [sym_string_start] = ACTIONS(55), }, [50] = { - [sym__simple_statements] = STATE(3104), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_schema_expr] = STATE(937), + [sym_schema_instantiation] = STATE(937), + [sym_lambda_expr] = STATE(937), + [sym_quant_expr] = STATE(937), + [sym_quant_op] = STATE(3024), + [sym_dotted_name] = STATE(2499), + [sym_expression] = STATE(1173), + [sym_as_expression] = STATE(939), + [sym_selector_expression] = STATE(908), + [sym_primary_expression] = STATE(630), + [sym_paren_expression] = STATE(937), + [sym_braces_expression] = STATE(937), + [sym_not_operator] = STATE(939), + [sym_boolean_operator] = STATE(939), + [sym_long_expression] = STATE(939), + [sym_string_literal_expr] = STATE(937), + [sym_config_expr] = STATE(937), + [sym_binary_operator] = STATE(940), + [sym_unary_operator] = STATE(937), + [sym_sequence_operation] = STATE(939), + [sym_in_operation] = STATE(910), + [sym_not_in_operation] = STATE(910), + [sym_comparison_operator] = STATE(939), + [sym_select_suffix] = STATE(937), + [sym_attribute] = STATE(937), + [sym_optional_attribute] = STATE(937), + [sym_optional_attribute_declaration] = STATE(937), + [sym_optional_item] = STATE(937), + [sym_null_coalesce] = STATE(937), + [sym_subscript] = STATE(940), + [sym_call] = STATE(881), + [sym_list] = STATE(942), + [sym_dictionary] = STATE(942), + [sym_list_comprehension] = STATE(942), + [sym_dictionary_comprehension] = STATE(942), + [sym_conditional_expression] = STATE(939), + [sym_string] = STATE(937), + [aux_sym_check_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(256), + [anon_sym_import] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(195), + [anon_sym_if] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(265), + [anon_sym_lambda] = ACTIONS(268), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_all] = ACTIONS(212), + [anon_sym_any] = ACTIONS(212), + [anon_sym_filter] = ACTIONS(212), + [anon_sym_map] = ACTIONS(212), + [anon_sym_type] = ACTIONS(195), + [anon_sym_schema] = ACTIONS(195), + [anon_sym_mixin] = ACTIONS(195), + [anon_sym_protocol] = ACTIONS(195), + [anon_sym_rule] = ACTIONS(195), + [anon_sym_check] = ACTIONS(195), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_QMARK_DOT] = ACTIONS(274), + [anon_sym_not] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(280), + [anon_sym_DQUOTE] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(280), + [anon_sym_TILDE] = ACTIONS(280), + [sym_integer] = ACTIONS(286), + [sym_float] = ACTIONS(289), + [sym_true] = ACTIONS(286), + [sym_false] = ACTIONS(286), + [sym_none] = ACTIONS(286), + [sym_undefined] = ACTIONS(286), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(190), + [sym_string_start] = ACTIONS(292), + }, + [51] = { + [sym__simple_statements] = STATE(3272), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15953,55 +16127,55 @@ 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(222), - [sym__indent] = ACTIONS(224), + [sym__newline] = ACTIONS(295), + [sym__indent] = ACTIONS(297), [sym_string_start] = ACTIONS(55), }, - [51] = { - [sym__simple_statements] = STATE(3194), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [52] = { + [sym__simple_statements] = STATE(3026), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16029,55 +16203,55 @@ 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(226), - [sym__indent] = ACTIONS(228), + [sym__newline] = ACTIONS(299), + [sym__indent] = ACTIONS(301), [sym_string_start] = ACTIONS(55), }, - [52] = { - [sym__simple_statements] = STATE(3219), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [53] = { + [sym__simple_statements] = STATE(1708), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2488), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16105,55 +16279,55 @@ 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(230), - [sym__indent] = ACTIONS(232), + [sym__newline] = ACTIONS(303), + [sym__indent] = ACTIONS(305), [sym_string_start] = ACTIONS(55), }, - [53] = { - [sym__simple_statements] = STATE(3020), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [54] = { + [sym__simple_statements] = STATE(3052), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16181,55 +16355,55 @@ 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(234), - [sym__indent] = ACTIONS(236), + [sym__newline] = ACTIONS(307), + [sym__indent] = ACTIONS(309), [sym_string_start] = ACTIONS(55), }, - [54] = { - [sym__simple_statements] = STATE(3025), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [55] = { + [sym__simple_statements] = STATE(1694), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2518), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16257,55 +16431,55 @@ 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(238), - [sym__indent] = ACTIONS(240), + [sym__newline] = ACTIONS(311), + [sym__indent] = ACTIONS(313), [sym_string_start] = ACTIONS(55), }, - [55] = { - [sym__simple_statements] = STATE(1182), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2449), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [56] = { + [sym__simple_statements] = STATE(3238), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16333,55 +16507,55 @@ 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(242), - [sym__indent] = ACTIONS(244), + [sym__newline] = ACTIONS(315), + [sym__indent] = ACTIONS(317), [sym_string_start] = ACTIONS(55), }, - [56] = { - [sym__simple_statements] = STATE(3239), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [57] = { + [sym__simple_statements] = STATE(1662), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2518), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16409,55 +16583,55 @@ 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(246), - [sym__indent] = ACTIONS(248), + [sym__newline] = ACTIONS(319), + [sym__indent] = ACTIONS(321), [sym_string_start] = ACTIONS(55), }, - [57] = { - [sym__simple_statements] = STATE(1627), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2449), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [58] = { + [sym__simple_statements] = STATE(3004), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16485,55 +16659,55 @@ 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(250), - [sym__indent] = ACTIONS(252), + [sym__newline] = ACTIONS(323), + [sym__indent] = ACTIONS(325), [sym_string_start] = ACTIONS(55), }, - [58] = { - [sym__simple_statements] = STATE(3090), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [59] = { + [sym__simple_statements] = STATE(1703), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2488), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16561,55 +16735,55 @@ 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(254), - [sym__indent] = ACTIONS(256), + [sym__newline] = ACTIONS(327), + [sym__indent] = ACTIONS(329), [sym_string_start] = ACTIONS(55), }, - [59] = { - [sym__simple_statements] = STATE(3102), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [60] = { + [sym__simple_statements] = STATE(3145), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16637,55 +16811,55 @@ 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(258), - [sym__indent] = ACTIONS(260), + [sym__newline] = ACTIONS(331), + [sym__indent] = ACTIONS(333), [sym_string_start] = ACTIONS(55), }, - [60] = { - [sym__simple_statements] = STATE(3209), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [61] = { + [sym__simple_statements] = STATE(1448), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2488), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16713,131 +16887,55 @@ 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(262), - [sym__indent] = ACTIONS(264), + [sym__newline] = ACTIONS(335), + [sym__indent] = ACTIONS(337), [sym_string_start] = ACTIONS(55), }, - [61] = { - [sym_schema_expr] = STATE(940), - [sym_schema_instantiation] = STATE(940), - [sym_lambda_expr] = STATE(940), - [sym_quant_expr] = STATE(940), - [sym_quant_op] = STATE(3095), - [sym_dotted_name] = STATE(2502), - [sym_expression] = STATE(1167), - [sym_as_expression] = STATE(918), - [sym_selector_expression] = STATE(898), - [sym_primary_expression] = STATE(823), - [sym_paren_expression] = STATE(940), - [sym_braces_expression] = STATE(940), - [sym_not_operator] = STATE(918), - [sym_boolean_operator] = STATE(918), - [sym_long_expression] = STATE(918), - [sym_string_literal_expr] = STATE(940), - [sym_config_expr] = STATE(940), - [sym_binary_operator] = STATE(1001), - [sym_unary_operator] = STATE(940), - [sym_sequence_operation] = STATE(918), - [sym_in_operation] = STATE(914), - [sym_not_in_operation] = STATE(914), - [sym_comparison_operator] = STATE(918), - [sym_select_suffix] = STATE(940), - [sym_attribute] = STATE(940), - [sym_optional_attribute] = STATE(940), - [sym_optional_attribute_declaration] = STATE(940), - [sym_optional_item] = STATE(940), - [sym_null_coalesce] = STATE(940), - [sym_subscript] = STATE(1001), - [sym_call] = STATE(857), - [sym_list] = STATE(1002), - [sym_dictionary] = STATE(1002), - [sym_list_comprehension] = STATE(1002), - [sym_dictionary_comprehension] = STATE(1002), - [sym_conditional_expression] = STATE(918), - [sym_string] = STATE(940), - [aux_sym_check_statement_repeat1] = STATE(61), - [ts_builtin_sym_end] = ACTIONS(266), - [sym_identifier] = ACTIONS(268), - [anon_sym_import] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(279), - [anon_sym_lambda] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_all] = ACTIONS(288), - [anon_sym_any] = ACTIONS(288), - [anon_sym_filter] = ACTIONS(288), - [anon_sym_map] = ACTIONS(288), - [anon_sym_type] = ACTIONS(271), - [anon_sym_schema] = ACTIONS(271), - [anon_sym_mixin] = ACTIONS(271), - [anon_sym_protocol] = ACTIONS(271), - [anon_sym_rule] = ACTIONS(271), - [anon_sym_check] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(266), - [anon_sym_QMARK_DOT] = ACTIONS(291), - [anon_sym_not] = ACTIONS(294), - [anon_sym_PLUS] = ACTIONS(297), - [anon_sym_DQUOTE] = ACTIONS(300), - [anon_sym_DASH] = ACTIONS(297), - [anon_sym_TILDE] = ACTIONS(297), - [sym_integer] = ACTIONS(303), - [sym_float] = ACTIONS(306), - [sym_true] = ACTIONS(303), - [sym_false] = ACTIONS(303), - [sym_none] = ACTIONS(303), - [sym_undefined] = ACTIONS(303), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(309), - }, [62] = { - [sym__simple_statements] = STATE(1457), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2543), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym__simple_statements] = STATE(3149), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16865,131 +16963,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(312), - [sym__indent] = ACTIONS(314), + [sym__newline] = ACTIONS(339), + [sym__indent] = ACTIONS(341), [sym_string_start] = ACTIONS(55), }, [63] = { - [sym_schema_expr] = STATE(975), - [sym_schema_instantiation] = STATE(975), - [sym_lambda_expr] = STATE(975), - [sym_quant_expr] = STATE(975), - [sym_quant_op] = STATE(3037), - [sym_dotted_name] = STATE(2478), - [sym_expression] = STATE(1160), - [sym_as_expression] = STATE(974), - [sym_selector_expression] = STATE(876), - [sym_primary_expression] = STATE(424), - [sym_paren_expression] = STATE(975), - [sym_braces_expression] = STATE(975), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_long_expression] = STATE(974), - [sym_string_literal_expr] = STATE(975), - [sym_config_expr] = STATE(975), - [sym_binary_operator] = STATE(957), - [sym_unary_operator] = STATE(975), - [sym_sequence_operation] = STATE(974), - [sym_in_operation] = STATE(956), - [sym_not_in_operation] = STATE(956), - [sym_comparison_operator] = STATE(974), - [sym_select_suffix] = STATE(975), - [sym_attribute] = STATE(975), - [sym_optional_attribute] = STATE(975), - [sym_optional_attribute_declaration] = STATE(975), - [sym_optional_item] = STATE(975), - [sym_null_coalesce] = STATE(975), - [sym_subscript] = STATE(957), - [sym_call] = STATE(856), - [sym_list] = STATE(954), - [sym_dictionary] = STATE(954), - [sym_list_comprehension] = STATE(954), - [sym_dictionary_comprehension] = STATE(954), - [sym_conditional_expression] = STATE(974), - [sym_string] = STATE(975), - [aux_sym_check_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(204), - [anon_sym_import] = ACTIONS(204), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(204), - [anon_sym_if] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_LBRACK] = ACTIONS(202), - [anon_sym_lambda] = ACTIONS(204), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_all] = ACTIONS(204), - [anon_sym_any] = ACTIONS(204), - [anon_sym_filter] = ACTIONS(204), - [anon_sym_map] = ACTIONS(204), - [anon_sym_type] = ACTIONS(204), - [anon_sym_schema] = ACTIONS(204), - [anon_sym_mixin] = ACTIONS(204), - [anon_sym_protocol] = ACTIONS(204), - [anon_sym_rule] = ACTIONS(204), - [anon_sym_check] = ACTIONS(204), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_QMARK_DOT] = ACTIONS(202), - [anon_sym_not] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(202), - [anon_sym_DQUOTE] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(202), - [sym_integer] = ACTIONS(204), - [sym_float] = ACTIONS(202), - [sym_true] = ACTIONS(204), - [sym_false] = ACTIONS(204), - [sym_none] = ACTIONS(204), - [sym_undefined] = ACTIONS(204), + [sym__simple_statements] = STATE(3133), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(202), - [sym_string_start] = ACTIONS(202), + [sym__newline] = ACTIONS(343), + [sym__indent] = ACTIONS(345), + [sym_string_start] = ACTIONS(55), }, [64] = { - [sym__simple_statements] = STATE(2981), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym__simple_statements] = STATE(3150), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17017,55 +17115,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(316), - [sym__indent] = ACTIONS(318), + [sym__newline] = ACTIONS(347), + [sym__indent] = ACTIONS(349), [sym_string_start] = ACTIONS(55), }, [65] = { - [sym__simple_statements] = STATE(1790), - [sym_import_statement] = STATE(3165), - [sym_assert_statement] = STATE(3165), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3165), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2449), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3165), - [sym_augmented_assignment] = STATE(3165), - [sym_unification] = STATE(3165), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [sym_schema_expr] = STATE(937), + [sym_schema_instantiation] = STATE(937), + [sym_lambda_expr] = STATE(937), + [sym_quant_expr] = STATE(937), + [sym_quant_op] = STATE(3024), + [sym_dotted_name] = STATE(2499), + [sym_expression] = STATE(1173), + [sym_as_expression] = STATE(939), + [sym_selector_expression] = STATE(908), + [sym_primary_expression] = STATE(630), + [sym_paren_expression] = STATE(937), + [sym_braces_expression] = STATE(937), + [sym_not_operator] = STATE(939), + [sym_boolean_operator] = STATE(939), + [sym_long_expression] = STATE(939), + [sym_string_literal_expr] = STATE(937), + [sym_config_expr] = STATE(937), + [sym_binary_operator] = STATE(940), + [sym_unary_operator] = STATE(937), + [sym_sequence_operation] = STATE(939), + [sym_in_operation] = STATE(910), + [sym_not_in_operation] = STATE(910), + [sym_comparison_operator] = STATE(939), + [sym_select_suffix] = STATE(937), + [sym_attribute] = STATE(937), + [sym_optional_attribute] = STATE(937), + [sym_optional_attribute_declaration] = STATE(937), + [sym_optional_item] = STATE(937), + [sym_null_coalesce] = STATE(937), + [sym_subscript] = STATE(940), + [sym_call] = STATE(881), + [sym_list] = STATE(942), + [sym_dictionary] = STATE(942), + [sym_list_comprehension] = STATE(942), + [sym_dictionary_comprehension] = STATE(942), + [sym_conditional_expression] = STATE(939), + [sym_string] = STATE(937), + [aux_sym_check_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(353), + [anon_sym_lambda] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_all] = ACTIONS(351), + [anon_sym_any] = ACTIONS(351), + [anon_sym_filter] = ACTIONS(351), + [anon_sym_map] = ACTIONS(351), + [anon_sym_type] = ACTIONS(351), + [anon_sym_schema] = ACTIONS(351), + [anon_sym_mixin] = ACTIONS(351), + [anon_sym_protocol] = ACTIONS(351), + [anon_sym_rule] = ACTIONS(351), + [anon_sym_check] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(353), + [anon_sym_QMARK_DOT] = ACTIONS(353), + [anon_sym_not] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_TILDE] = ACTIONS(353), + [sym_integer] = ACTIONS(351), + [sym_float] = ACTIONS(353), + [sym_true] = ACTIONS(351), + [sym_false] = ACTIONS(351), + [sym_none] = ACTIONS(351), + [sym_undefined] = ACTIONS(351), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(353), + [sym_string_start] = ACTIONS(353), + }, + [66] = { + [sym__simple_statements] = STATE(3022), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17093,55 +17267,55 @@ 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(320), - [sym__indent] = ACTIONS(322), + [sym__newline] = ACTIONS(355), + [sym__indent] = ACTIONS(357), [sym_string_start] = ACTIONS(55), }, - [66] = { - [sym__simple_statements] = STATE(3182), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [67] = { + [sym__simple_statements] = STATE(1833), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2518), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17169,131 +17343,131 @@ 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(324), - [sym__indent] = ACTIONS(326), + [sym__newline] = ACTIONS(359), + [sym__indent] = ACTIONS(361), [sym_string_start] = ACTIONS(55), }, - [67] = { - [sym_schema_expr] = STATE(975), - [sym_schema_instantiation] = STATE(975), - [sym_lambda_expr] = STATE(975), - [sym_quant_expr] = STATE(975), - [sym_quant_op] = STATE(3037), - [sym_dotted_name] = STATE(2478), - [sym_expression] = STATE(1160), - [sym_as_expression] = STATE(974), - [sym_selector_expression] = STATE(876), - [sym_primary_expression] = STATE(424), - [sym_paren_expression] = STATE(975), - [sym_braces_expression] = STATE(975), - [sym_not_operator] = STATE(974), - [sym_boolean_operator] = STATE(974), - [sym_long_expression] = STATE(974), - [sym_string_literal_expr] = STATE(975), - [sym_config_expr] = STATE(975), - [sym_binary_operator] = STATE(957), - [sym_unary_operator] = STATE(975), - [sym_sequence_operation] = STATE(974), - [sym_in_operation] = STATE(956), - [sym_not_in_operation] = STATE(956), - [sym_comparison_operator] = STATE(974), - [sym_select_suffix] = STATE(975), - [sym_attribute] = STATE(975), - [sym_optional_attribute] = STATE(975), - [sym_optional_attribute_declaration] = STATE(975), - [sym_optional_item] = STATE(975), - [sym_null_coalesce] = STATE(975), - [sym_subscript] = STATE(957), - [sym_call] = STATE(856), - [sym_list] = STATE(954), - [sym_dictionary] = STATE(954), - [sym_list_comprehension] = STATE(954), - [sym_dictionary_comprehension] = STATE(954), - [sym_conditional_expression] = STATE(974), - [sym_string] = STATE(975), - [aux_sym_check_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(328), - [anon_sym_import] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_assert] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(334), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_lambda] = ACTIONS(340), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_all] = ACTIONS(288), - [anon_sym_any] = ACTIONS(288), - [anon_sym_filter] = ACTIONS(288), - [anon_sym_map] = ACTIONS(288), - [anon_sym_type] = ACTIONS(271), - [anon_sym_schema] = ACTIONS(271), - [anon_sym_mixin] = ACTIONS(271), - [anon_sym_protocol] = ACTIONS(271), - [anon_sym_rule] = ACTIONS(271), - [anon_sym_check] = ACTIONS(271), - [anon_sym_AT] = ACTIONS(266), - [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), + [68] = { + [sym__simple_statements] = STATE(1440), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2518), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(266), - [sym_string_start] = ACTIONS(364), + [sym__newline] = ACTIONS(363), + [sym__indent] = ACTIONS(365), + [sym_string_start] = ACTIONS(55), }, - [68] = { - [sym__simple_statements] = STATE(1743), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2543), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [69] = { + [sym__simple_statements] = STATE(1798), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2518), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17325,51 +17499,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(369), [sym_string_start] = ACTIONS(55), }, - [69] = { - [sym__simple_statements] = STATE(3170), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [70] = { + [sym__simple_statements] = STATE(1795), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2518), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17401,51 +17575,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(373), [sym_string_start] = ACTIONS(55), }, - [70] = { - [sym__simple_statements] = STATE(3011), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [71] = { + [sym__simple_statements] = STATE(3235), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17477,51 +17651,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(377), [sym_string_start] = ACTIONS(55), }, - [71] = { - [sym__simple_statements] = STATE(1190), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2543), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [72] = { + [sym__simple_statements] = STATE(3269), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17553,51 +17727,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(381), [sym_string_start] = ACTIONS(55), }, - [72] = { - [sym__simple_statements] = STATE(1698), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2543), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [73] = { + [sym__simple_statements] = STATE(3076), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17629,51 +17803,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(385), [sym_string_start] = ACTIONS(55), }, - [73] = { - [sym__simple_statements] = STATE(2975), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [74] = { + [sym__simple_statements] = STATE(1827), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2488), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17705,51 +17879,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(389), [sym_string_start] = ACTIONS(55), }, - [74] = { - [sym__simple_statements] = STATE(3004), - [sym_import_statement] = STATE(2987), - [sym_assert_statement] = STATE(2987), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(2987), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2481), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(2987), - [sym_augmented_assignment] = STATE(2987), - [sym_unification] = STATE(2987), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [75] = { + [sym__simple_statements] = STATE(1824), + [sym_import_statement] = STATE(3187), + [sym_assert_statement] = STATE(3187), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3187), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2488), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3187), + [sym_augmented_assignment] = STATE(3187), + [sym_unification] = STATE(3187), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17781,51 +17955,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(393), [sym_string_start] = ACTIONS(55), }, - [75] = { - [sym__simple_statements] = STATE(1744), - [sym_import_statement] = STATE(3060), - [sym_assert_statement] = STATE(3060), - [sym_schema_expr] = STATE(1960), - [sym_schema_instantiation] = STATE(1960), - [sym_lambda_expr] = STATE(1960), - [sym_quant_expr] = STATE(1960), - [sym_quant_op] = STATE(3164), - [sym_type_alias_statement] = STATE(3060), - [sym_dotted_name] = STATE(2197), - [sym_expression] = STATE(2543), - [sym_as_expression] = STATE(1932), - [sym_selector_expression] = STATE(1742), - [sym_primary_expression] = STATE(1499), - [sym_paren_expression] = STATE(1960), - [sym_braces_expression] = STATE(1960), - [sym_not_operator] = STATE(1932), - [sym_boolean_operator] = STATE(1932), - [sym_long_expression] = STATE(1932), - [sym_string_literal_expr] = STATE(1960), - [sym_config_expr] = STATE(1960), - [sym_binary_operator] = STATE(1940), - [sym_unary_operator] = STATE(1960), - [sym_sequence_operation] = STATE(1932), - [sym_in_operation] = STATE(1913), - [sym_not_in_operation] = STATE(1913), - [sym_comparison_operator] = STATE(1932), - [sym_assignment] = STATE(3060), - [sym_augmented_assignment] = STATE(3060), - [sym_unification] = STATE(3060), - [sym_select_suffix] = STATE(1960), - [sym_attribute] = STATE(1960), - [sym_optional_attribute] = STATE(1960), - [sym_optional_attribute_declaration] = STATE(1960), - [sym_optional_item] = STATE(1960), - [sym_null_coalesce] = STATE(1960), - [sym_subscript] = STATE(1940), - [sym_call] = STATE(1501), - [sym_list] = STATE(1909), - [sym_dictionary] = STATE(1909), - [sym_list_comprehension] = STATE(1909), - [sym_dictionary_comprehension] = STATE(1909), - [sym_conditional_expression] = STATE(1932), - [sym_string] = STATE(1960), + [76] = { + [sym__simple_statements] = STATE(3217), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17857,5326 +18031,5487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(397), [sym_string_start] = ACTIONS(55), }, - [76] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2725), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2293), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(3115), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2648), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(425), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), - }, [77] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2708), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2306), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(3086), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2602), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(435), + [sym__simple_statements] = STATE(1191), + [sym_import_statement] = STATE(3194), + [sym_assert_statement] = STATE(3194), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3194), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2518), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3194), + [sym_augmented_assignment] = STATE(3194), + [sym_unification] = STATE(3194), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(399), + [sym__indent] = ACTIONS(401), + [sym_string_start] = ACTIONS(55), }, [78] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2712), - [sym_dotted_name] = STATE(2286), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1895), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1895), - [sym_config_entries] = STATE(3076), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2652), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1895), - [sym_identifier] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(441), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(459), - [anon_sym_LF] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(457), - [sym_integer] = ACTIONS(463), - [sym_float] = ACTIONS(463), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(467), + [sym_schema_expr] = STATE(934), + [sym_schema_instantiation] = STATE(934), + [sym_lambda_expr] = STATE(934), + [sym_quant_expr] = STATE(934), + [sym_quant_op] = STATE(3096), + [sym_dotted_name] = STATE(2517), + [sym_expression] = STATE(1172), + [sym_as_expression] = STATE(932), + [sym_selector_expression] = STATE(907), + [sym_primary_expression] = STATE(704), + [sym_paren_expression] = STATE(934), + [sym_braces_expression] = STATE(934), + [sym_not_operator] = STATE(932), + [sym_boolean_operator] = STATE(932), + [sym_long_expression] = STATE(932), + [sym_string_literal_expr] = STATE(934), + [sym_config_expr] = STATE(934), + [sym_binary_operator] = STATE(929), + [sym_unary_operator] = STATE(934), + [sym_sequence_operation] = STATE(932), + [sym_in_operation] = STATE(920), + [sym_not_in_operation] = STATE(920), + [sym_comparison_operator] = STATE(932), + [sym_select_suffix] = STATE(934), + [sym_attribute] = STATE(934), + [sym_optional_attribute] = STATE(934), + [sym_optional_attribute_declaration] = STATE(934), + [sym_optional_item] = STATE(934), + [sym_null_coalesce] = STATE(934), + [sym_subscript] = STATE(929), + [sym_call] = STATE(905), + [sym_list] = STATE(913), + [sym_dictionary] = STATE(913), + [sym_list_comprehension] = STATE(913), + [sym_dictionary_comprehension] = STATE(913), + [sym_conditional_expression] = STATE(932), + [sym_string] = STATE(934), + [aux_sym_check_statement_repeat1] = STATE(44), + [ts_builtin_sym_end] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [anon_sym_import] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(351), + [anon_sym_assert] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(353), + [anon_sym_LBRACK] = ACTIONS(353), + [anon_sym_lambda] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_all] = ACTIONS(351), + [anon_sym_any] = ACTIONS(351), + [anon_sym_filter] = ACTIONS(351), + [anon_sym_map] = ACTIONS(351), + [anon_sym_type] = ACTIONS(351), + [anon_sym_schema] = ACTIONS(351), + [anon_sym_mixin] = ACTIONS(351), + [anon_sym_protocol] = ACTIONS(351), + [anon_sym_rule] = ACTIONS(351), + [anon_sym_check] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(353), + [anon_sym_QMARK_DOT] = ACTIONS(353), + [anon_sym_not] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_TILDE] = ACTIONS(353), + [sym_integer] = ACTIONS(351), + [sym_float] = ACTIONS(353), + [sym_true] = ACTIONS(351), + [sym_false] = ACTIONS(351), + [sym_none] = ACTIONS(351), + [sym_undefined] = ACTIONS(351), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(353), }, [79] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2712), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2301), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(3076), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2652), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(453), + [sym__simple_statements] = STATE(3055), + [sym_import_statement] = STATE(3245), + [sym_assert_statement] = STATE(3245), + [sym_schema_expr] = STATE(1974), + [sym_schema_instantiation] = STATE(1974), + [sym_lambda_expr] = STATE(1974), + [sym_quant_expr] = STATE(1974), + [sym_quant_op] = STATE(3186), + [sym_type_alias_statement] = STATE(3245), + [sym_dotted_name] = STATE(2182), + [sym_expression] = STATE(2513), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1642), + [sym_primary_expression] = STATE(1494), + [sym_paren_expression] = STATE(1974), + [sym_braces_expression] = STATE(1974), + [sym_not_operator] = STATE(1973), + [sym_boolean_operator] = STATE(1973), + [sym_long_expression] = STATE(1973), + [sym_string_literal_expr] = STATE(1974), + [sym_config_expr] = STATE(1974), + [sym_binary_operator] = STATE(1970), + [sym_unary_operator] = STATE(1974), + [sym_sequence_operation] = STATE(1973), + [sym_in_operation] = STATE(1969), + [sym_not_in_operation] = STATE(1969), + [sym_comparison_operator] = STATE(1973), + [sym_assignment] = STATE(3245), + [sym_augmented_assignment] = STATE(3245), + [sym_unification] = STATE(3245), + [sym_select_suffix] = STATE(1974), + [sym_attribute] = STATE(1974), + [sym_optional_attribute] = STATE(1974), + [sym_optional_attribute_declaration] = STATE(1974), + [sym_optional_item] = STATE(1974), + [sym_null_coalesce] = STATE(1974), + [sym_subscript] = STATE(1970), + [sym_call] = STATE(1495), + [sym_list] = STATE(1967), + [sym_dictionary] = STATE(1967), + [sym_list_comprehension] = STATE(1967), + [sym_dictionary_comprehension] = STATE(1967), + [sym_conditional_expression] = STATE(1973), + [sym_string] = STATE(1974), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(461), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(403), + [sym__indent] = ACTIONS(405), + [sym_string_start] = ACTIONS(55), }, [80] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2717), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2303), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(3120), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2621), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(471), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2746), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2302), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(3021), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2672), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), + [sym_string_start] = ACTIONS(439), }, [81] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2697), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2292), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(3159), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2637), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(477), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2742), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2305), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(3124), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2656), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(443), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), + [sym_string_start] = ACTIONS(439), }, [82] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2704), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2720), [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2297), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(3045), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2624), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(483), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1961), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1961), + [sym_config_entries] = STATE(3248), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2634), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1961), + [sym_identifier] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(455), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(461), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(449), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_LF] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(465), + [sym_integer] = ACTIONS(471), + [sym_float] = ACTIONS(471), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), + [sym_string_start] = ACTIONS(475), }, [83] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2709), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(3050), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2644), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(487), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(489), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2720), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2316), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(3248), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2634), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(461), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), + [sym_string_start] = ACTIONS(439), }, [84] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2707), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2299), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(2974), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2628), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(495), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2733), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2317), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(3131), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2622), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(479), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), + [sym_string_start] = ACTIONS(439), }, [85] = { - [sym_schema_expr] = STATE(1375), - [sym_schema_instantiation] = STATE(1375), - [sym_lambda_expr] = STATE(1375), - [sym_quant_expr] = STATE(1375), - [sym_quant_op] = STATE(3176), - [sym_dictionary_splat] = STATE(2729), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2289), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1282), - [sym_primary_expression] = STATE(1213), - [sym_paren_expression] = STATE(1785), - [sym_braces_expression] = STATE(1375), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1375), - [sym_config_expr] = STATE(1785), - [sym_config_entries] = STATE(3267), - [sym_config_entry] = STATE(2714), - [sym_test] = STATE(2858), - [sym_if_entry] = STATE(2864), - [sym_binary_operator] = STATE(1378), - [sym_unary_operator] = STATE(1375), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1379), - [sym_not_in_operation] = STATE(1379), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1375), - [sym_attribute] = STATE(1375), - [sym_optional_attribute] = STATE(1375), - [sym_optional_attribute_declaration] = STATE(1375), - [sym_optional_item] = STATE(1375), - [sym_null_coalesce] = STATE(1375), - [sym_subscript] = STATE(1378), - [sym_call] = STATE(1211), - [sym_list] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_pair] = STATE(2625), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1785), - [sym_identifier] = ACTIONS(399), - [anon_sym_DOT] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_lambda] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(501), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2747), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2306), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(2997), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2640), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(485), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(401), - [anon_sym_not] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(421), - [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [sym_integer] = ACTIONS(427), - [sym_float] = ACTIONS(427), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_none] = ACTIONS(429), - [sym_undefined] = ACTIONS(429), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), [sym_comment] = ACTIONS(5), [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(431), + [sym_string_start] = ACTIONS(439), }, [86] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2270), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_basic_type] = STATE(3210), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3105), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(505), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(513), - [anon_sym_RBRACK] = ACTIONS(515), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2745), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2298), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(3006), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2673), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(491), [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(521), + [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_str] = ACTIONS(533), - [anon_sym_int] = ACTIONS(533), - [anon_sym_float] = ACTIONS(533), - [anon_sym_bool] = ACTIONS(533), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(439), }, [87] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2270), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_basic_type] = STATE(3106), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3105), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(541), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(515), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2709), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(3185), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2661), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(521), + [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_str] = ACTIONS(533), - [anon_sym_int] = ACTIONS(533), - [anon_sym_float] = ACTIONS(533), - [anon_sym_bool] = ACTIONS(533), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(439), }, [88] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(553), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2711), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2314), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(3164), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2671), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(501), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(503), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(439), }, [89] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2774), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2774), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(567), + [sym_schema_expr] = STATE(1339), + [sym_schema_instantiation] = STATE(1339), + [sym_lambda_expr] = STATE(1339), + [sym_quant_expr] = STATE(1339), + [sym_quant_op] = STATE(3180), + [sym_dictionary_splat] = STATE(2734), + [sym_dotted_name] = STATE(2320), + [sym_expression] = STATE(2301), + [sym_as_expression] = STATE(1348), + [sym_selector_expression] = STATE(1236), + [sym_primary_expression] = STATE(1229), + [sym_paren_expression] = STATE(1663), + [sym_braces_expression] = STATE(1339), + [sym_not_operator] = STATE(1348), + [sym_boolean_operator] = STATE(1348), + [sym_long_expression] = STATE(1348), + [sym_string_literal_expr] = STATE(1339), + [sym_config_expr] = STATE(1663), + [sym_config_entries] = STATE(3102), + [sym_config_entry] = STATE(2735), + [sym_test] = STATE(2749), + [sym_if_entry] = STATE(2869), + [sym_binary_operator] = STATE(1355), + [sym_unary_operator] = STATE(1339), + [sym_sequence_operation] = STATE(1348), + [sym_in_operation] = STATE(1359), + [sym_not_in_operation] = STATE(1359), + [sym_comparison_operator] = STATE(1348), + [sym_select_suffix] = STATE(1339), + [sym_attribute] = STATE(1339), + [sym_optional_attribute] = STATE(1339), + [sym_optional_attribute_declaration] = STATE(1339), + [sym_optional_item] = STATE(1339), + [sym_null_coalesce] = STATE(1339), + [sym_subscript] = STATE(1355), + [sym_call] = STATE(1227), + [sym_list] = STATE(1360), + [sym_dictionary] = STATE(1360), + [sym_pair] = STATE(2677), + [sym_list_comprehension] = STATE(1360), + [sym_dictionary_comprehension] = STATE(1360), + [sym_conditional_expression] = STATE(1348), + [sym_string] = STATE(1663), + [sym_identifier] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_lambda] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [anon_sym_STAR_STAR] = ACTIONS(425), + [anon_sym_QMARK_DOT] = ACTIONS(409), + [anon_sym_not] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(431), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [sym_integer] = ACTIONS(435), + [sym_float] = ACTIONS(435), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_none] = ACTIONS(437), + [sym_undefined] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(439), }, [90] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(571), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2289), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_basic_type] = STATE(3144), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3143), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(521), + [anon_sym_RBRACK] = ACTIONS(523), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), + [anon_sym_any] = ACTIONS(529), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_str] = ACTIONS(541), + [anon_sym_int] = ACTIONS(541), + [anon_sym_float] = ACTIONS(541), + [anon_sym_bool] = ACTIONS(541), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [91] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2754), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2754), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(575), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2289), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_basic_type] = STATE(3230), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3143), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(551), + [anon_sym_RBRACK] = ACTIONS(523), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), + [anon_sym_any] = ACTIONS(529), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_str] = ACTIONS(541), + [anon_sym_int] = ACTIONS(541), + [anon_sym_float] = ACTIONS(541), + [anon_sym_bool] = ACTIONS(541), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [92] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(577), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(561), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [93] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(579), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2879), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2879), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(573), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(575), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [94] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2873), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2628), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(583), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(107), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(579), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [95] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_lambda] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(603), - [anon_sym_all] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_filter] = ACTIONS(605), - [anon_sym_map] = ACTIONS(605), - [anon_sym_STAR_STAR] = ACTIONS(608), - [anon_sym_QMARK_DOT] = ACTIONS(611), - [anon_sym_not] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [sym_integer] = ACTIONS(623), - [sym_float] = ACTIONS(626), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_undefined] = ACTIONS(623), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(629), + [sym_string_start] = ACTIONS(475), }, [96] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2892), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2648), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(634), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2793), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2672), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(585), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [97] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2848), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2644), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(638), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(102), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(587), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [98] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2885), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2621), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(642), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(589), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [99] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(644), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2795), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2795), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(593), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [100] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(646), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(595), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [101] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2818), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2637), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(650), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2895), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2622), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(599), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [102] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(652), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(601), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [103] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2873), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2873), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(583), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(603), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [104] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(102), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(654), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2792), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2640), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(607), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [105] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(656), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(609), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [106] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2754), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2624), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(575), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2785), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2671), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(613), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [107] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(658), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(615), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [108] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(660), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2830), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2634), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(619), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [109] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(662), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(621), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [110] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(664), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2790), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2656), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(625), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [111] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(666), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2821), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2673), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(629), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [112] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(668), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2792), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2792), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(607), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [113] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2885), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2885), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(642), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(631), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [114] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(670), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2795), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2677), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(593), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [115] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2817), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2817), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(674), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(633), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [116] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2817), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2652), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(674), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(635), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [117] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2803), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2625), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(678), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2793), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2793), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(585), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [118] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2848), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2848), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(638), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2879), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2661), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(573), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(575), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [119] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(680), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2830), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2830), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(619), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [120] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2774), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2602), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(567), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(637), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [121] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2054), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2333), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2054), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [aux_sym_dict_expr_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(639), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_lambda] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(657), + [anon_sym_all] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_filter] = ACTIONS(659), + [anon_sym_map] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(662), + [anon_sym_QMARK_DOT] = ACTIONS(665), + [anon_sym_not] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(671), + [anon_sym_DQUOTE] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(671), + [sym_integer] = ACTIONS(677), + [sym_float] = ACTIONS(680), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_none] = ACTIONS(677), + [sym_undefined] = ACTIONS(677), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(683), }, [122] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(684), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(686), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [123] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(686), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(688), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [124] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2277), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3054), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2067), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2369), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2067), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [aux_sym_dict_expr_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(690), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [125] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2274), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3005), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2895), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2895), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(599), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(694), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [126] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(696), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2284), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3047), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [127] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(698), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2292), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(2999), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [128] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(700), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(698), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [129] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(702), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2285), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3246), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(702), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [130] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(704), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2286), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3110), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(704), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [131] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_RBRACE] = ACTIONS(706), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [132] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_RBRACE] = ACTIONS(708), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [133] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2270), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3105), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(515), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(710), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [134] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2273), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(2977), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(710), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(712), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [135] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2278), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3113), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(714), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [136] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2274), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3005), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [137] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2271), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3129), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(714), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(718), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [138] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(716), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2295), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3122), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(720), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [139] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(718), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [140] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(720), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [141] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(722), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [142] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(724), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2294), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3038), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [143] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(726), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(730), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [144] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(728), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(732), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [145] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2269), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3247), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(734), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [146] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(732), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2285), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3246), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, [147] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(734), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(475), }, [148] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2272), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3249), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2289), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3143), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(523), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, [149] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_list_splat] = STATE(2834), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2279), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym__collection_elements] = STATE(3220), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2282), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3157), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, [150] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [151] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, [152] = { - [sym_dict_expr] = STATE(931), - [aux_sym_dotted_name_repeat1] = STATE(2053), - [aux_sym_comparison_operator_repeat1] = STATE(1127), - [sym_identifier] = ACTIONS(746), - [anon_sym_import] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_as] = ACTIONS(746), - [anon_sym_assert] = ACTIONS(746), - [anon_sym_if] = ACTIONS(746), + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_list_splat] = STATE(2844), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2291), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym__collection_elements] = STATE(3190), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(547), + }, + [153] = { + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(475), + }, + [154] = { + [sym_dict_expr] = STATE(962), + [aux_sym_dotted_name_repeat1] = STATE(2064), + [aux_sym_comparison_operator_repeat1] = STATE(1115), + [ts_builtin_sym_end] = ACTIONS(748), + [sym_identifier] = ACTIONS(750), + [anon_sym_import] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_as] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(748), + [anon_sym_else] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_lambda] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_in] = ACTIONS(750), + [anon_sym_all] = ACTIONS(750), + [anon_sym_any] = ACTIONS(750), + [anon_sym_filter] = ACTIONS(750), + [anon_sym_map] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_type] = ACTIONS(750), + [anon_sym_schema] = ACTIONS(750), + [anon_sym_mixin] = ACTIONS(750), + [anon_sym_protocol] = ACTIONS(750), + [anon_sym_rule] = ACTIONS(750), + [anon_sym_check] = ACTIONS(750), + [anon_sym_AT] = ACTIONS(748), + [anon_sym_QMARK_DOT] = ACTIONS(748), + [anon_sym_not] = ACTIONS(750), + [anon_sym_and] = ACTIONS(750), + [anon_sym_or] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_PERCENT] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_LT_LT] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_LT] = ACTIONS(750), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_is] = ACTIONS(750), + [sym_isMutableFlag] = ACTIONS(752), + [anon_sym_QMARK_COLON] = ACTIONS(754), + [anon_sym_QMARK_LBRACK] = ACTIONS(748), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(748), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_undefined] = ACTIONS(750), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(748), + }, + [155] = { + [sym_dict_expr] = STATE(951), + [aux_sym_dotted_name_repeat1] = STATE(2064), + [aux_sym_comparison_operator_repeat1] = STATE(869), + [sym_identifier] = ACTIONS(750), + [anon_sym_import] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_as] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(746), + [anon_sym_else] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(746), + [anon_sym_lambda] = ACTIONS(750), [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(746), - [anon_sym_all] = ACTIONS(746), - [anon_sym_any] = ACTIONS(746), - [anon_sym_filter] = ACTIONS(746), - [anon_sym_map] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), + [anon_sym_in] = ACTIONS(750), + [anon_sym_all] = ACTIONS(750), + [anon_sym_any] = ACTIONS(750), + [anon_sym_filter] = ACTIONS(750), + [anon_sym_map] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(746), - [anon_sym_schema] = ACTIONS(746), - [anon_sym_mixin] = ACTIONS(746), - [anon_sym_protocol] = ACTIONS(746), - [anon_sym_rule] = ACTIONS(746), - [anon_sym_check] = ACTIONS(746), + [anon_sym_type] = ACTIONS(750), + [anon_sym_schema] = ACTIONS(750), + [anon_sym_mixin] = ACTIONS(750), + [anon_sym_protocol] = ACTIONS(750), + [anon_sym_rule] = ACTIONS(750), + [anon_sym_check] = ACTIONS(750), [anon_sym_AT] = ACTIONS(748), [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(746), - [anon_sym_and] = ACTIONS(746), - [anon_sym_or] = ACTIONS(746), + [anon_sym_not] = ACTIONS(750), + [anon_sym_and] = ACTIONS(750), + [anon_sym_or] = ACTIONS(750), [anon_sym_PLUS] = ACTIONS(748), [anon_sym_DQUOTE] = ACTIONS(748), [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(750), [anon_sym_PERCENT] = ACTIONS(748), [anon_sym_SLASH_SLASH] = ACTIONS(748), [anon_sym_PIPE] = ACTIONS(748), @@ -23185,1137 +23520,1472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(748), [anon_sym_GT_GT] = ACTIONS(748), [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(750), [anon_sym_LT_EQ] = ACTIONS(748), [anon_sym_EQ_EQ] = ACTIONS(748), [anon_sym_BANG_EQ] = ACTIONS(748), [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_is] = ACTIONS(746), - [sym_isMutableFlag] = ACTIONS(750), - [anon_sym_QMARK_COLON] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_is] = ACTIONS(750), + [sym_isMutableFlag] = ACTIONS(756), + [anon_sym_QMARK_COLON] = ACTIONS(758), [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(746), + [sym_integer] = ACTIONS(750), [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_none] = ACTIONS(746), - [sym_undefined] = ACTIONS(746), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_undefined] = ACTIONS(750), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(748), [sym_string_start] = ACTIONS(748), }, - [153] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [156] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(754), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(762), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [154] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [157] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [155] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [158] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(758), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(766), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [156] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [159] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2356), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2763), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(796), + }, + [160] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2347), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2834), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(796), + }, + [161] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2338), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(802), + [anon_sym_COLON] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(802), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(547), + }, + [162] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2363), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2802), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(796), + }, + [163] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [157] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [164] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(762), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(812), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [158] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2350), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2856), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), + [165] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(814), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), + [sym_string_start] = ACTIONS(547), }, - [159] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2313), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2745), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), + [166] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(816), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), + [sym_string_start] = ACTIONS(547), }, - [160] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [167] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(798), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(818), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [161] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [168] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(800), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [162] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [169] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2329), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2776), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(796), + }, + [170] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(802), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [163] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2323), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(804), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [171] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(828), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [164] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2327), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2833), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), + [172] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), + [sym_string_start] = ACTIONS(547), }, - [165] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2343), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(812), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [173] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(832), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [166] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [174] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(816), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [167] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [175] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(818), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [168] = { - [sym_dict_expr] = STATE(909), - [aux_sym_dotted_name_repeat1] = STATE(2053), - [aux_sym_comparison_operator_repeat1] = STATE(2258), - [ts_builtin_sym_end] = ACTIONS(748), - [sym_identifier] = ACTIONS(746), - [anon_sym_import] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_as] = ACTIONS(746), - [anon_sym_assert] = ACTIONS(746), - [anon_sym_if] = ACTIONS(746), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(746), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(746), - [anon_sym_all] = ACTIONS(746), - [anon_sym_any] = ACTIONS(746), - [anon_sym_filter] = ACTIONS(746), - [anon_sym_map] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(746), - [anon_sym_schema] = ACTIONS(746), - [anon_sym_mixin] = ACTIONS(746), - [anon_sym_protocol] = ACTIONS(746), - [anon_sym_rule] = ACTIONS(746), - [anon_sym_check] = ACTIONS(746), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(746), - [anon_sym_and] = ACTIONS(746), - [anon_sym_or] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_is] = ACTIONS(746), - [sym_isMutableFlag] = ACTIONS(820), - [anon_sym_QMARK_COLON] = ACTIONS(822), - [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(746), - [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_none] = ACTIONS(746), - [sym_undefined] = ACTIONS(746), + [176] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2327), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2893), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(748), + [sym_string_start] = ACTIONS(796), }, - [169] = { - [sym_dict_expr] = STATE(931), - [aux_sym_dotted_name_repeat1] = STATE(2053), - [aux_sym_comparison_operator_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(746), - [anon_sym_import] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_as] = ACTIONS(746), - [anon_sym_assert] = ACTIONS(746), - [anon_sym_if] = ACTIONS(746), + [177] = { + [sym_dict_expr] = STATE(951), + [aux_sym_dotted_name_repeat1] = STATE(2064), + [aux_sym_comparison_operator_repeat1] = STATE(2272), + [sym_identifier] = ACTIONS(750), + [anon_sym_import] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_as] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(746), + [anon_sym_else] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(746), + [anon_sym_lambda] = ACTIONS(750), [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(746), - [anon_sym_all] = ACTIONS(746), - [anon_sym_any] = ACTIONS(746), - [anon_sym_filter] = ACTIONS(746), - [anon_sym_map] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), + [anon_sym_in] = ACTIONS(750), + [anon_sym_all] = ACTIONS(750), + [anon_sym_any] = ACTIONS(750), + [anon_sym_filter] = ACTIONS(750), + [anon_sym_map] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(746), - [anon_sym_schema] = ACTIONS(746), - [anon_sym_mixin] = ACTIONS(746), - [anon_sym_protocol] = ACTIONS(746), - [anon_sym_rule] = ACTIONS(746), - [anon_sym_check] = ACTIONS(746), + [anon_sym_type] = ACTIONS(750), + [anon_sym_schema] = ACTIONS(750), + [anon_sym_mixin] = ACTIONS(750), + [anon_sym_protocol] = ACTIONS(750), + [anon_sym_rule] = ACTIONS(750), + [anon_sym_check] = ACTIONS(750), [anon_sym_AT] = ACTIONS(748), [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(746), - [anon_sym_and] = ACTIONS(746), - [anon_sym_or] = ACTIONS(746), + [anon_sym_not] = ACTIONS(750), + [anon_sym_and] = ACTIONS(750), + [anon_sym_or] = ACTIONS(750), [anon_sym_PLUS] = ACTIONS(748), [anon_sym_DQUOTE] = ACTIONS(748), [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(750), [anon_sym_PERCENT] = ACTIONS(748), [anon_sym_SLASH_SLASH] = ACTIONS(748), [anon_sym_PIPE] = ACTIONS(748), @@ -24324,133 +24994,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(748), [anon_sym_GT_GT] = ACTIONS(748), [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(750), [anon_sym_LT_EQ] = ACTIONS(748), [anon_sym_EQ_EQ] = ACTIONS(748), [anon_sym_BANG_EQ] = ACTIONS(748), [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_is] = ACTIONS(746), - [sym_isMutableFlag] = ACTIONS(750), - [anon_sym_QMARK_COLON] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_is] = ACTIONS(750), + [sym_isMutableFlag] = ACTIONS(756), + [anon_sym_QMARK_COLON] = ACTIONS(758), [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(746), + [sym_integer] = ACTIONS(750), [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_none] = ACTIONS(746), - [sym_undefined] = ACTIONS(746), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_undefined] = ACTIONS(750), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(748), [sym_string_start] = ACTIONS(748), }, - [170] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2342), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2798), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), - }, - [171] = { - [sym_dict_expr] = STATE(909), - [aux_sym_dotted_name_repeat1] = STATE(2053), - [aux_sym_comparison_operator_repeat1] = STATE(1122), + [178] = { + [sym_dict_expr] = STATE(962), + [aux_sym_dotted_name_repeat1] = STATE(2064), + [aux_sym_comparison_operator_repeat1] = STATE(2272), [ts_builtin_sym_end] = ACTIONS(748), - [sym_identifier] = ACTIONS(746), - [anon_sym_import] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_as] = ACTIONS(746), - [anon_sym_assert] = ACTIONS(746), - [anon_sym_if] = ACTIONS(746), + [sym_identifier] = ACTIONS(750), + [anon_sym_import] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_as] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(746), + [anon_sym_else] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(746), + [anon_sym_lambda] = ACTIONS(750), [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(746), - [anon_sym_all] = ACTIONS(746), - [anon_sym_any] = ACTIONS(746), - [anon_sym_filter] = ACTIONS(746), - [anon_sym_map] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), + [anon_sym_in] = ACTIONS(750), + [anon_sym_all] = ACTIONS(750), + [anon_sym_any] = ACTIONS(750), + [anon_sym_filter] = ACTIONS(750), + [anon_sym_map] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(746), - [anon_sym_schema] = ACTIONS(746), - [anon_sym_mixin] = ACTIONS(746), - [anon_sym_protocol] = ACTIONS(746), - [anon_sym_rule] = ACTIONS(746), - [anon_sym_check] = ACTIONS(746), + [anon_sym_type] = ACTIONS(750), + [anon_sym_schema] = ACTIONS(750), + [anon_sym_mixin] = ACTIONS(750), + [anon_sym_protocol] = ACTIONS(750), + [anon_sym_rule] = ACTIONS(750), + [anon_sym_check] = ACTIONS(750), [anon_sym_AT] = ACTIONS(748), [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(746), - [anon_sym_and] = ACTIONS(746), - [anon_sym_or] = ACTIONS(746), + [anon_sym_not] = ACTIONS(750), + [anon_sym_and] = ACTIONS(750), + [anon_sym_or] = ACTIONS(750), [anon_sym_PLUS] = ACTIONS(748), [anon_sym_DQUOTE] = ACTIONS(748), [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(750), [anon_sym_PERCENT] = ACTIONS(748), [anon_sym_SLASH_SLASH] = ACTIONS(748), [anon_sym_PIPE] = ACTIONS(748), @@ -24459,801 +25062,802 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(748), [anon_sym_GT_GT] = ACTIONS(748), [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(750), [anon_sym_LT_EQ] = ACTIONS(748), [anon_sym_EQ_EQ] = ACTIONS(748), [anon_sym_BANG_EQ] = ACTIONS(748), [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_is] = ACTIONS(746), - [sym_isMutableFlag] = ACTIONS(820), - [anon_sym_QMARK_COLON] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_is] = ACTIONS(750), + [sym_isMutableFlag] = ACTIONS(752), + [anon_sym_QMARK_COLON] = ACTIONS(754), [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(746), + [sym_integer] = ACTIONS(750), [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_none] = ACTIONS(746), - [sym_undefined] = ACTIONS(746), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_undefined] = ACTIONS(750), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(748), }, - [172] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [179] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2359), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2791), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(796), }, - [173] = { - [sym_schema_expr] = STATE(1284), - [sym_schema_instantiation] = STATE(1284), - [sym_lambda_expr] = STATE(1284), - [sym_quant_expr] = STATE(1284), - [sym_quant_op] = STATE(3223), - [sym_dictionary_splat] = STATE(2952), - [sym_dotted_name] = STATE(2484), - [sym_expression] = STATE(2353), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1422), - [sym_primary_expression] = STATE(1364), - [sym_paren_expression] = STATE(1284), - [sym_braces_expression] = STATE(1284), - [sym_not_operator] = STATE(1250), - [sym_boolean_operator] = STATE(1250), - [sym_long_expression] = STATE(1250), - [sym_string_literal_expr] = STATE(1284), - [sym_config_expr] = STATE(1284), - [sym_binary_operator] = STATE(1253), - [sym_unary_operator] = STATE(1284), - [sym_sequence_operation] = STATE(1250), - [sym_in_operation] = STATE(1226), - [sym_not_in_operation] = STATE(1226), - [sym_comparison_operator] = STATE(1250), - [sym_select_suffix] = STATE(1284), - [sym_attribute] = STATE(1284), - [sym_optional_attribute] = STATE(1284), - [sym_optional_attribute_declaration] = STATE(1284), - [sym_optional_item] = STATE(1284), - [sym_null_coalesce] = STATE(1284), - [sym_subscript] = STATE(1253), - [sym_call] = STATE(1369), - [sym_list] = STATE(1509), - [sym_dictionary] = STATE(1509), - [sym_pair] = STATE(2952), - [sym_list_comprehension] = STATE(1509), - [sym_dictionary_comprehension] = STATE(1509), - [sym_conditional_expression] = STATE(1250), - [sym_string] = STATE(1284), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(551), + [180] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(846), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(569), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(465), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(465), - [sym_false] = ACTIONS(465), - [sym_none] = ACTIONS(465), - [sym_undefined] = ACTIONS(465), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(467), + [sym_string_start] = ACTIONS(547), }, - [174] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2363), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2867), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(830), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), + [181] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(848), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), + [sym_string_start] = ACTIONS(547), }, - [175] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2339), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2845), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), + [182] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), + [sym_string_start] = ACTIONS(547), }, - [176] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2355), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2804), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), + [183] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(852), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), + [sym_string_start] = ACTIONS(547), }, - [177] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(842), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [184] = { + [sym_schema_expr] = STATE(1264), + [sym_schema_instantiation] = STATE(1264), + [sym_lambda_expr] = STATE(1264), + [sym_quant_expr] = STATE(1264), + [sym_quant_op] = STATE(3261), + [sym_dictionary_splat] = STATE(2923), + [sym_dotted_name] = STATE(2507), + [sym_expression] = STATE(2376), + [sym_as_expression] = STATE(1266), + [sym_selector_expression] = STATE(1427), + [sym_primary_expression] = STATE(1354), + [sym_paren_expression] = STATE(1264), + [sym_braces_expression] = STATE(1264), + [sym_not_operator] = STATE(1266), + [sym_boolean_operator] = STATE(1266), + [sym_long_expression] = STATE(1266), + [sym_string_literal_expr] = STATE(1264), + [sym_config_expr] = STATE(1264), + [sym_binary_operator] = STATE(1271), + [sym_unary_operator] = STATE(1264), + [sym_sequence_operation] = STATE(1266), + [sym_in_operation] = STATE(1272), + [sym_not_in_operation] = STATE(1272), + [sym_comparison_operator] = STATE(1266), + [sym_select_suffix] = STATE(1264), + [sym_attribute] = STATE(1264), + [sym_optional_attribute] = STATE(1264), + [sym_optional_attribute_declaration] = STATE(1264), + [sym_optional_item] = STATE(1264), + [sym_null_coalesce] = STATE(1264), + [sym_subscript] = STATE(1271), + [sym_call] = STATE(1414), + [sym_list] = STATE(1631), + [sym_dictionary] = STATE(1631), + [sym_pair] = STATE(2923), + [sym_list_comprehension] = STATE(1631), + [sym_dictionary_comprehension] = STATE(1631), + [sym_conditional_expression] = STATE(1266), + [sym_string] = STATE(1264), + [sym_identifier] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_lambda] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_not] = ACTIONS(463), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [sym_integer] = ACTIONS(473), + [sym_float] = ACTIONS(571), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_none] = ACTIONS(473), + [sym_undefined] = ACTIONS(473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(475), }, - [178] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [185] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(844), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(854), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [179] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(846), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [186] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2330), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2755), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(796), }, - [180] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2351), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2760), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), + [187] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_slice] = STATE(2946), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(860), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), + [sym_string_start] = ACTIONS(547), }, - [181] = { - [sym_schema_expr] = STATE(2007), - [sym_schema_instantiation] = STATE(2007), - [sym_lambda_expr] = STATE(2007), - [sym_quant_expr] = STATE(2007), - [sym_quant_op] = STATE(3197), - [sym_dotted_name] = STATE(2453), - [sym_expression] = STATE(2359), - [sym_as_expression] = STATE(2006), - [sym_selector_expression] = STATE(1953), - [sym_primary_expression] = STATE(1643), - [sym_paren_expression] = STATE(2007), - [sym_braces_expression] = STATE(2007), - [sym_not_operator] = STATE(2006), - [sym_boolean_operator] = STATE(2006), - [sym_long_expression] = STATE(2006), - [sym_string_literal_expr] = STATE(2007), - [sym_config_expr] = STATE(2007), - [sym_binary_operator] = STATE(2015), - [sym_unary_operator] = STATE(2007), - [sym_sequence_operation] = STATE(2006), - [sym_in_operation] = STATE(2000), - [sym_not_in_operation] = STATE(2000), - [sym_comparison_operator] = STATE(2006), - [sym_select_suffix] = STATE(2007), - [sym_attribute] = STATE(2007), - [sym_optional_attribute] = STATE(2007), - [sym_optional_attribute_declaration] = STATE(2007), - [sym_optional_item] = STATE(2007), - [sym_null_coalesce] = STATE(2007), - [sym_subscript] = STATE(2015), - [sym_call] = STATE(1636), - [sym_keyword_argument] = STATE(2879), - [sym_list] = STATE(1999), - [sym_dictionary] = STATE(1999), - [sym_list_comprehension] = STATE(1999), - [sym_dictionary_comprehension] = STATE(1999), - [sym_conditional_expression] = STATE(2006), - [sym_string] = STATE(2007), - [sym_identifier] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_RPAREN] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(774), - [anon_sym_lambda] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), + [188] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2334), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2856), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(862), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(780), - [anon_sym_not] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_TILDE] = ACTIONS(784), - [sym_integer] = ACTIONS(788), - [sym_float] = ACTIONS(790), - [sym_true] = ACTIONS(788), - [sym_false] = ACTIONS(788), - [sym_none] = ACTIONS(788), - [sym_undefined] = ACTIONS(788), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(792), + [sym_string_start] = ACTIONS(796), }, - [182] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [189] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(856), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(866), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [183] = { - [sym_dict_expr] = STATE(931), - [aux_sym_dotted_name_repeat1] = STATE(2053), - [aux_sym_comparison_operator_repeat1] = STATE(886), - [sym_identifier] = ACTIONS(746), - [anon_sym_import] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_as] = ACTIONS(746), - [anon_sym_assert] = ACTIONS(746), - [anon_sym_if] = ACTIONS(746), + [190] = { + [sym_dict_expr] = STATE(962), + [aux_sym_dotted_name_repeat1] = STATE(2064), + [aux_sym_comparison_operator_repeat1] = STATE(875), + [ts_builtin_sym_end] = ACTIONS(748), + [sym_identifier] = ACTIONS(750), + [anon_sym_import] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_as] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(746), + [anon_sym_else] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(746), + [anon_sym_lambda] = ACTIONS(750), [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(746), - [anon_sym_all] = ACTIONS(746), - [anon_sym_any] = ACTIONS(746), - [anon_sym_filter] = ACTIONS(746), - [anon_sym_map] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), + [anon_sym_in] = ACTIONS(750), + [anon_sym_all] = ACTIONS(750), + [anon_sym_any] = ACTIONS(750), + [anon_sym_filter] = ACTIONS(750), + [anon_sym_map] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(746), - [anon_sym_schema] = ACTIONS(746), - [anon_sym_mixin] = ACTIONS(746), - [anon_sym_protocol] = ACTIONS(746), - [anon_sym_rule] = ACTIONS(746), - [anon_sym_check] = ACTIONS(746), + [anon_sym_type] = ACTIONS(750), + [anon_sym_schema] = ACTIONS(750), + [anon_sym_mixin] = ACTIONS(750), + [anon_sym_protocol] = ACTIONS(750), + [anon_sym_rule] = ACTIONS(750), + [anon_sym_check] = ACTIONS(750), [anon_sym_AT] = ACTIONS(748), [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(746), - [anon_sym_and] = ACTIONS(746), - [anon_sym_or] = ACTIONS(746), + [anon_sym_not] = ACTIONS(750), + [anon_sym_and] = ACTIONS(750), + [anon_sym_or] = ACTIONS(750), [anon_sym_PLUS] = ACTIONS(748), [anon_sym_DQUOTE] = ACTIONS(748), [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(750), [anon_sym_PERCENT] = ACTIONS(748), [anon_sym_SLASH_SLASH] = ACTIONS(748), [anon_sym_PIPE] = ACTIONS(748), @@ -25262,267 +25866,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(748), [anon_sym_GT_GT] = ACTIONS(748), [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(750), [anon_sym_LT_EQ] = ACTIONS(748), [anon_sym_EQ_EQ] = ACTIONS(748), [anon_sym_BANG_EQ] = ACTIONS(748), [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_is] = ACTIONS(746), - [sym_isMutableFlag] = ACTIONS(750), - [anon_sym_QMARK_COLON] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_is] = ACTIONS(750), + [sym_isMutableFlag] = ACTIONS(752), + [anon_sym_QMARK_COLON] = ACTIONS(754), [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(746), + [sym_integer] = ACTIONS(750), [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_none] = ACTIONS(746), - [sym_undefined] = ACTIONS(746), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_undefined] = ACTIONS(750), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(748), [sym_string_start] = ACTIONS(748), }, - [184] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [191] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(858), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(868), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [185] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [192] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2355), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(870), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(870), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(547), + }, + [193] = { + [sym_schema_expr] = STATE(2008), + [sym_schema_instantiation] = STATE(2008), + [sym_lambda_expr] = STATE(2008), + [sym_quant_expr] = STATE(2008), + [sym_quant_op] = STATE(3226), + [sym_dotted_name] = STATE(2529), + [sym_expression] = STATE(2345), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1889), + [sym_primary_expression] = STATE(1789), + [sym_paren_expression] = STATE(2008), + [sym_braces_expression] = STATE(2008), + [sym_not_operator] = STATE(1998), + [sym_boolean_operator] = STATE(1998), + [sym_long_expression] = STATE(1998), + [sym_string_literal_expr] = STATE(2008), + [sym_config_expr] = STATE(2008), + [sym_binary_operator] = STATE(2002), + [sym_unary_operator] = STATE(2008), + [sym_sequence_operation] = STATE(1998), + [sym_in_operation] = STATE(2003), + [sym_not_in_operation] = STATE(2003), + [sym_comparison_operator] = STATE(1998), + [sym_select_suffix] = STATE(2008), + [sym_attribute] = STATE(2008), + [sym_optional_attribute] = STATE(2008), + [sym_optional_attribute_declaration] = STATE(2008), + [sym_optional_item] = STATE(2008), + [sym_null_coalesce] = STATE(2008), + [sym_subscript] = STATE(2002), + [sym_call] = STATE(1791), + [sym_keyword_argument] = STATE(2816), + [sym_list] = STATE(2004), + [sym_dictionary] = STATE(2004), + [sym_list_comprehension] = STATE(2004), + [sym_dictionary_comprehension] = STATE(2004), + [sym_conditional_expression] = STATE(1998), + [sym_string] = STATE(2008), + [sym_identifier] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(778), + [anon_sym_lambda] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(784), + [anon_sym_not] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(794), + [sym_true] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [sym_none] = ACTIONS(792), + [sym_undefined] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(796), + }, + [194] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(860), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [186] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [195] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(862), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [187] = { - [sym_dict_expr] = STATE(909), - [aux_sym_dotted_name_repeat1] = STATE(2053), - [aux_sym_comparison_operator_repeat1] = STATE(870), - [ts_builtin_sym_end] = ACTIONS(748), - [sym_identifier] = ACTIONS(746), - [anon_sym_import] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_as] = ACTIONS(746), - [anon_sym_assert] = ACTIONS(746), - [anon_sym_if] = ACTIONS(746), + [196] = { + [sym_dict_expr] = STATE(951), + [aux_sym_dotted_name_repeat1] = STATE(2064), + [aux_sym_comparison_operator_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(750), + [anon_sym_import] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_as] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(750), + [anon_sym_if] = ACTIONS(750), [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(746), + [anon_sym_else] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(746), + [anon_sym_lambda] = ACTIONS(750), [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(746), - [anon_sym_all] = ACTIONS(746), - [anon_sym_any] = ACTIONS(746), - [anon_sym_filter] = ACTIONS(746), - [anon_sym_map] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), + [anon_sym_in] = ACTIONS(750), + [anon_sym_all] = ACTIONS(750), + [anon_sym_any] = ACTIONS(750), + [anon_sym_filter] = ACTIONS(750), + [anon_sym_map] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(746), - [anon_sym_schema] = ACTIONS(746), - [anon_sym_mixin] = ACTIONS(746), - [anon_sym_protocol] = ACTIONS(746), - [anon_sym_rule] = ACTIONS(746), - [anon_sym_check] = ACTIONS(746), + [anon_sym_type] = ACTIONS(750), + [anon_sym_schema] = ACTIONS(750), + [anon_sym_mixin] = ACTIONS(750), + [anon_sym_protocol] = ACTIONS(750), + [anon_sym_rule] = ACTIONS(750), + [anon_sym_check] = ACTIONS(750), [anon_sym_AT] = ACTIONS(748), [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(746), - [anon_sym_and] = ACTIONS(746), - [anon_sym_or] = ACTIONS(746), + [anon_sym_not] = ACTIONS(750), + [anon_sym_and] = ACTIONS(750), + [anon_sym_or] = ACTIONS(750), [anon_sym_PLUS] = ACTIONS(748), [anon_sym_DQUOTE] = ACTIONS(748), [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(750), [anon_sym_PERCENT] = ACTIONS(748), [anon_sym_SLASH_SLASH] = ACTIONS(748), [anon_sym_PIPE] = ACTIONS(748), @@ -25531,544 +26267,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(748), [anon_sym_GT_GT] = ACTIONS(748), [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(750), [anon_sym_LT_EQ] = ACTIONS(748), [anon_sym_EQ_EQ] = ACTIONS(748), [anon_sym_BANG_EQ] = ACTIONS(748), [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_is] = ACTIONS(746), - [sym_isMutableFlag] = ACTIONS(820), - [anon_sym_QMARK_COLON] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(750), + [anon_sym_is] = ACTIONS(750), + [sym_isMutableFlag] = ACTIONS(756), + [anon_sym_QMARK_COLON] = ACTIONS(758), [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(746), + [sym_integer] = ACTIONS(750), [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_none] = ACTIONS(746), - [sym_undefined] = ACTIONS(746), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_undefined] = ACTIONS(750), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(748), [sym_string_start] = ACTIONS(748), }, - [188] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(864), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [189] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(866), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [190] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(868), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [191] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(870), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [192] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(872), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [193] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [197] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(874), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(882), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, - [194] = { - [sym_schema_expr] = STATE(1763), - [sym_schema_instantiation] = STATE(1763), - [sym_lambda_expr] = STATE(1763), - [sym_quant_expr] = STATE(1763), - [sym_quant_op] = STATE(3179), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(2325), - [sym_as_expression] = STATE(1761), - [sym_selector_expression] = STATE(1572), - [sym_primary_expression] = STATE(1476), - [sym_paren_expression] = STATE(1763), - [sym_braces_expression] = STATE(1763), - [sym_not_operator] = STATE(1761), - [sym_boolean_operator] = STATE(1761), - [sym_long_expression] = STATE(1761), - [sym_string_literal_expr] = STATE(1763), - [sym_config_expr] = STATE(1763), - [sym_binary_operator] = STATE(1759), - [sym_unary_operator] = STATE(1763), - [sym_sequence_operation] = STATE(1761), - [sym_in_operation] = STATE(1758), - [sym_not_in_operation] = STATE(1758), - [sym_comparison_operator] = STATE(1761), - [sym_select_suffix] = STATE(1763), - [sym_attribute] = STATE(1763), - [sym_optional_attribute] = STATE(1763), - [sym_optional_attribute_declaration] = STATE(1763), - [sym_optional_item] = STATE(1763), - [sym_null_coalesce] = STATE(1763), - [sym_subscript] = STATE(1759), + [198] = { + [sym_schema_expr] = STATE(1747), + [sym_schema_instantiation] = STATE(1747), + [sym_lambda_expr] = STATE(1747), + [sym_quant_expr] = STATE(1747), + [sym_quant_op] = STATE(3198), + [sym_dotted_name] = STATE(2464), + [sym_expression] = STATE(2370), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1601), + [sym_primary_expression] = STATE(1488), + [sym_paren_expression] = STATE(1747), + [sym_braces_expression] = STATE(1747), + [sym_not_operator] = STATE(1743), + [sym_boolean_operator] = STATE(1743), + [sym_long_expression] = STATE(1743), + [sym_string_literal_expr] = STATE(1747), + [sym_config_expr] = STATE(1747), + [sym_binary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1747), + [sym_sequence_operation] = STATE(1743), + [sym_in_operation] = STATE(1737), + [sym_not_in_operation] = STATE(1737), + [sym_comparison_operator] = STATE(1743), + [sym_select_suffix] = STATE(1747), + [sym_attribute] = STATE(1747), + [sym_optional_attribute] = STATE(1747), + [sym_optional_attribute_declaration] = STATE(1747), + [sym_optional_item] = STATE(1747), + [sym_null_coalesce] = STATE(1747), + [sym_subscript] = STATE(1732), [sym_slice] = STATE(2946), - [sym_call] = STATE(1473), - [sym_list] = STATE(1757), - [sym_dictionary] = STATE(1757), - [sym_list_comprehension] = STATE(1757), - [sym_dictionary_comprehension] = STATE(1757), - [sym_conditional_expression] = STATE(1761), - [sym_string] = STATE(1763), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(876), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), + [sym_call] = STATE(1435), + [sym_list] = STATE(1735), + [sym_dictionary] = STATE(1735), + [sym_list_comprehension] = STATE(1735), + [sym_dictionary_comprehension] = STATE(1735), + [sym_conditional_expression] = STATE(1743), + [sym_string] = STATE(1747), + [sym_identifier] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(884), + [anon_sym_lambda] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(527), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), + [anon_sym_QMARK_DOT] = ACTIONS(533), + [anon_sym_not] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [sym_integer] = ACTIONS(543), + [sym_float] = ACTIONS(545), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_none] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(547), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 26, - ACTIONS(445), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(455), 1, + ACTIONS(894), 1, anon_sym_not, - ACTIONS(459), 1, - anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(878), 1, + ACTIONS(898), 1, anon_sym_, - STATE(261), 1, + ACTIONS(900), 1, + anon_sym_DQUOTE, + STATE(217), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1495), 1, sym_call, - STATE(1422), 1, + STATE(1549), 1, + sym_primary_expression, + STATE(1590), 1, + sym_expression, + STATE(1753), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(457), 3, + ACTIONS(896), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26077,19 +26479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26097,7 +26499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26114,55 +26516,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [117] = 28, - ACTIONS(764), 1, + [117] = 26, + ACTIONS(902), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(906), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, + ACTIONS(914), 1, anon_sym_not, - ACTIONS(786), 1, + ACTIONS(918), 1, + anon_sym_, + ACTIONS(920), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(880), 1, - anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(568), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(732), 1, sym_expression, - STATE(2453), 1, + STATE(879), 1, + sym_selector_expression, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3096), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + ACTIONS(904), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(916), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26171,18 +26570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(922), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26190,7 +26590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26207,55 +26607,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [238] = 28, - ACTIONS(764), 1, + [234] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, ACTIONS(786), 1, - anon_sym_DQUOTE, + anon_sym_not, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(882), 1, + ACTIONS(926), 1, anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2405), 1, + STATE(2426), 1, sym_expression, - STATE(2453), 1, + STATE(2529), 1, sym_dotted_name, - STATE(2907), 1, + STATE(2941), 1, sym_keyword_argument, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26264,18 +26664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26283,7 +26683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26300,54 +26700,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [359] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [355] = 26, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(894), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(898), 1, + anon_sym_, + ACTIONS(900), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, + STATE(217), 1, + aux_sym_long_expression_repeat1, + STATE(1495), 1, sym_call, - STATE(1476), 1, + STATE(1549), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2395), 1, + STATE(1590), 1, sym_expression, - STATE(2442), 1, + STATE(1753), 1, + sym_selector_expression, + STATE(2463), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3186), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(884), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1758), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(896), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26356,18 +26754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26375,7 +26774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26392,52 +26791,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [478] = 26, - ACTIONS(445), 1, + [472] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(451), 1, - anon_sym_LBRACE, ACTIONS(459), 1, - anon_sym_DQUOTE, + anon_sym_LBRACE, ACTIONS(467), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, sym_string_start, - ACTIONS(886), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(892), 1, + ACTIONS(934), 1, anon_sym_, - STATE(256), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, + STATE(1178), 1, sym_expression, - STATE(1369), 1, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1969), 1, + STATE(2034), 1, sym_primary_expression, - STATE(2045), 1, - sym_selector_expression, - STATE(2458), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(890), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(932), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26446,19 +26845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26466,7 +26865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26483,52 +26882,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [595] = 26, - ACTIONS(407), 1, + [589] = 28, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(419), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(423), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(896), 1, - anon_sym_, - STATE(284), 1, - aux_sym_long_expression_repeat1, - STATE(1211), 1, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1213), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1217), 1, - sym_expression, - STATE(1282), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2312), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2803), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1378), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26537,19 +26939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26557,7 +26958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26574,52 +26975,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [712] = 26, - ACTIONS(445), 1, + [710] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(940), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(942), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(946), 1, anon_sym_LBRACE, - ACTIONS(459), 1, - anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + ACTIONS(948), 1, anon_sym_not, - ACTIONS(892), 1, + ACTIONS(952), 1, anon_sym_, - STATE(256), 1, + ACTIONS(954), 1, + anon_sym_DQUOTE, + ACTIONS(958), 1, + sym_string_start, + STATE(289), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1369), 1, - sym_call, - STATE(1969), 1, + STATE(1551), 1, sym_primary_expression, - STATE(2045), 1, + STATE(1561), 1, + sym_call, + STATE(1621), 1, + sym_expression, + STATE(1842), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2527), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(938), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(890), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26628,19 +27029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(956), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26648,7 +27049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26665,52 +27066,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [829] = 26, - ACTIONS(445), 1, + [827] = 28, + ACTIONS(768), 1, + sym_identifier, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_not, - ACTIONS(892), 1, - anon_sym_, - STATE(256), 1, - aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1369), 1, - sym_call, - STATE(1969), 1, + ACTIONS(960), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(2045), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(890), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26719,19 +27123,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26739,7 +27142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26756,52 +27159,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [946] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(898), 1, + [948] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(906), 1, - anon_sym_, - ACTIONS(908), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - STATE(299), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(966), 1, + anon_sym_, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1499), 1, + STATE(1178), 1, + sym_expression, + STATE(1335), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1414), 1, sym_call, - STATE(1541), 1, - sym_expression, - STATE(1742), 1, + STATE(1475), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2532), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(904), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(465), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26810,19 +27213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26830,7 +27233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26847,52 +27250,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1063] = 26, - ACTIONS(910), 1, + [1065] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(914), 1, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(918), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, anon_sym_not, - ACTIONS(926), 1, - anon_sym_, - ACTIONS(928), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(932), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - STATE(249), 1, - aux_sym_long_expression_repeat1, - STATE(584), 1, - sym_expression, - STATE(823), 1, + ACTIONS(968), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(857), 1, + STATE(1791), 1, sym_call, - STATE(898), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2502), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(912), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(924), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26901,19 +27307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26921,7 +27326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -26938,52 +27343,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1180] = 26, - ACTIONS(407), 1, + [1186] = 28, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(419), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(423), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(896), 1, - anon_sym_, - STATE(284), 1, - aux_sym_long_expression_repeat1, - STATE(1211), 1, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1213), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1217), 1, - sym_expression, - STATE(1282), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2300), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2796), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1378), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -26992,19 +27400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27012,7 +27419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27029,55 +27436,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1297] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [1307] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(906), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(914), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(920), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(970), 1, + anon_sym_, + STATE(200), 1, + aux_sym_long_expression_repeat1, + STATE(568), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2325), 1, + STATE(755), 1, sym_expression, - STATE(2442), 1, + STATE(879), 1, + sym_selector_expression, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(2946), 1, - sym_slice, - STATE(3179), 1, + STATE(3096), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + ACTIONS(904), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(916), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27086,18 +27490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(922), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27105,7 +27510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27122,55 +27527,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1418] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [1424] = 26, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(431), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, + ACTIONS(974), 1, + anon_sym_, + STATE(264), 1, + aux_sym_long_expression_repeat1, + STATE(1204), 1, + sym_expression, + STATE(1227), 1, sym_call, - STATE(1476), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2288), 1, - sym_expression, - STATE(2442), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2843), 1, - sym_slice, - STATE(3179), 1, + STATE(3180), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(409), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27179,18 +27581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27198,7 +27601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27215,55 +27618,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1539] = 28, - ACTIONS(764), 1, + [1541] = 26, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(980), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(982), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(986), 1, + anon_sym_, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(934), 1, - anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(215), 1, + aux_sym_long_expression_repeat1, + STATE(1789), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1791), 1, + sym_call, + STATE(1792), 1, sym_expression, - STATE(2453), 1, + STATE(1889), 1, + sym_selector_expression, + STATE(2529), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(770), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27272,18 +27672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27291,7 +27692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27308,52 +27709,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1660] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(914), 1, + [1658] = 26, + ACTIONS(906), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(918), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(926), 1, - anon_sym_, - ACTIONS(928), 1, + ACTIONS(920), 1, anon_sym_DQUOTE, - ACTIONS(932), 1, + ACTIONS(924), 1, sym_string_start, - STATE(249), 1, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, + anon_sym_, + STATE(223), 1, aux_sym_long_expression_repeat1, - STATE(584), 1, - sym_expression, - STATE(823), 1, + STATE(704), 1, sym_primary_expression, - STATE(857), 1, + STATE(755), 1, + sym_expression, + STATE(905), 1, sym_call, - STATE(898), 1, + STATE(907), 1, sym_selector_expression, - STATE(2502), 1, + STATE(2517), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(912), 2, + ACTIONS(904), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(914), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1001), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(924), 3, + ACTIONS(916), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27362,19 +27763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 6, + ACTIONS(922), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27382,7 +27783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27399,55 +27800,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1777] = 28, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + [1775] = 26, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(980), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(982), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(936), 1, - anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, + anon_sym_not, + ACTIONS(1000), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1667), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1776), 1, sym_expression, - STATE(2453), 1, + STATE(1791), 1, + sym_call, + STATE(1885), 1, + sym_selector_expression, + STATE(2468), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(770), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27456,18 +27854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27475,7 +27874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27492,52 +27891,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1898] = 26, - ACTIONS(445), 1, + [1892] = 26, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(980), 1, anon_sym_LBRACK, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(982), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(942), 1, + ACTIONS(1002), 1, anon_sym_, - STATE(220), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, + STATE(1776), 1, sym_expression, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, + STATE(1789), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, + sym_selector_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(770), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(890), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27546,19 +27945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(792), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27566,7 +27965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27583,52 +27982,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2015] = 26, - ACTIONS(445), 1, + [2009] = 26, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(980), 1, anon_sym_LBRACK, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(982), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(938), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(998), 1, anon_sym_not, - ACTIONS(942), 1, + ACTIONS(1004), 1, anon_sym_, - STATE(220), 1, + STATE(214), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, + STATE(1667), 1, + sym_primary_expression, + STATE(1791), 1, + sym_call, + STATE(1792), 1, sym_expression, - STATE(1176), 1, + STATE(1885), 1, sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, - sym_primary_expression, - STATE(2492), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(770), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(890), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27637,19 +28036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(792), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27657,7 +28056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27674,52 +28073,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2132] = 26, - ACTIONS(944), 1, + [2126] = 26, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(886), 1, sym_identifier, - ACTIONS(948), 1, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(952), 1, - anon_sym_lambda, - ACTIONS(954), 1, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(956), 1, + ACTIONS(894), 1, anon_sym_not, - ACTIONS(960), 1, - anon_sym_, - ACTIONS(962), 1, + ACTIONS(900), 1, anon_sym_DQUOTE, - ACTIONS(966), 1, - sym_string_start, - STATE(229), 1, + ACTIONS(1006), 1, + anon_sym_, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1543), 1, - sym_expression, - STATE(1614), 1, + STATE(1495), 1, sym_call, - STATE(1615), 1, + STATE(1549), 1, sym_primary_expression, - STATE(1632), 1, + STATE(1602), 1, + sym_expression, + STATE(1753), 1, sym_selector_expression, - STATE(2531), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1963), 2, - sym_binary_operator, - sym_subscript, - STATE(1964), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(958), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(896), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27728,19 +28127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27748,7 +28147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27765,52 +28164,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2249] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(972), 1, - anon_sym_LPAREN, - ACTIONS(974), 1, - anon_sym_LBRACK, - ACTIONS(976), 1, + [2243] = 26, + ACTIONS(780), 1, anon_sym_lambda, + ACTIONS(796), 1, + sym_string_start, ACTIONS(978), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(980), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + anon_sym_LBRACE, + ACTIONS(988), 1, + anon_sym_DQUOTE, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, anon_sym_not, - ACTIONS(984), 1, + ACTIONS(1004), 1, anon_sym_, - ACTIONS(986), 1, - anon_sym_DQUOTE, - ACTIONS(990), 1, - sym_string_start, - STATE(229), 1, + STATE(214), 1, aux_sym_long_expression_repeat1, - STATE(1027), 1, + STATE(1667), 1, sym_primary_expression, - STATE(1047), 1, - sym_expression, - STATE(1063), 1, + STATE(1791), 1, sym_call, - STATE(1070), 1, + STATE(1792), 1, + sym_expression, + STATE(1885), 1, sym_selector_expression, - STATE(2504), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(970), 2, + ACTIONS(770), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(982), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27819,19 +28218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 6, + ACTIONS(792), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27839,7 +28238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27856,52 +28255,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2366] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(996), 1, + [2360] = 26, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(998), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(1002), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(1004), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1008), 1, - anon_sym_, - ACTIONS(1010), 1, + ACTIONS(431), 1, anon_sym_DQUOTE, - ACTIONS(1014), 1, + ACTIONS(439), 1, sym_string_start, - STATE(219), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(974), 1, + anon_sym_, + STATE(264), 1, aux_sym_long_expression_repeat1, - STATE(517), 1, - sym_primary_expression, - STATE(601), 1, + STATE(1204), 1, sym_expression, - STATE(856), 1, + STATE(1227), 1, sym_call, - STATE(877), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(994), 2, + ACTIONS(409), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1006), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -27910,19 +28309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 6, + ACTIONS(437), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27930,7 +28329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27947,52 +28346,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2483] = 26, - ACTIONS(992), 1, + [2477] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(996), 1, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(998), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(1002), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1004), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, anon_sym_not, - ACTIONS(1008), 1, - anon_sym_, - ACTIONS(1010), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1014), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - STATE(219), 1, - aux_sym_long_expression_repeat1, - STATE(517), 1, + ACTIONS(1008), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(601), 1, - sym_expression, - STATE(856), 1, + STATE(1791), 1, sym_call, - STATE(877), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(994), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1006), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28001,19 +28403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28021,7 +28422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28038,55 +28439,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2600] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [2598] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1014), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1022), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1026), 1, + anon_sym_, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(238), 1, + aux_sym_long_expression_repeat1, + STATE(1057), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2287), 1, + STATE(1058), 1, sym_expression, - STATE(2442), 1, + STATE(1066), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2457), 1, sym_dotted_name, - STATE(2836), 1, - sym_slice, - STATE(3179), 1, + STATE(3063), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(1012), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1024), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28095,18 +28493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1030), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28114,7 +28513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28131,52 +28530,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2721] = 26, - ACTIONS(9), 1, + [2715] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(898), 1, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(906), 1, - anon_sym_, - ACTIONS(908), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - STATE(299), 1, - aux_sym_long_expression_repeat1, - STATE(1499), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(1034), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1791), 1, sym_call, - STATE(1541), 1, - sym_expression, - STATE(1742), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3164), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(904), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28185,19 +28587,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28205,7 +28606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28222,52 +28623,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2838] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(996), 1, + [2836] = 26, + ACTIONS(906), 1, anon_sym_LPAREN, - ACTIONS(998), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(1002), 1, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(1004), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(920), 1, anon_sym_DQUOTE, - ACTIONS(1014), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1016), 1, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(1036), 1, anon_sym_, - STATE(229), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(517), 1, + STATE(704), 1, sym_primary_expression, - STATE(617), 1, + STATE(732), 1, sym_expression, - STATE(856), 1, + STATE(905), 1, sym_call, - STATE(877), 1, + STATE(907), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2517), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(994), 2, + ACTIONS(904), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(956), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(957), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(1006), 3, + ACTIONS(916), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28276,19 +28677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 6, + ACTIONS(922), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28296,7 +28697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28313,52 +28714,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2955] = 26, - ACTIONS(445), 1, + [2953] = 28, + ACTIONS(768), 1, + sym_identifier, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1018), 1, - anon_sym_, - STATE(229), 1, - aux_sym_long_expression_repeat1, - STATE(1164), 1, - sym_expression, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, + ACTIONS(1038), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, + sym_selector_expression, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(890), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28367,19 +28771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28387,7 +28790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28404,54 +28807,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3072] = 27, - ACTIONS(507), 1, + [3074] = 28, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(692), 1, sym_identifier, - STATE(1473), 1, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1476), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2391), 1, + STATE(2303), 1, sym_expression, - STATE(2442), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2855), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1020), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28460,18 +28864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28479,7 +28883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28496,55 +28900,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3191] = 28, - ACTIONS(507), 1, + [3195] = 28, + ACTIONS(768), 1, + sym_identifier, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(523), 1, - anon_sym_STAR, - ACTIONS(525), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(786), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(1040), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2367), 1, + STATE(2426), 1, sym_expression, - STATE(2442), 1, + STATE(2529), 1, sym_dotted_name, - STATE(2930), 1, - sym_list_splat, - STATE(3179), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28553,18 +28957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28572,7 +28976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28589,52 +28993,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3312] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(972), 1, + [3316] = 28, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(974), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(976), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(978), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(980), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(986), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(990), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1022), 1, - anon_sym_, - STATE(214), 1, - aux_sym_long_expression_repeat1, - STATE(1026), 1, - sym_expression, - STATE(1027), 1, - sym_primary_expression, - STATE(1063), 1, + ACTIONS(692), 1, + sym_identifier, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1070), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2504), 1, + STATE(2321), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2896), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(970), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(982), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28643,19 +29050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28663,7 +29069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28680,55 +29086,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3429] = 28, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + [3437] = 26, + ACTIONS(940), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(942), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(946), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(954), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1024), 1, - anon_sym_RPAREN, - STATE(1636), 1, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1046), 1, + anon_sym_, + STATE(297), 1, + aux_sym_long_expression_repeat1, + STATE(1561), 1, sym_call, - STATE(1643), 1, + STATE(1573), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1621), 1, sym_expression, - STATE(2453), 1, + STATE(1801), 1, + sym_selector_expression, + STATE(2470), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3130), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(938), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28737,18 +29140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(956), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28756,7 +29160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28773,55 +29177,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3550] = 28, - ACTIONS(764), 1, + [3554] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, ACTIONS(786), 1, - anon_sym_DQUOTE, + anon_sym_not, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1048), 1, anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2405), 1, + STATE(2426), 1, sym_expression, - STATE(2453), 1, + STATE(2529), 1, sym_dotted_name, - STATE(2907), 1, + STATE(2941), 1, sym_keyword_argument, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28830,18 +29234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28849,7 +29253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28866,52 +29270,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3671] = 26, - ACTIONS(445), 1, + [3675] = 26, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(980), 1, anon_sym_LBRACK, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(982), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(988), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(1028), 1, + ACTIONS(996), 1, sym_identifier, - ACTIONS(1030), 1, + ACTIONS(998), 1, anon_sym_not, - ACTIONS(1034), 1, + ACTIONS(1004), 1, anon_sym_, - STATE(229), 1, + STATE(214), 1, aux_sym_long_expression_repeat1, - STATE(1164), 1, - sym_expression, - STATE(1519), 1, + STATE(1667), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1791), 1, sym_call, - STATE(1817), 1, + STATE(1792), 1, + sym_expression, + STATE(1885), 1, sym_selector_expression, - STATE(2514), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(770), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1032), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -28920,19 +29324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(792), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28940,7 +29344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28957,55 +29361,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3788] = 28, - ACTIONS(764), 1, + [3792] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, ACTIONS(786), 1, - anon_sym_DQUOTE, + anon_sym_not, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1036), 1, + ACTIONS(1050), 1, anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2405), 1, + STATE(2426), 1, sym_expression, - STATE(2453), 1, + STATE(2529), 1, sym_dotted_name, - STATE(2907), 1, + STATE(2941), 1, sym_keyword_argument, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29014,18 +29418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29033,7 +29437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29050,52 +29454,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3909] = 26, - ACTIONS(992), 1, + [3913] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(996), 1, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(998), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(1002), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1004), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, anon_sym_not, - ACTIONS(1008), 1, - anon_sym_, - ACTIONS(1010), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1014), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - STATE(219), 1, - aux_sym_long_expression_repeat1, - STATE(517), 1, + ACTIONS(1052), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(601), 1, - sym_expression, - STATE(856), 1, + STATE(1791), 1, sym_call, - STATE(877), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(994), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1006), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29104,19 +29511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29124,7 +29530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29141,73 +29547,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4026] = 26, - ACTIONS(1038), 1, - sym_identifier, - ACTIONS(1044), 1, + [4034] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(1047), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(1050), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(1059), 1, - anon_sym_not, - ACTIONS(1065), 1, - anon_sym_, - ACTIONS(1068), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(1074), 1, + ACTIONS(475), 1, sym_string_start, - STATE(229), 1, + ACTIONS(1054), 1, + sym_identifier, + ACTIONS(1056), 1, + anon_sym_not, + ACTIONS(1060), 1, + anon_sym_, + STATE(246), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, + STATE(1171), 1, + sym_expression, + STATE(1587), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1661), 1, + sym_call, + STATE(1786), 1, + sym_selector_expression, + STATE(2531), 1, sym_dotted_name, - STATE(2544), 1, - sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1062), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1058), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1056), 4, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1071), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29215,7 +29621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29232,52 +29638,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4143] = 26, - ACTIONS(972), 1, - anon_sym_LPAREN, - ACTIONS(974), 1, - anon_sym_LBRACK, - ACTIONS(976), 1, + [4151] = 26, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(978), 1, - anon_sym_LBRACE, - ACTIONS(986), 1, - anon_sym_DQUOTE, - ACTIONS(990), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1077), 1, + ACTIONS(1062), 1, sym_identifier, - ACTIONS(1079), 1, + ACTIONS(1064), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1070), 1, anon_sym_not, - ACTIONS(1081), 1, + ACTIONS(1074), 1, anon_sym_, - STATE(232), 1, + ACTIONS(1076), 1, + anon_sym_DQUOTE, + STATE(243), 1, aux_sym_long_expression_repeat1, - STATE(1025), 1, + STATE(1432), 1, sym_primary_expression, - STATE(1026), 1, - sym_expression, - STATE(1063), 1, + STATE(1435), 1, sym_call, - STATE(1079), 1, + STATE(1473), 1, + sym_expression, + STATE(1579), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(970), 2, + ACTIONS(515), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(982), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29286,19 +29692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 6, + ACTIONS(543), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29306,7 +29712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29323,52 +29729,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4260] = 26, - ACTIONS(972), 1, + [4268] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(974), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(976), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(978), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(986), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(990), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1077), 1, + ACTIONS(1054), 1, sym_identifier, - ACTIONS(1079), 1, + ACTIONS(1056), 1, anon_sym_not, - ACTIONS(1081), 1, + ACTIONS(1060), 1, anon_sym_, - STATE(232), 1, + STATE(246), 1, aux_sym_long_expression_repeat1, - STATE(1025), 1, - sym_primary_expression, - STATE(1026), 1, + STATE(1171), 1, sym_expression, - STATE(1063), 1, + STATE(1587), 1, + sym_primary_expression, + STATE(1661), 1, sym_call, - STATE(1079), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2531), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(970), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(982), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1058), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29377,19 +29783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29397,7 +29803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29414,52 +29820,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4377] = 26, - ACTIONS(972), 1, + [4385] = 28, + ACTIONS(768), 1, + sym_identifier, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(974), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(976), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(978), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(986), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(990), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1083), 1, - anon_sym_, - STATE(229), 1, - aux_sym_long_expression_repeat1, - STATE(1025), 1, + ACTIONS(1078), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(1047), 1, - sym_expression, - STATE(1063), 1, + STATE(1791), 1, sym_call, - STATE(1079), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(970), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(982), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29468,19 +29877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29488,7 +29896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29505,52 +29913,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4494] = 26, - ACTIONS(972), 1, + [4506] = 28, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(974), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(976), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(978), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(986), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(990), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1077), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1081), 1, - anon_sym_, - STATE(232), 1, - aux_sym_long_expression_repeat1, - STATE(1025), 1, - sym_primary_expression, - STATE(1026), 1, - sym_expression, - STATE(1063), 1, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1079), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2323), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2764), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(970), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(982), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29559,19 +29970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29579,7 +29989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29596,52 +30006,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4611] = 26, - ACTIONS(445), 1, + [4627] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1014), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(1022), 1, + anon_sym_not, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - ACTIONS(1089), 1, + ACTIONS(1080), 1, anon_sym_, - STATE(236), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, + STATE(1056), 1, sym_expression, - STATE(1530), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1634), 1, - sym_call, - STATE(1827), 1, + STATE(1066), 1, sym_selector_expression, - STATE(2483), 1, + STATE(1082), 1, + sym_call, + STATE(2457), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(1012), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1032), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1024), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29650,19 +30060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(1030), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29670,7 +30080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29687,52 +30097,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4728] = 26, - ACTIONS(445), 1, + [4744] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(900), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - ACTIONS(1089), 1, + ACTIONS(1082), 1, anon_sym_, - STATE(236), 1, + STATE(309), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1530), 1, + STATE(1494), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1495), 1, sym_call, - STATE(1827), 1, + STATE(1590), 1, + sym_expression, + STATE(1642), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1032), 3, + ACTIONS(896), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29741,19 +30151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29761,7 +30171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29778,52 +30188,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4845] = 26, - ACTIONS(445), 1, + [4861] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(1094), 1, anon_sym_LBRACE, - ACTIONS(459), 1, - anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, + ACTIONS(1096), 1, anon_sym_not, - ACTIONS(1091), 1, + ACTIONS(1100), 1, anon_sym_, - STATE(229), 1, + ACTIONS(1102), 1, + anon_sym_DQUOTE, + ACTIONS(1106), 1, + sym_string_start, + STATE(310), 1, aux_sym_long_expression_repeat1, - STATE(1164), 1, + STATE(507), 1, sym_expression, - STATE(1530), 1, + STATE(630), 1, sym_primary_expression, - STATE(1634), 1, + STATE(881), 1, sym_call, - STATE(1827), 1, + STATE(908), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2499), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(1086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1032), 3, + ACTIONS(1098), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29832,19 +30242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(1104), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29852,7 +30262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29869,52 +30279,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4962] = 26, - ACTIONS(445), 1, + [4978] = 28, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(531), 1, + anon_sym_STAR, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1085), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - ACTIONS(1089), 1, - anon_sym_, - STATE(236), 1, - aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1530), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1435), 1, sym_call, - STATE(1827), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2390), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2954), 1, + sym_list_splat, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1032), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -29923,19 +30336,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29943,7 +30355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29960,52 +30372,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5079] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, + [5099] = 26, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(45), 1, + ACTIONS(786), 1, anon_sym_not, - ACTIONS(55), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(898), 1, + ACTIONS(976), 1, + sym_identifier, + ACTIONS(978), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(980), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(982), 1, anon_sym_LBRACE, - ACTIONS(906), 1, + ACTIONS(986), 1, anon_sym_, - ACTIONS(908), 1, + ACTIONS(988), 1, anon_sym_DQUOTE, - STATE(299), 1, + STATE(215), 1, aux_sym_long_expression_repeat1, - STATE(1499), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1791), 1, sym_call, - STATE(1541), 1, + STATE(1792), 1, sym_expression, - STATE(1742), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(770), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(904), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30014,19 +30426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(792), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30034,7 +30446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30051,55 +30463,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5196] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [5216] = 26, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, + sym_identifier, + ACTIONS(1064), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1070), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1076), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(1108), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1432), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2305), 1, + STATE(1435), 1, + sym_call, + STATE(1465), 1, sym_expression, - STATE(2442), 1, + STATE(1579), 1, + sym_selector_expression, + STATE(2455), 1, sym_dotted_name, - STATE(2854), 1, - sym_slice, - STATE(3179), 1, + STATE(3198), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(515), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30108,18 +30517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(543), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30127,7 +30537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30144,52 +30554,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5317] = 26, - ACTIONS(914), 1, + [5333] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(928), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1093), 1, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1112), 1, anon_sym_not, - ACTIONS(1097), 1, + ACTIONS(1114), 1, anon_sym_, - STATE(245), 1, + STATE(267), 1, aux_sym_long_expression_repeat1, - STATE(319), 1, - sym_primary_expression, - STATE(584), 1, + STATE(1171), 1, sym_expression, - STATE(857), 1, - sym_call, - STATE(879), 1, + STATE(1544), 1, + sym_primary_expression, + STATE(1660), 1, sym_selector_expression, - STATE(2487), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(912), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(924), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1058), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30198,19 +30608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30218,7 +30628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30235,55 +30645,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5434] = 28, - ACTIONS(764), 1, + [5450] = 26, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(1064), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1076), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1099), 1, - anon_sym_RPAREN, - STATE(1636), 1, + ACTIONS(1116), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1435), 1, sym_call, - STATE(1643), 1, + STATE(1465), 1, + sym_expression, + STATE(1488), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2405), 1, - sym_expression, - STATE(2453), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3198), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(515), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30292,18 +30699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30311,7 +30719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30328,52 +30736,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5555] = 26, - ACTIONS(914), 1, + [5567] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(928), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1093), 1, + ACTIONS(1054), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1056), 1, anon_sym_not, - ACTIONS(1097), 1, + ACTIONS(1118), 1, anon_sym_, - STATE(245), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(319), 1, - sym_primary_expression, - STATE(584), 1, + STATE(1178), 1, sym_expression, - STATE(857), 1, + STATE(1587), 1, + sym_primary_expression, + STATE(1661), 1, sym_call, - STATE(879), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2531), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(912), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(924), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1058), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30382,19 +30790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30402,7 +30810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30419,55 +30827,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5672] = 28, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + [5684] = 26, + ACTIONS(1014), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1101), 1, - anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1124), 1, + anon_sym_, + STATE(292), 1, + aux_sym_long_expression_repeat1, + STATE(1023), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1058), 1, sym_expression, - STATE(2453), 1, + STATE(1070), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3063), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(1012), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1024), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30476,18 +30881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(1030), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30495,7 +30901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30512,52 +30918,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5793] = 26, - ACTIONS(517), 1, + [5801] = 26, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(455), 1, + anon_sym_LBRACK, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(459), 1, + anon_sym_LBRACE, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(539), 1, + ACTIONS(467), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1103), 1, - anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_LBRACK, - ACTIONS(1107), 1, - anon_sym_LBRACE, - ACTIONS(1111), 1, + ACTIONS(1126), 1, anon_sym_, - ACTIONS(1113), 1, - anon_sym_DQUOTE, - STATE(281), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1446), 1, + STATE(1178), 1, sym_expression, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1109), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(465), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30566,19 +30972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30586,7 +30992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30603,52 +31009,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5910] = 26, - ACTIONS(914), 1, + [5918] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(928), 1, + ACTIONS(900), 1, anon_sym_DQUOTE, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1115), 1, + ACTIONS(1082), 1, anon_sym_, - STATE(229), 1, + STATE(309), 1, aux_sym_long_expression_repeat1, - STATE(319), 1, + STATE(1494), 1, sym_primary_expression, - STATE(533), 1, - sym_expression, - STATE(857), 1, + STATE(1495), 1, sym_call, - STATE(879), 1, + STATE(1590), 1, + sym_expression, + STATE(1642), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(912), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(914), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1001), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(924), 3, + ACTIONS(896), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30657,19 +31063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30677,7 +31083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30694,52 +31100,54 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6027] = 26, + [6035] = 27, + ACTIONS(515), 1, + anon_sym_DOT, ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(525), 1, anon_sym_lambda, ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, anon_sym_not, ACTIONS(539), 1, + anon_sym_DQUOTE, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1103), 1, - anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_LBRACK, - ACTIONS(1107), 1, - anon_sym_LBRACE, - ACTIONS(1111), 1, - anon_sym_, - ACTIONS(1113), 1, - anon_sym_DQUOTE, - STATE(281), 1, - aux_sym_long_expression_repeat1, - STATE(1446), 1, - sym_expression, - STATE(1473), 1, + STATE(1435), 1, sym_call, - STATE(1476), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2434), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(870), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1109), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30748,19 +31156,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30768,7 +31175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30785,52 +31192,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6144] = 26, - ACTIONS(445), 1, - anon_sym_LPAREN, - ACTIONS(447), 1, - anon_sym_LBRACK, - ACTIONS(449), 1, + [6154] = 26, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(451), 1, - anon_sym_LBRACE, - ACTIONS(459), 1, - anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1028), 1, + ACTIONS(1062), 1, sym_identifier, - ACTIONS(1030), 1, + ACTIONS(1064), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1070), 1, anon_sym_not, - ACTIONS(1117), 1, + ACTIONS(1074), 1, anon_sym_, - STATE(226), 1, + ACTIONS(1076), 1, + anon_sym_DQUOTE, + STATE(243), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1519), 1, + STATE(1432), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1435), 1, sym_call, - STATE(1817), 1, + STATE(1473), 1, + sym_expression, + STATE(1579), 1, sym_selector_expression, - STATE(2514), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(515), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1032), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30839,19 +31246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(543), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30859,7 +31266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30876,52 +31283,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6261] = 26, - ACTIONS(914), 1, - anon_sym_LPAREN, - ACTIONS(916), 1, - anon_sym_LBRACK, - ACTIONS(918), 1, + [6271] = 26, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(920), 1, - anon_sym_LBRACE, - ACTIONS(928), 1, - anon_sym_DQUOTE, - ACTIONS(932), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1093), 1, + ACTIONS(1062), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1064), 1, + anon_sym_LPAREN, + ACTIONS(1066), 1, + anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_LBRACE, + ACTIONS(1070), 1, anon_sym_not, - ACTIONS(1097), 1, + ACTIONS(1074), 1, anon_sym_, - STATE(245), 1, + ACTIONS(1076), 1, + anon_sym_DQUOTE, + STATE(243), 1, aux_sym_long_expression_repeat1, - STATE(319), 1, + STATE(1432), 1, sym_primary_expression, - STATE(584), 1, - sym_expression, - STATE(857), 1, + STATE(1435), 1, sym_call, - STATE(879), 1, + STATE(1473), 1, + sym_expression, + STATE(1579), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(912), 2, + ACTIONS(515), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(924), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -30930,19 +31337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 6, + ACTIONS(543), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30950,7 +31357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30967,52 +31374,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6378] = 26, - ACTIONS(910), 1, + [6388] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(914), 1, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(918), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(922), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, anon_sym_not, - ACTIONS(928), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(932), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1119), 1, - anon_sym_, - STATE(229), 1, - aux_sym_long_expression_repeat1, - STATE(533), 1, - sym_expression, - STATE(823), 1, + ACTIONS(1128), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(857), 1, + STATE(1791), 1, sym_call, - STATE(898), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2502), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(912), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(924), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31021,19 +31431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31041,7 +31450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31058,52 +31467,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6495] = 26, - ACTIONS(948), 1, + [6509] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(906), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(952), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(954), 1, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(914), 1, + anon_sym_not, + ACTIONS(920), 1, anon_sym_DQUOTE, - ACTIONS(966), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1125), 1, + ACTIONS(970), 1, anon_sym_, - STATE(252), 1, + STATE(200), 1, aux_sym_long_expression_repeat1, - STATE(1495), 1, + STATE(568), 1, sym_primary_expression, - STATE(1561), 1, + STATE(755), 1, sym_expression, - STATE(1614), 1, - sym_call, - STATE(1830), 1, + STATE(879), 1, sym_selector_expression, - STATE(2498), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(904), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1963), 2, - sym_binary_operator, - sym_subscript, - STATE(1964), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(958), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(916), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31112,19 +31521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 6, + ACTIONS(922), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31132,7 +31541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31149,52 +31558,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6612] = 26, - ACTIONS(948), 1, + [6626] = 28, + ACTIONS(768), 1, + sym_identifier, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(952), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(954), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(966), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1125), 1, - anon_sym_, - STATE(252), 1, - aux_sym_long_expression_repeat1, - STATE(1495), 1, + ACTIONS(1130), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(1561), 1, - sym_expression, - STATE(1614), 1, + STATE(1791), 1, sym_call, - STATE(1830), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3132), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1963), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(958), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31203,19 +31615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31223,7 +31634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31240,52 +31651,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6729] = 26, - ACTIONS(948), 1, + [6747] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(952), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(954), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(966), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1121), 1, + ACTIONS(1054), 1, sym_identifier, - ACTIONS(1123), 1, + ACTIONS(1056), 1, anon_sym_not, - ACTIONS(1127), 1, + ACTIONS(1060), 1, anon_sym_, - STATE(229), 1, + STATE(246), 1, aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_primary_expression, - STATE(1543), 1, + STATE(1171), 1, sym_expression, - STATE(1614), 1, + STATE(1587), 1, + sym_primary_expression, + STATE(1661), 1, sym_call, - STATE(1830), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2531), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1963), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(958), 3, + ACTIONS(1058), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31294,19 +31705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31314,7 +31725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31331,52 +31742,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6846] = 26, - ACTIONS(445), 1, + [6864] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(451), 1, - anon_sym_LBRACE, - ACTIONS(455), 1, - anon_sym_not, ACTIONS(459), 1, - anon_sym_DQUOTE, + anon_sym_LBRACE, ACTIONS(467), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(878), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1132), 1, anon_sym_, - STATE(261), 1, + STATE(203), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, + STATE(1171), 1, sym_expression, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, - sym_call, - STATE(1422), 1, + STATE(1198), 1, sym_selector_expression, - STATE(2484), 1, + STATE(1414), 1, + sym_call, + STATE(2034), 1, + sym_primary_expression, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(457), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(932), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31385,19 +31796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31405,7 +31816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31422,52 +31833,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6963] = 26, - ACTIONS(948), 1, + [6981] = 26, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(954), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(431), 1, anon_sym_DQUOTE, - ACTIONS(966), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1121), 1, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(1123), 1, + ACTIONS(1136), 1, anon_sym_not, - ACTIONS(1125), 1, + ACTIONS(1138), 1, anon_sym_, - STATE(252), 1, + STATE(293), 1, aux_sym_long_expression_repeat1, - STATE(1495), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1561), 1, + STATE(1204), 1, sym_expression, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1830), 1, + STATE(1315), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2452), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(409), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(958), 3, + ACTIONS(429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31476,19 +31887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 6, + ACTIONS(437), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31496,7 +31907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31513,145 +31924,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7080] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [7098] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, - sym_call, - STATE(1476), 1, - sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2291), 1, - sym_expression, - STATE(2442), 1, - sym_dotted_name, - STATE(2859), 1, - sym_slice, - STATE(3179), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1757), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1761), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1763), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [7201] = 26, - ACTIONS(445), 1, - anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(451), 1, - anon_sym_LBRACE, ACTIONS(459), 1, - anon_sym_DQUOTE, + anon_sym_LBRACE, ACTIONS(467), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, sym_string_start, - ACTIONS(886), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1129), 1, + ACTIONS(1132), 1, anon_sym_, - STATE(229), 1, + STATE(203), 1, aux_sym_long_expression_repeat1, - STATE(1164), 1, + STATE(1171), 1, sym_expression, - STATE(1369), 1, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1969), 1, + STATE(2034), 1, sym_primary_expression, - STATE(2045), 1, - sym_selector_expression, - STATE(2458), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(890), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(932), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31660,19 +31978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31680,7 +31998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31697,52 +32015,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7318] = 26, - ACTIONS(407), 1, + [7215] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1135), 1, + ACTIONS(1140), 1, anon_sym_, - STATE(260), 1, + STATE(248), 1, aux_sym_long_expression_repeat1, - STATE(1196), 1, + STATE(1171), 1, + sym_expression, + STATE(1354), 1, sym_primary_expression, - STATE(1211), 1, + STATE(1414), 1, sym_call, - STATE(1217), 1, - sym_expression, - STATE(1241), 1, + STATE(1427), 1, sym_selector_expression, STATE(2507), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(465), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31751,19 +32069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31771,7 +32089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31788,52 +32106,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7435] = 26, - ACTIONS(407), 1, + [7332] = 26, + ACTIONS(940), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(942), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(946), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(954), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(1042), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1044), 1, anon_sym_not, - ACTIONS(1135), 1, + ACTIONS(1046), 1, anon_sym_, - STATE(260), 1, + STATE(297), 1, aux_sym_long_expression_repeat1, - STATE(1196), 1, - sym_primary_expression, - STATE(1211), 1, + STATE(1561), 1, sym_call, - STATE(1217), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1621), 1, sym_expression, - STATE(1241), 1, + STATE(1801), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(938), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1378), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1908), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31842,19 +32160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(956), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31862,7 +32180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31879,55 +32197,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7552] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [7449] = 26, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(894), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(898), 1, + anon_sym_, + ACTIONS(900), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, + STATE(217), 1, + aux_sym_long_expression_repeat1, + STATE(1495), 1, sym_call, - STATE(1476), 1, + STATE(1549), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2309), 1, + STATE(1590), 1, sym_expression, - STATE(2442), 1, + STATE(1753), 1, + sym_selector_expression, + STATE(2463), 1, sym_dotted_name, - STATE(2796), 1, - sym_slice, - STATE(3179), 1, + STATE(3186), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(896), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -31936,18 +32251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31955,7 +32271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31972,52 +32288,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7673] = 26, - ACTIONS(407), 1, - anon_sym_LPAREN, - ACTIONS(409), 1, - anon_sym_LBRACK, - ACTIONS(411), 1, + [7566] = 26, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(413), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(976), 1, sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1137), 1, + ACTIONS(978), 1, + anon_sym_LPAREN, + ACTIONS(980), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + anon_sym_LBRACE, + ACTIONS(986), 1, anon_sym_, - STATE(229), 1, + ACTIONS(988), 1, + anon_sym_DQUOTE, + STATE(215), 1, aux_sym_long_expression_repeat1, - STATE(1196), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1205), 1, - sym_expression, - STATE(1211), 1, + STATE(1791), 1, sym_call, - STATE(1241), 1, + STATE(1792), 1, + sym_expression, + STATE(1889), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(770), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1378), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32026,19 +32342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(792), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32046,7 +32362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32063,52 +32379,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7790] = 26, - ACTIONS(445), 1, + [7683] = 26, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(455), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(459), 1, + ACTIONS(431), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1142), 1, anon_sym_, - STATE(229), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1164), 1, + STATE(1189), 1, sym_expression, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1422), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(409), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(457), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32117,19 +32433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(437), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32137,7 +32453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32154,52 +32470,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7907] = 26, - ACTIONS(407), 1, + [7800] = 28, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1135), 1, - anon_sym_, - STATE(260), 1, - aux_sym_long_expression_repeat1, - STATE(1196), 1, - sym_primary_expression, - STATE(1211), 1, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1217), 1, - sym_expression, - STATE(1241), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2322), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2912), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1378), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32208,19 +32527,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32228,7 +32546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32245,52 +32563,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8024] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(914), 1, + [7921] = 26, + ACTIONS(1014), 1, anon_sym_LPAREN, - ACTIONS(916), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(918), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(926), 1, - anon_sym_, - ACTIONS(928), 1, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(932), 1, + ACTIONS(1032), 1, sym_string_start, - STATE(249), 1, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1124), 1, + anon_sym_, + STATE(292), 1, aux_sym_long_expression_repeat1, - STATE(584), 1, - sym_expression, - STATE(823), 1, + STATE(1023), 1, sym_primary_expression, - STATE(857), 1, - sym_call, - STATE(898), 1, + STATE(1058), 1, + sym_expression, + STATE(1070), 1, sym_selector_expression, - STATE(2502), 1, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(912), 2, + ACTIONS(1012), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(924), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1024), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32299,19 +32617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 6, + ACTIONS(1030), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32319,7 +32637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32336,55 +32654,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8141] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [8038] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(1112), 1, + anon_sym_not, + ACTIONS(1144), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1178), 1, + sym_expression, + STATE(1544), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1660), 1, sym_selector_expression, - STATE(2294), 1, - sym_expression, - STATE(2442), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(2802), 1, - sym_slice, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(449), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1058), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32393,18 +32708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32412,7 +32728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32429,52 +32745,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8262] = 26, - ACTIONS(445), 1, + [8155] = 28, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1028), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1030), 1, - anon_sym_not, - ACTIONS(1117), 1, - anon_sym_, - STATE(226), 1, - aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1519), 1, - sym_primary_expression, - STATE(1634), 1, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1817), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2514), 1, + STATE(2370), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2946), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1032), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32483,19 +32802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32503,7 +32821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32520,52 +32838,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8379] = 26, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1103), 1, + [8276] = 26, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(1107), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + ACTIONS(1094), 1, anon_sym_LBRACE, - ACTIONS(1113), 1, + ACTIONS(1102), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, + ACTIONS(1106), 1, + sym_string_start, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1143), 1, + ACTIONS(1148), 1, anon_sym_not, - ACTIONS(1145), 1, + ACTIONS(1150), 1, anon_sym_, - STATE(268), 1, + STATE(281), 1, aux_sym_long_expression_repeat1, - STATE(1438), 1, + STATE(498), 1, sym_primary_expression, - STATE(1446), 1, + STATE(507), 1, sym_expression, - STATE(1473), 1, + STATE(881), 1, sym_call, - STATE(1521), 1, + STATE(884), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(1086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1758), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1109), 3, + ACTIONS(1098), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32574,19 +32892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(1104), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32594,7 +32912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32611,52 +32929,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8496] = 26, + [8393] = 28, + ACTIONS(515), 1, + anon_sym_DOT, ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1103), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1107), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1113), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1143), 1, - anon_sym_not, - ACTIONS(1145), 1, - anon_sym_, - STATE(268), 1, - aux_sym_long_expression_repeat1, - STATE(1438), 1, - sym_primary_expression, - STATE(1446), 1, - sym_expression, - STATE(1473), 1, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1521), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2304), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2838), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1109), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32665,19 +32986,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32685,7 +33005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32702,52 +33022,54 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8613] = 26, + [8514] = 27, + ACTIONS(515), 1, + anon_sym_DOT, ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1103), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1107), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1113), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1143), 1, - anon_sym_not, - ACTIONS(1147), 1, - anon_sym_, - STATE(229), 1, - aux_sym_long_expression_repeat1, - STATE(1416), 1, - sym_expression, - STATE(1438), 1, - sym_primary_expression, - STATE(1473), 1, + STATE(1435), 1, sym_call, - STATE(1521), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2420), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(1152), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1109), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32756,19 +33078,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32776,7 +33097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32793,55 +33114,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8730] = 28, - ACTIONS(764), 1, + [8633] = 26, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(1064), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1076), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1149), 1, - anon_sym_RPAREN, - STATE(1636), 1, + ACTIONS(1154), 1, + anon_sym_, + STATE(245), 1, + aux_sym_long_expression_repeat1, + STATE(1435), 1, sym_call, - STATE(1643), 1, + STATE(1473), 1, + sym_expression, + STATE(1488), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2405), 1, - sym_expression, - STATE(2453), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3198), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(515), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32850,18 +33168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32869,7 +33188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32886,52 +33205,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8851] = 26, - ACTIONS(517), 1, + [8750] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(539), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1103), 1, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(1107), 1, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(1113), 1, + ACTIONS(900), 1, anon_sym_DQUOTE, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(1143), 1, - anon_sym_not, - ACTIONS(1145), 1, + ACTIONS(1082), 1, anon_sym_, - STATE(268), 1, + STATE(309), 1, aux_sym_long_expression_repeat1, - STATE(1438), 1, + STATE(1494), 1, sym_primary_expression, - STATE(1446), 1, - sym_expression, - STATE(1473), 1, + STATE(1495), 1, sym_call, - STATE(1521), 1, + STATE(1590), 1, + sym_expression, + STATE(1642), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1758), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1109), 3, + ACTIONS(896), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -32940,19 +33259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32960,7 +33279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32977,55 +33296,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8968] = 28, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + [8867] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1151), 1, - anon_sym_RPAREN, - STATE(1636), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_not, + ACTIONS(1160), 1, + anon_sym_, + STATE(277), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1414), 1, sym_call, - STATE(1643), 1, + STATE(1992), 1, sym_primary_expression, - STATE(1953), 1, + STATE(2059), 1, sym_selector_expression, - STATE(2405), 1, - sym_expression, - STATE(2453), 1, + STATE(2494), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(449), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(932), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33034,18 +33350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33053,7 +33370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33070,52 +33387,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9089] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(948), 1, + [8984] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(952), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(954), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(956), 1, - anon_sym_not, - ACTIONS(962), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(966), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1153), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_not, + ACTIONS(1160), 1, anon_sym_, - STATE(213), 1, + STATE(277), 1, aux_sym_long_expression_repeat1, - STATE(1561), 1, + STATE(1171), 1, sym_expression, - STATE(1614), 1, + STATE(1414), 1, sym_call, - STATE(1615), 1, + STATE(1992), 1, sym_primary_expression, - STATE(1632), 1, + STATE(2059), 1, sym_selector_expression, - STATE(2531), 1, + STATE(2494), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1963), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(958), 3, + ACTIONS(932), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33124,19 +33441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33144,7 +33461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33161,52 +33478,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9206] = 26, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + [9101] = 26, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(1161), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(1163), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1167), 1, - anon_sym_, - ACTIONS(1169), 1, + ACTIONS(431), 1, anon_sym_DQUOTE, - STATE(275), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(974), 1, + anon_sym_, + STATE(264), 1, aux_sym_long_expression_repeat1, - STATE(1636), 1, + STATE(1204), 1, + sym_expression, + STATE(1227), 1, sym_call, - STATE(1647), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1822), 1, - sym_expression, - STATE(1846), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(766), 2, + ACTIONS(409), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1165), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33215,19 +33532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 6, + ACTIONS(437), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33235,7 +33552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33252,52 +33569,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9323] = 26, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + [9218] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(1161), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(1163), 1, + ACTIONS(467), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1158), 1, anon_sym_not, - ACTIONS(1167), 1, + ACTIONS(1162), 1, anon_sym_, - ACTIONS(1169), 1, - anon_sym_DQUOTE, - STATE(275), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1636), 1, + STATE(1178), 1, + sym_expression, + STATE(1414), 1, sym_call, - STATE(1647), 1, + STATE(1992), 1, sym_primary_expression, - STATE(1822), 1, - sym_expression, - STATE(1846), 1, + STATE(2059), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2494), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(766), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1165), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(932), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33306,19 +33623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33326,7 +33643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33343,52 +33660,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9440] = 26, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + [9335] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(1161), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(1163), 1, - anon_sym_not, - ACTIONS(1169), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(1171), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(1164), 1, anon_sym_, - STATE(229), 1, + STATE(207), 1, aux_sym_long_expression_repeat1, - STATE(1636), 1, - sym_call, - STATE(1647), 1, - sym_primary_expression, - STATE(1801), 1, + STATE(1171), 1, sym_expression, - STATE(1846), 1, + STATE(1335), 1, + sym_primary_expression, + STATE(1414), 1, + sym_call, + STATE(1475), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2532), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(766), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1165), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(465), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33397,19 +33714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33417,7 +33734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33434,52 +33751,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9557] = 26, - ACTIONS(445), 1, + [9452] = 26, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(1094), 1, anon_sym_LBRACE, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(459), 1, + ACTIONS(1102), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(878), 1, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1150), 1, anon_sym_, - STATE(261), 1, + STATE(281), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1364), 1, + STATE(498), 1, sym_primary_expression, - STATE(1369), 1, + STATE(507), 1, + sym_expression, + STATE(881), 1, sym_call, - STATE(1422), 1, + STATE(884), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(1086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(457), 3, + ACTIONS(1098), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33488,19 +33805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(1104), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33508,7 +33825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33525,52 +33842,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9674] = 26, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + [9569] = 28, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1161), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1163), 1, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(1167), 1, - anon_sym_, - ACTIONS(1169), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - STATE(275), 1, - aux_sym_long_expression_repeat1, - STATE(1636), 1, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, + sym_identifier, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1647), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1822), 1, - sym_expression, - STATE(1846), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2313), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2775), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(766), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1165), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33579,19 +33899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 6, + ACTIONS(543), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33599,7 +33918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33616,145 +33935,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9791] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, - sym_call, - STATE(1476), 1, - sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2310), 1, - sym_expression, - STATE(2442), 1, - sym_dotted_name, - STATE(2839), 1, - sym_slice, - STATE(3179), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1757), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1761), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1763), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [9912] = 26, - ACTIONS(445), 1, + [9690] = 26, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(1094), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(1102), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1173), 1, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1175), 1, + ACTIONS(1148), 1, anon_sym_not, - ACTIONS(1177), 1, + ACTIONS(1166), 1, anon_sym_, - STATE(285), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, + STATE(468), 1, sym_expression, - STATE(1327), 1, + STATE(498), 1, sym_primary_expression, - STATE(1369), 1, + STATE(881), 1, sym_call, - STATE(1483), 1, + STATE(884), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(1086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(457), 3, + ACTIONS(1098), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33763,19 +33989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(1104), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33783,7 +34009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33800,52 +34026,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10029] = 26, - ACTIONS(445), 1, + [9807] = 26, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(1094), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(1102), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1173), 1, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1175), 1, + ACTIONS(1148), 1, anon_sym_not, - ACTIONS(1177), 1, + ACTIONS(1150), 1, anon_sym_, - STATE(285), 1, + STATE(281), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1327), 1, + STATE(498), 1, sym_primary_expression, - STATE(1369), 1, + STATE(507), 1, + sym_expression, + STATE(881), 1, sym_call, - STATE(1483), 1, + STATE(884), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(1086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(457), 3, + ACTIONS(1098), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33854,19 +34080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(1104), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33874,7 +34100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33891,52 +34117,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10146] = 26, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(1103), 1, + [9924] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(1107), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(1113), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(1179), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_not, + ACTIONS(1160), 1, anon_sym_, - STATE(229), 1, + STATE(277), 1, aux_sym_long_expression_repeat1, - STATE(1416), 1, + STATE(1171), 1, sym_expression, - STATE(1473), 1, + STATE(1414), 1, sym_call, - STATE(1476), 1, + STATE(1992), 1, sym_primary_expression, - STATE(1572), 1, + STATE(2059), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2494), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1109), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(932), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -33945,19 +34171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33965,7 +34191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33982,52 +34208,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10263] = 26, - ACTIONS(944), 1, + [10041] = 26, + ACTIONS(1010), 1, sym_identifier, - ACTIONS(948), 1, + ACTIONS(1014), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(952), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(954), 1, + ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(956), 1, + ACTIONS(1022), 1, anon_sym_not, - ACTIONS(962), 1, + ACTIONS(1026), 1, + anon_sym_, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(966), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1153), 1, - anon_sym_, - STATE(213), 1, + STATE(238), 1, aux_sym_long_expression_repeat1, - STATE(1561), 1, - sym_expression, - STATE(1614), 1, - sym_call, - STATE(1615), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1632), 1, + STATE(1058), 1, + sym_expression, + STATE(1066), 1, sym_selector_expression, - STATE(2531), 1, + STATE(1082), 1, + sym_call, + STATE(2457), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(1012), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1963), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1125), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(958), 3, + ACTIONS(1024), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34036,19 +34262,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 6, + ACTIONS(1030), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34056,7 +34282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34073,55 +34299,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10380] = 28, - ACTIONS(764), 1, + [10158] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, ACTIONS(786), 1, - anon_sym_DQUOTE, + anon_sym_not, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1181), 1, + ACTIONS(1168), 1, anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2405), 1, + STATE(2426), 1, sym_expression, - STATE(2453), 1, + STATE(2529), 1, sym_dotted_name, - STATE(2907), 1, + STATE(2941), 1, sym_keyword_argument, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34130,18 +34356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34149,7 +34375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34166,52 +34392,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10501] = 26, - ACTIONS(407), 1, + [10279] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1014), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(419), 1, + ACTIONS(1022), 1, anon_sym_not, - ACTIONS(423), 1, + ACTIONS(1026), 1, + anon_sym_, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1183), 1, - anon_sym_, - STATE(229), 1, + STATE(238), 1, aux_sym_long_expression_repeat1, - STATE(1205), 1, - sym_expression, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1058), 1, + sym_expression, + STATE(1066), 1, sym_selector_expression, - STATE(2435), 1, + STATE(1082), 1, + sym_call, + STATE(2457), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(1012), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1378), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1125), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(1024), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34220,19 +34446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(1030), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34240,7 +34466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34257,52 +34483,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10618] = 26, - ACTIONS(445), 1, + [10396] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(940), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(942), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(946), 1, anon_sym_LBRACE, - ACTIONS(459), 1, - anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, + ACTIONS(948), 1, anon_sym_not, - ACTIONS(1185), 1, + ACTIONS(952), 1, anon_sym_, - STATE(229), 1, + ACTIONS(954), 1, + anon_sym_DQUOTE, + ACTIONS(958), 1, + sym_string_start, + STATE(289), 1, aux_sym_long_expression_repeat1, - STATE(1164), 1, - sym_expression, - STATE(1327), 1, + STATE(1551), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1561), 1, sym_call, - STATE(1483), 1, + STATE(1621), 1, + sym_expression, + STATE(1842), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2527), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(938), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(457), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34311,19 +34537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(956), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34331,7 +34557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34348,52 +34574,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10735] = 26, - ACTIONS(445), 1, + [10513] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(940), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(942), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(946), 1, anon_sym_LBRACE, - ACTIONS(459), 1, - anon_sym_DQUOTE, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, + ACTIONS(948), 1, anon_sym_not, - ACTIONS(1177), 1, + ACTIONS(952), 1, anon_sym_, - STATE(285), 1, + ACTIONS(954), 1, + anon_sym_DQUOTE, + ACTIONS(958), 1, + sym_string_start, + STATE(289), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1327), 1, + STATE(1551), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1561), 1, sym_call, - STATE(1483), 1, + STATE(1621), 1, + sym_expression, + STATE(1842), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2527), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(938), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(457), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34402,19 +34628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(956), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34422,7 +34648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34439,55 +34665,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10852] = 28, - ACTIONS(764), 1, + [10630] = 26, + ACTIONS(936), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(940), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(942), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(946), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, + ACTIONS(948), 1, anon_sym_not, - ACTIONS(786), 1, + ACTIONS(954), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1187), 1, - anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(1170), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1551), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1561), 1, + sym_call, + STATE(1628), 1, sym_expression, - STATE(2453), 1, + STATE(1842), 1, + sym_selector_expression, + STATE(2527), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3130), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(938), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34496,18 +34719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(956), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34515,7 +34739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34532,52 +34756,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10973] = 26, - ACTIONS(23), 1, + [10747] = 26, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(55), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(547), 1, sym_string_start, - ACTIONS(898), 1, + ACTIONS(692), 1, + sym_identifier, + ACTIONS(1064), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(908), 1, + ACTIONS(1076), 1, anon_sym_DQUOTE, - ACTIONS(1189), 1, - sym_identifier, - ACTIONS(1191), 1, - anon_sym_not, - ACTIONS(1193), 1, + ACTIONS(1154), 1, anon_sym_, - STATE(293), 1, + STATE(245), 1, aux_sym_long_expression_repeat1, - STATE(1501), 1, + STATE(1435), 1, sym_call, - STATE(1513), 1, - sym_primary_expression, - STATE(1541), 1, + STATE(1473), 1, sym_expression, - STATE(1798), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(515), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(904), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34586,19 +34810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(543), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34606,7 +34830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34623,52 +34847,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11090] = 26, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(898), 1, + [10864] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(908), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(1189), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1191), 1, - anon_sym_not, - ACTIONS(1193), 1, + ACTIONS(1140), 1, anon_sym_, - STATE(293), 1, + STATE(248), 1, aux_sym_long_expression_repeat1, - STATE(1501), 1, - sym_call, - STATE(1513), 1, - sym_primary_expression, - STATE(1541), 1, + STATE(1171), 1, sym_expression, - STATE(1798), 1, + STATE(1354), 1, + sym_primary_expression, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(904), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(465), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34677,19 +34901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34697,7 +34921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34714,55 +34938,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11207] = 28, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + [10981] = 26, + ACTIONS(1014), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1195), 1, - anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1172), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1023), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1056), 1, sym_expression, - STATE(2453), 1, + STATE(1070), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3063), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(1012), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1024), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34771,18 +34992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(1030), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34790,7 +35012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34807,55 +35029,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11328] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [11098] = 26, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(431), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1174), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1182), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2308), 1, + STATE(1189), 1, sym_expression, - STATE(2442), 1, + STATE(1227), 1, + sym_call, + STATE(1315), 1, + sym_selector_expression, + STATE(2452), 1, sym_dotted_name, - STATE(2747), 1, - sym_slice, - STATE(3179), 1, + STATE(3180), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(409), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34864,18 +35083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34883,7 +35103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34900,55 +35120,54 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11449] = 28, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, + [11215] = 27, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(786), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1197), 1, - anon_sym_RPAREN, - STATE(1636), 1, + ACTIONS(692), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1643), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2405), 1, + STATE(2401), 1, sym_expression, - STATE(2453), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(1176), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -34957,18 +35176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34976,7 +35195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34993,52 +35212,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11570] = 26, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(898), 1, + [11334] = 28, + ACTIONS(768), 1, + sym_identifier, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(908), 1, - anon_sym_DQUOTE, - ACTIONS(1189), 1, - sym_identifier, - ACTIONS(1191), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, anon_sym_not, - ACTIONS(1199), 1, - anon_sym_, - STATE(229), 1, - aux_sym_long_expression_repeat1, - STATE(1501), 1, - sym_call, - STATE(1513), 1, + ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(1178), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(1533), 1, - sym_expression, - STATE(1798), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3164), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(904), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35047,19 +35269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35067,7 +35288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35084,52 +35305,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11687] = 26, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(898), 1, + [11455] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(908), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(1189), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(1191), 1, + ACTIONS(1112), 1, anon_sym_not, - ACTIONS(1193), 1, + ACTIONS(1114), 1, anon_sym_, - STATE(293), 1, + STATE(267), 1, aux_sym_long_expression_repeat1, - STATE(1501), 1, - sym_call, - STATE(1513), 1, - sym_primary_expression, - STATE(1541), 1, + STATE(1171), 1, sym_expression, - STATE(1798), 1, + STATE(1544), 1, + sym_primary_expression, + STATE(1660), 1, sym_selector_expression, - STATE(2490), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(904), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1058), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35138,19 +35359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35158,7 +35379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35175,55 +35396,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11804] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [11572] = 26, + ACTIONS(940), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(942), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(946), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(954), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(1042), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1473), 1, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1180), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1561), 1, sym_call, - STATE(1476), 1, + STATE(1573), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2290), 1, + STATE(1628), 1, sym_expression, - STATE(2442), 1, + STATE(1801), 1, + sym_selector_expression, + STATE(2470), 1, sym_dotted_name, - STATE(2759), 1, - sym_slice, - STATE(3179), 1, + STATE(3130), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(938), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35232,18 +35450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(956), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35251,7 +35470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35268,73 +35487,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11925] = 26, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1157), 1, + [11689] = 26, + ACTIONS(1182), 1, + sym_identifier, + ACTIONS(1188), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(1161), 1, + ACTIONS(1194), 1, + anon_sym_lambda, + ACTIONS(1197), 1, anon_sym_LBRACE, - ACTIONS(1169), 1, - anon_sym_DQUOTE, - ACTIONS(1201), 1, - sym_identifier, ACTIONS(1203), 1, + anon_sym_not, + ACTIONS(1209), 1, anon_sym_, + ACTIONS(1212), 1, + anon_sym_DQUOTE, + ACTIONS(1218), 1, + sym_string_start, STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(1636), 1, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1643), 1, + STATE(2034), 1, sym_primary_expression, - STATE(1822), 1, - sym_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2453), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2573), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(766), 2, + ACTIONS(1185), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1165), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1206), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(1200), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 6, + ACTIONS(1215), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35342,7 +35561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35359,52 +35578,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12042] = 26, - ACTIONS(445), 1, + [11806] = 28, + ACTIONS(768), 1, + sym_identifier, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, sym_string_start, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(942), 1, - anon_sym_, - STATE(220), 1, - aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, + ACTIONS(1221), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, + sym_selector_expression, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(890), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35413,19 +35635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35433,7 +35654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35450,52 +35671,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12159] = 26, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1157), 1, + [11927] = 26, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(1161), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(1169), 1, + ACTIONS(431), 1, anon_sym_DQUOTE, - ACTIONS(1201), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1138), 1, anon_sym_, - STATE(229), 1, + STATE(293), 1, aux_sym_long_expression_repeat1, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1801), 1, + STATE(1204), 1, sym_expression, - STATE(1953), 1, + STATE(1227), 1, + sym_call, + STATE(1315), 1, sym_selector_expression, - STATE(2453), 1, + STATE(2452), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(766), 2, + ACTIONS(409), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1165), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35504,19 +35725,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 6, + ACTIONS(437), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35524,7 +35745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35541,52 +35762,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12276] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(898), 1, + [12044] = 26, + ACTIONS(906), 1, anon_sym_LPAREN, - ACTIONS(900), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(902), 1, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(908), 1, + ACTIONS(920), 1, anon_sym_DQUOTE, - ACTIONS(1207), 1, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, anon_sym_, - STATE(229), 1, + STATE(223), 1, aux_sym_long_expression_repeat1, - STATE(1499), 1, + STATE(704), 1, sym_primary_expression, - STATE(1501), 1, - sym_call, - STATE(1533), 1, + STATE(755), 1, sym_expression, - STATE(1742), 1, + STATE(905), 1, + sym_call, + STATE(907), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2517), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(904), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1913), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(904), 3, + ACTIONS(916), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35595,19 +35816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(922), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35615,7 +35836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35632,52 +35853,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12393] = 26, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1157), 1, + [12161] = 28, + ACTIONS(768), 1, + sym_identifier, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1161), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1169), 1, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1201), 1, - sym_identifier, - ACTIONS(1203), 1, - anon_sym_, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(1223), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(1822), 1, - sym_expression, - STATE(1953), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2453), 1, + STATE(2426), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(766), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1165), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35686,19 +35910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 6, + ACTIONS(792), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35706,7 +35929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35723,55 +35946,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12510] = 28, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + [12282] = 26, + ACTIONS(1014), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1209), 1, - anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1124), 1, + anon_sym_, + STATE(292), 1, + aux_sym_long_expression_repeat1, + STATE(1023), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1058), 1, sym_expression, - STATE(2453), 1, + STATE(1070), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3063), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + ACTIONS(1012), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1024), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35780,18 +36000,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(1030), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35799,7 +36020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35816,55 +36037,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12631] = 28, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, + [12399] = 28, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(786), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1211), 1, - anon_sym_RPAREN, - STATE(1636), 1, + ACTIONS(692), 1, + sym_identifier, + ACTIONS(760), 1, + anon_sym_COLON, + STATE(1435), 1, sym_call, - STATE(1643), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2405), 1, + STATE(2318), 1, sym_expression, - STATE(2453), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(2751), 1, + sym_slice, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35873,18 +36094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35892,7 +36113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35909,54 +36130,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12752] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [12520] = 26, + ACTIONS(415), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(421), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(431), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(1134), 1, sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1138), 1, + anon_sym_, + STATE(293), 1, + aux_sym_long_expression_repeat1, + STATE(1182), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2406), 1, + STATE(1204), 1, sym_expression, - STATE(2442), 1, + STATE(1227), 1, + sym_call, + STATE(1315), 1, + sym_selector_expression, + STATE(2452), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3180), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(804), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + ACTIONS(409), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(429), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -35965,18 +36184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35984,7 +36204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36001,52 +36221,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12871] = 26, - ACTIONS(996), 1, + [12637] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(998), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1002), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(1010), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1213), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1217), 1, + ACTIONS(1140), 1, anon_sym_, - STATE(308), 1, + STATE(248), 1, aux_sym_long_expression_repeat1, - STATE(424), 1, - sym_primary_expression, - STATE(601), 1, + STATE(1171), 1, sym_expression, - STATE(856), 1, + STATE(1354), 1, + sym_primary_expression, + STATE(1414), 1, sym_call, - STATE(876), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2478), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(994), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1006), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(465), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36055,19 +36275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36075,7 +36295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36092,52 +36312,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12988] = 26, - ACTIONS(996), 1, + [12754] = 26, + ACTIONS(906), 1, anon_sym_LPAREN, - ACTIONS(998), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(1002), 1, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(1010), 1, + ACTIONS(920), 1, anon_sym_DQUOTE, - ACTIONS(1014), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1213), 1, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1215), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1217), 1, + ACTIONS(994), 1, anon_sym_, - STATE(308), 1, + STATE(223), 1, aux_sym_long_expression_repeat1, - STATE(424), 1, + STATE(704), 1, sym_primary_expression, - STATE(601), 1, + STATE(755), 1, sym_expression, - STATE(856), 1, + STATE(905), 1, sym_call, - STATE(876), 1, + STATE(907), 1, sym_selector_expression, - STATE(2478), 1, + STATE(2517), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(994), 2, + ACTIONS(904), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(956), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(957), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(1006), 3, + ACTIONS(916), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36146,19 +36366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 6, + ACTIONS(922), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36166,7 +36386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36183,52 +36403,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13105] = 26, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1157), 1, + [12871] = 26, + ACTIONS(940), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(942), 1, anon_sym_LBRACK, - ACTIONS(1161), 1, + ACTIONS(944), 1, + anon_sym_lambda, + ACTIONS(946), 1, anon_sym_LBRACE, - ACTIONS(1169), 1, + ACTIONS(954), 1, anon_sym_DQUOTE, - ACTIONS(1201), 1, + ACTIONS(958), 1, + sym_string_start, + ACTIONS(1042), 1, sym_identifier, - ACTIONS(1203), 1, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1046), 1, anon_sym_, - STATE(298), 1, + STATE(297), 1, aux_sym_long_expression_repeat1, - STATE(1636), 1, + STATE(1561), 1, sym_call, - STATE(1643), 1, + STATE(1573), 1, sym_primary_expression, - STATE(1822), 1, + STATE(1621), 1, sym_expression, - STATE(1953), 1, + STATE(1801), 1, sym_selector_expression, - STATE(2453), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(766), 2, + ACTIONS(938), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1165), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36237,19 +36457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 6, + ACTIONS(956), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36257,7 +36477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36274,55 +36494,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13222] = 28, - ACTIONS(764), 1, + [12988] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(888), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(892), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(900), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1219), 1, - anon_sym_RPAREN, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(1225), 1, + anon_sym_, + STATE(298), 1, + aux_sym_long_expression_repeat1, + STATE(1494), 1, sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1495), 1, + sym_call, + STATE(1602), 1, sym_expression, - STATE(2453), 1, + STATE(1642), 1, + sym_selector_expression, + STATE(2552), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3186), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(896), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36331,18 +36548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36350,7 +36568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36367,52 +36585,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13343] = 26, - ACTIONS(996), 1, + [13105] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(998), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(1002), 1, + ACTIONS(1094), 1, anon_sym_LBRACE, - ACTIONS(1010), 1, + ACTIONS(1096), 1, + anon_sym_not, + ACTIONS(1102), 1, anon_sym_DQUOTE, - ACTIONS(1014), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1213), 1, - sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1221), 1, + ACTIONS(1227), 1, anon_sym_, - STATE(229), 1, + STATE(298), 1, aux_sym_long_expression_repeat1, - STATE(424), 1, - sym_primary_expression, - STATE(617), 1, + STATE(468), 1, sym_expression, - STATE(856), 1, + STATE(630), 1, + sym_primary_expression, + STATE(881), 1, sym_call, - STATE(876), 1, + STATE(908), 1, sym_selector_expression, - STATE(2478), 1, + STATE(2499), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(994), 2, + ACTIONS(1086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(956), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(957), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1006), 3, + ACTIONS(1098), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36421,19 +36639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 6, + ACTIONS(1104), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36441,7 +36659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36458,52 +36676,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13460] = 26, - ACTIONS(996), 1, + [13222] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(998), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1002), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(1010), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1213), 1, + ACTIONS(962), 1, sym_identifier, - ACTIONS(1215), 1, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(1217), 1, + ACTIONS(1164), 1, anon_sym_, - STATE(308), 1, + STATE(207), 1, aux_sym_long_expression_repeat1, - STATE(424), 1, - sym_primary_expression, - STATE(601), 1, + STATE(1171), 1, sym_expression, - STATE(856), 1, + STATE(1335), 1, + sym_primary_expression, + STATE(1414), 1, sym_call, - STATE(876), 1, + STATE(1475), 1, sym_selector_expression, - STATE(2478), 1, + STATE(2532), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(994), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1006), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(465), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36512,19 +36730,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36532,7 +36750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36549,52 +36767,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13577] = 26, - ACTIONS(445), 1, + [13339] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(906), 1, anon_sym_LPAREN, - ACTIONS(447), 1, + ACTIONS(908), 1, anon_sym_LBRACK, - ACTIONS(449), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(451), 1, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(459), 1, + ACTIONS(914), 1, + anon_sym_not, + ACTIONS(920), 1, anon_sym_DQUOTE, - ACTIONS(467), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1028), 1, - sym_identifier, - ACTIONS(1030), 1, - anon_sym_not, - ACTIONS(1117), 1, + ACTIONS(970), 1, anon_sym_, - STATE(226), 1, + STATE(200), 1, aux_sym_long_expression_repeat1, - STATE(1170), 1, - sym_expression, - STATE(1519), 1, + STATE(568), 1, sym_primary_expression, - STATE(1634), 1, - sym_call, - STATE(1817), 1, + STATE(755), 1, + sym_expression, + STATE(879), 1, sym_selector_expression, - STATE(2514), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(441), 2, + ACTIONS(904), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(1032), 3, + ACTIONS(916), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36603,19 +36821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 6, + ACTIONS(922), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36623,7 +36841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36640,52 +36858,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13694] = 26, - ACTIONS(968), 1, + [13456] = 26, + ACTIONS(1084), 1, sym_identifier, - ACTIONS(972), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(974), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(976), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(978), 1, + ACTIONS(1094), 1, anon_sym_LBRACE, - ACTIONS(980), 1, + ACTIONS(1096), 1, anon_sym_not, - ACTIONS(986), 1, + ACTIONS(1100), 1, + anon_sym_, + ACTIONS(1102), 1, anon_sym_DQUOTE, - ACTIONS(990), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1022), 1, - anon_sym_, - STATE(214), 1, + STATE(310), 1, aux_sym_long_expression_repeat1, - STATE(1026), 1, + STATE(507), 1, sym_expression, - STATE(1027), 1, + STATE(630), 1, sym_primary_expression, - STATE(1063), 1, + STATE(881), 1, sym_call, - STATE(1070), 1, + STATE(908), 1, sym_selector_expression, - STATE(2504), 1, + STATE(2499), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(970), 2, + ACTIONS(1086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1100), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1108), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(982), 3, + ACTIONS(1098), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36694,19 +36912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 6, + ACTIONS(1104), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36714,7 +36932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36731,52 +36949,143 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13811] = 26, - ACTIONS(517), 1, + [13573] = 26, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(455), 1, + anon_sym_LBRACK, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(459), 1, + anon_sym_LBRACE, + ACTIONS(467), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(962), 1, sym_identifier, - ACTIONS(1103), 1, + ACTIONS(964), 1, + anon_sym_not, + ACTIONS(1164), 1, + anon_sym_, + STATE(207), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1335), 1, + sym_primary_expression, + STATE(1414), 1, + sym_call, + STATE(1475), 1, + sym_selector_expression, + STATE(2532), 1, + sym_dotted_name, + STATE(3261), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(449), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(465), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [13690] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1090), 1, anon_sym_LBRACK, - ACTIONS(1107), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + ACTIONS(1094), 1, anon_sym_LBRACE, - ACTIONS(1111), 1, + ACTIONS(1096), 1, + anon_sym_not, + ACTIONS(1100), 1, anon_sym_, - ACTIONS(1113), 1, + ACTIONS(1102), 1, anon_sym_DQUOTE, - STATE(281), 1, + ACTIONS(1106), 1, + sym_string_start, + STATE(310), 1, aux_sym_long_expression_repeat1, - STATE(1446), 1, + STATE(507), 1, sym_expression, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(630), 1, sym_primary_expression, - STATE(1572), 1, + STATE(881), 1, + sym_call, + STATE(908), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2499), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(1086), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1758), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1109), 3, + ACTIONS(1098), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36785,19 +37094,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(1104), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36805,7 +37114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36822,52 +37131,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13928] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(948), 1, + [13807] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(950), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(952), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(954), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(956), 1, - anon_sym_not, - ACTIONS(962), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(966), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1153), 1, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1132), 1, anon_sym_, - STATE(213), 1, + STATE(203), 1, aux_sym_long_expression_repeat1, - STATE(1561), 1, + STATE(1171), 1, sym_expression, - STATE(1614), 1, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1615), 1, + STATE(2034), 1, sym_primary_expression, - STATE(1632), 1, - sym_selector_expression, - STATE(2531), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1963), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(958), 3, + ACTIONS(932), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36876,19 +37185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36896,7 +37205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36913,52 +37222,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14045] = 26, - ACTIONS(407), 1, + [13924] = 26, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(455), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(423), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(896), 1, + ACTIONS(1112), 1, + anon_sym_not, + ACTIONS(1114), 1, anon_sym_, - STATE(284), 1, + STATE(267), 1, aux_sym_long_expression_repeat1, - STATE(1211), 1, - sym_call, - STATE(1213), 1, - sym_primary_expression, - STATE(1217), 1, + STATE(1171), 1, sym_expression, - STATE(1282), 1, + STATE(1544), 1, + sym_primary_expression, + STATE(1660), 1, sym_selector_expression, - STATE(2435), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(449), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(1058), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -36967,19 +37276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(473), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36987,7 +37296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37004,52 +37313,52 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14162] = 26, - ACTIONS(968), 1, + [14041] = 26, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - ACTIONS(972), 1, + ACTIONS(1064), 1, anon_sym_LPAREN, - ACTIONS(974), 1, + ACTIONS(1066), 1, anon_sym_LBRACK, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(978), 1, + ACTIONS(1068), 1, anon_sym_LBRACE, - ACTIONS(980), 1, - anon_sym_not, - ACTIONS(986), 1, + ACTIONS(1076), 1, anon_sym_DQUOTE, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1022), 1, + ACTIONS(1154), 1, anon_sym_, - STATE(214), 1, + STATE(245), 1, aux_sym_long_expression_repeat1, - STATE(1026), 1, + STATE(1435), 1, + sym_call, + STATE(1473), 1, sym_expression, - STATE(1027), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1063), 1, - sym_call, - STATE(1070), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2504), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(970), 2, + ACTIONS(515), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(982), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -37058,19 +37367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 6, + ACTIONS(543), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37078,7 +37387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37095,53 +37404,55 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14279] = 27, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1213), 1, + [14158] = 28, + ACTIONS(768), 1, sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1223), 1, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(794), 1, sym_float, - STATE(63), 1, - aux_sym_check_statement_repeat1, - STATE(424), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(1229), 1, + anon_sym_RPAREN, + STATE(1789), 1, sym_primary_expression, - STATE(856), 1, + STATE(1791), 1, sym_call, - STATE(876), 1, + STATE(1889), 1, sym_selector_expression, - STATE(1160), 1, + STATE(2426), 1, sym_expression, - STATE(2478), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -37150,18 +37461,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37169,7 +37480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37186,53 +37497,53 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14397] = 27, - ACTIONS(910), 1, + [14279] = 27, + ACTIONS(768), 1, sym_identifier, - ACTIONS(912), 1, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1237), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(794), 1, sym_float, - STATE(45), 1, - aux_sym_check_statement_repeat1, - STATE(823), 1, + ACTIONS(796), 1, + sym_string_start, + STATE(1789), 1, sym_primary_expression, - STATE(857), 1, + STATE(1791), 1, sym_call, - STATE(898), 1, + STATE(1889), 1, sym_selector_expression, - STATE(1167), 1, + STATE(2426), 1, sym_expression, - STATE(2502), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2941), 1, + sym_keyword_argument, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -37241,18 +37552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37260,7 +37571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37277,53 +37588,53 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14515] = 27, - ACTIONS(764), 1, + [14397] = 27, + ACTIONS(1084), 1, sym_identifier, - ACTIONS(766), 1, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + ACTIONS(1096), 1, + anon_sym_not, + ACTIONS(1106), 1, + sym_string_start, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(65), 1, + aux_sym_check_statement_repeat1, + STATE(630), 1, sym_primary_expression, - STATE(1953), 1, + STATE(881), 1, + sym_call, + STATE(908), 1, sym_selector_expression, - STATE(2405), 1, + STATE(1173), 1, sym_expression, - STATE(2453), 1, + STATE(2499), 1, sym_dotted_name, - STATE(2907), 1, - sym_keyword_argument, - STATE(3197), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -37332,18 +37643,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37351,7 +37662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37368,135 +37679,53 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14633] = 21, - ACTIONS(1255), 1, - anon_sym_LPAREN, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_STAR_STAR, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1267), 1, - anon_sym_not, - ACTIONS(1273), 1, - anon_sym_PIPE, - ACTIONS(1275), 1, - anon_sym_AMP, - ACTIONS(1277), 1, - anon_sym_CARET, - ACTIONS(1283), 1, - anon_sym_is, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(874), 1, - aux_sym_comparison_operator_repeat1, - STATE(915), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1269), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1271), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1279), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1259), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 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(1253), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [14738] = 26, - ACTIONS(401), 1, + [14515] = 27, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1257), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(78), 1, + aux_sym_check_statement_repeat1, + STATE(704), 1, sym_primary_expression, - STATE(1282), 1, + STATE(905), 1, + sym_call, + STATE(907), 1, sym_selector_expression, - STATE(2320), 1, - sym_dotted_name, - STATE(2515), 1, + STATE(1172), 1, sym_expression, - STATE(3176), 1, + STATE(2517), 1, + sym_dotted_name, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -37505,18 +37734,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37524,7 +37753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37541,51 +37770,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14853] = 26, - ACTIONS(507), 1, + [14633] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1216), 1, + sym_expression, + STATE(1227), 1, + sym_call, + STATE(1315), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2452), 1, sym_dotted_name, - STATE(2506), 1, - sym_expression, - STATE(3179), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -37594,18 +37823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37613,7 +37842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37630,51 +37859,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14968] = 26, - ACTIONS(401), 1, + [14748] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1273), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - STATE(1211), 1, + STATE(1561), 1, sym_call, - STATE(1213), 1, + STATE(1566), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1802), 1, sym_selector_expression, - STATE(2421), 1, - sym_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2588), 1, + sym_expression, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1853), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -37683,18 +37912,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37702,7 +37931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37719,7 +37948,9 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15083] = 26, + [14863] = 26, + ACTIONS(9), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_DOT, ACTIONS(19), 1, @@ -37730,6 +37961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(43), 1, anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, ACTIONS(49), 1, anon_sym_DQUOTE, ACTIONS(53), 1, @@ -37738,29 +37971,25 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(1189), 1, - sym_identifier, - ACTIONS(1191), 1, - anon_sym_not, - STATE(1501), 1, - sym_call, - STATE(1506), 1, - sym_expression, - STATE(1513), 1, + STATE(1494), 1, sym_primary_expression, - STATE(1798), 1, + STATE(1495), 1, + sym_call, + STATE(1642), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2421), 1, + sym_expression, + STATE(2552), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, ACTIONS(47), 3, @@ -37772,7 +38001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -37783,7 +38012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37791,7 +38020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37808,496 +38037,402 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15198] = 26, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [14978] = 6, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1295), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 25, + sym__dedent, sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1291), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, - sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, - sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2322), 1, - sym_dotted_name, - STATE(2456), 1, - sym_expression, - STATE(3176), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1297), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1289), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1375), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [15053] = 8, + ACTIONS(1291), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1295), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [15313] = 26, - ACTIONS(766), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 4, anon_sym_DOT, - ACTIONS(770), 1, + anon_sym_as, + anon_sym_if, + anon_sym_or, + ACTIONS(1299), 24, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(780), 1, - anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(790), 1, - sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, - sym_primary_expression, - STATE(1953), 1, - sym_selector_expression, - STATE(2441), 1, - sym_expression, - STATE(2453), 1, - sym_dotted_name, - STATE(3197), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(784), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1297), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(788), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2007), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [15132] = 8, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1295), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [15428] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1004), 1, - anon_sym_not, - ACTIONS(1014), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(1297), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(1291), 12, + sym__dedent, sym_string_start, - ACTIONS(1223), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, - sym_float, - STATE(427), 1, - sym_expression, - STATE(517), 1, - sym_primary_expression, - STATE(856), 1, - sym_call, - STATE(877), 1, - sym_selector_expression, - STATE(2475), 1, - sym_dotted_name, - STATE(3037), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1231), 3, - anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + sym_float, + ACTIONS(1299), 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(1289), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1012), 5, - sym_integer, - sym_true, - sym_false, - sym_none, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, sym_undefined, - STATE(974), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(975), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [15211] = 6, + ACTIONS(1301), 1, + anon_sym_and, + ACTIONS(1303), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [15543] = 26, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 25, sym_string_start, - ACTIONS(1213), 1, - sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1223), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, - sym_float, - STATE(424), 1, - sym_primary_expression, - STATE(856), 1, - sym_call, - STATE(876), 1, - sym_selector_expression, - STATE(1153), 1, - sym_expression, - STATE(2478), 1, - sym_dotted_name, - STATE(3037), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1231), 3, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1289), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1012), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + 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(974), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(975), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [15286] = 8, + ACTIONS(1291), 1, + anon_sym_QMARK_DOT, + ACTIONS(1301), 1, + anon_sym_and, + ACTIONS(1303), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [15658] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 4, anon_sym_DOT, - ACTIONS(952), 1, - anon_sym_lambda, - ACTIONS(956), 1, - anon_sym_not, - ACTIONS(966), 1, + anon_sym_as, + anon_sym_if, + anon_sym_or, + ACTIONS(1299), 24, sym_string_start, - ACTIONS(1303), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, - anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(1315), 1, - sym_float, - STATE(1614), 1, - sym_call, - STATE(1615), 1, - sym_primary_expression, - STATE(1632), 1, - sym_selector_expression, - STATE(2341), 1, - sym_expression, - STATE(2531), 1, - sym_dotted_name, - STATE(3132), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1963), 2, - sym_binary_operator, - sym_subscript, - STATE(1964), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1311), 3, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1297), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(964), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1958), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [15773] = 26, - ACTIONS(970), 1, + [15365] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1271), 1, sym_float, - STATE(1025), 1, + ACTIONS(1305), 1, + sym_identifier, + STATE(1222), 1, sym_primary_expression, - STATE(1039), 1, - sym_expression, - STATE(1063), 1, + STATE(1227), 1, sym_call, - STATE(1079), 1, + STATE(1311), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2568), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1108), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -38306,18 +38441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38325,7 +38460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38342,51 +38477,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15888] = 26, - ACTIONS(441), 1, + [15480] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1085), 1, + ACTIONS(1305), 1, sym_identifier, - ACTIONS(1087), 1, + ACTIONS(1307), 1, anon_sym_not, - STATE(1530), 1, + STATE(1222), 1, sym_primary_expression, - STATE(1589), 1, - sym_expression, - STATE(1634), 1, + STATE(1227), 1, sym_call, - STATE(1827), 1, + STATE(1311), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2568), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -38395,18 +38530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38414,7 +38549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38431,51 +38566,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16003] = 26, - ACTIONS(912), 1, + [15595] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1093), 1, + ACTIONS(1120), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1122), 1, anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1321), 1, sym_float, - STATE(319), 1, + STATE(1023), 1, sym_primary_expression, - STATE(413), 1, + STATE(1028), 1, sym_expression, - STATE(857), 1, - sym_call, - STATE(879), 1, + STATE(1070), 1, sym_selector_expression, - STATE(2487), 1, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -38484,18 +38619,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38503,7 +38638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38520,51 +38655,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16118] = 26, - ACTIONS(13), 1, + [15710] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1309), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + anon_sym_LBRACK, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1189), 1, - sym_identifier, - ACTIONS(1191), 1, - anon_sym_not, - STATE(1501), 1, - sym_call, - STATE(1513), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1538), 1, + STATE(1036), 1, sym_expression, - STATE(1798), 1, + STATE(1070), 1, sym_selector_expression, - STATE(2490), 1, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -38573,18 +38708,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38592,7 +38727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38609,51 +38744,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16233] = 26, - ACTIONS(946), 1, + [15825] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1121), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - STATE(1495), 1, - sym_primary_expression, - STATE(1608), 1, - sym_expression, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1830), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2277), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -38662,18 +38797,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38681,7 +38816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38698,51 +38833,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16348] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(946), 1, + [15940] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1333), 1, - sym_identifier, - STATE(1596), 1, - sym_primary_expression, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1756), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2551), 1, + STATE(2274), 1, sym_expression, - STATE(3132), 1, + STATE(2454), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -38751,18 +38886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38770,7 +38905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38787,51 +38922,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16463] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(970), 1, + [16055] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(980), 1, - anon_sym_not, - ACTIONS(990), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1271), 1, sym_float, - STATE(1027), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1220), 1, + sym_expression, + STATE(1227), 1, sym_call, - STATE(1070), 1, + STATE(1315), 1, sym_selector_expression, - STATE(2009), 1, - sym_expression, - STATE(2504), 1, + STATE(2452), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -38840,18 +38975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38859,7 +38994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38876,51 +39011,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16578] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [16170] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, - sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1486), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1414), 1, sym_call, - STATE(2492), 1, + STATE(1427), 1, + sym_selector_expression, + STATE(2507), 1, sym_dotted_name, STATE(2553), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -38929,18 +39064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38948,7 +39083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38965,140 +39100,323 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16693] = 26, - ACTIONS(441), 1, - anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, + [16285] = 4, + STATE(545), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1325), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, - anon_sym_not, - STATE(1327), 1, - sym_primary_expression, - STATE(1344), 1, - sym_expression, - STATE(1369), 1, - sym_call, - STATE(1483), 1, - sym_selector_expression, - STATE(2501), 1, - sym_dotted_name, - STATE(3223), 1, - sym_quant_op, + ACTIONS(1323), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16356] = 4, + STATE(339), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(559), 3, + ACTIONS(1329), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1327), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(465), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1284), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [16427] = 4, + STATE(832), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1325), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1323), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16498] = 8, + ACTIONS(1301), 1, + anon_sym_and, + ACTIONS(1303), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [16808] = 26, - ACTIONS(401), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(1297), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(1291), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1299), 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(1289), 25, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(431), 1, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16577] = 26, + ACTIONS(938), 1, + anon_sym_DOT, + ACTIONS(944), 1, + anon_sym_lambda, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(1042), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1044), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - STATE(1180), 1, - sym_expression, - STATE(1196), 1, - sym_primary_expression, - STATE(1211), 1, + STATE(1561), 1, sym_call, - STATE(1241), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1585), 1, + sym_expression, + STATE(1801), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1908), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -39107,18 +39425,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39126,7 +39444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39143,51 +39461,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16923] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [16692] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(958), 1, + sym_string_start, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(1277), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, - sym_primary_expression, - STATE(1501), 1, + STATE(1556), 1, + sym_expression, + STATE(1561), 1, sym_call, - STATE(1742), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1801), 1, sym_selector_expression, STATE(2470), 1, sym_dotted_name, - STATE(2529), 1, - sym_expression, - STATE(3164), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -39196,18 +39514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39215,7 +39533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39232,51 +39550,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17038] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [16807] = 4, + STATE(341), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1329), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(43), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(53), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(55), 1, + ACTIONS(1327), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16878] = 26, + ACTIONS(938), 1, + anon_sym_DOT, + ACTIONS(944), 1, + anon_sym_lambda, + ACTIONS(958), 1, sym_string_start, - ACTIONS(180), 1, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(1277), 1, anon_sym_LBRACK, - STATE(1499), 1, - sym_primary_expression, - STATE(1501), 1, + ACTIONS(1279), 1, + anon_sym_LBRACE, + ACTIONS(1281), 1, + anon_sym_QMARK_DOT, + ACTIONS(1285), 1, + anon_sym_DQUOTE, + ACTIONS(1287), 1, + sym_float, + STATE(1561), 1, sym_call, - STATE(1742), 1, - sym_selector_expression, - STATE(2349), 1, + STATE(1562), 1, sym_expression, + STATE(1573), 1, + sym_primary_expression, + STATE(1801), 1, + sym_selector_expression, STATE(2470), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -39285,18 +39670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39304,7 +39689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39321,9 +39706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17153] = 26, - ACTIONS(9), 1, - sym_identifier, + [16993] = 26, ACTIONS(13), 1, anon_sym_DOT, ACTIONS(19), 1, @@ -39334,8 +39717,6 @@ 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, @@ -39344,25 +39725,29 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(180), 1, anon_sym_LBRACK, - STATE(1499), 1, - sym_primary_expression, - STATE(1501), 1, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(1534), 1, + STATE(1549), 1, + sym_primary_expression, + STATE(1598), 1, sym_expression, - STATE(1742), 1, + STATE(1753), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, ACTIONS(47), 3, @@ -39374,7 +39759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -39385,7 +39770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39393,7 +39778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39410,51 +39795,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17268] = 26, - ACTIONS(441), 1, + [17108] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1096), 1, + anon_sym_not, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1028), 1, - sym_identifier, - ACTIONS(1030), 1, - anon_sym_not, - STATE(1519), 1, + STATE(442), 1, + sym_expression, + STATE(630), 1, sym_primary_expression, - STATE(1634), 1, + STATE(881), 1, sym_call, - STATE(1817), 1, + STATE(908), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2514), 1, + STATE(2499), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -39463,18 +39848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39482,7 +39867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39499,140 +39884,187 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17383] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, + [17223] = 6, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1295), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1333), 25, + sym__dedent, sym_string_start, - ACTIONS(1223), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, - sym_float, - ACTIONS(1337), 1, - sym_identifier, - STATE(405), 1, - sym_primary_expression, - STATE(856), 1, - sym_call, - STATE(881), 1, - sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2561), 1, - sym_expression, - STATE(3037), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1231), 3, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1331), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1012), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + 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(1250), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(975), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [17498] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [17298] = 4, + ACTIONS(1339), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1337), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(537), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1141), 1, + ACTIONS(1335), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [17369] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(1143), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, anon_sym_not, - STATE(1438), 1, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(1468), 1, - sym_expression, - STATE(1473), 1, + STATE(1495), 1, sym_call, - STATE(1521), 1, + STATE(1642), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2550), 1, + sym_expression, + STATE(2552), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -39641,18 +40073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39660,7 +40092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39677,51 +40109,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17613] = 26, - ACTIONS(766), 1, + [17484] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(774), 1, - anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(786), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1495), 1, + sym_call, + STATE(1642), 1, sym_selector_expression, - STATE(2403), 1, + STATE(2328), 1, sym_expression, - STATE(2453), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -39730,18 +40162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39749,7 +40181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39766,51 +40198,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17728] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, + [17599] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1317), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1339), 1, - sym_identifier, - STATE(1043), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1495), 1, sym_call, - STATE(1068), 1, + STATE(1600), 1, + sym_expression, + STATE(1642), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2552), 1, sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3064), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1325), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -39819,18 +40251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39838,7 +40270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39855,51 +40287,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17843] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, + [17714] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1317), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(1339), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, sym_identifier, - STATE(1030), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1791), 1, sym_call, - STATE(1068), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2559), 1, + STATE(2379), 1, sym_expression, - STATE(3064), 1, + STATE(2529), 1, + sym_dotted_name, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1325), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -39908,18 +40340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39927,7 +40359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39944,118 +40376,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17958] = 4, - ACTIONS(1345), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1341), 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(1343), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [17829] = 26, + ACTIONS(1084), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [18029] = 26, - ACTIONS(401), 1, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1096), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1243), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(472), 1, + sym_expression, + STATE(630), 1, sym_primary_expression, - STATE(1282), 1, + STATE(881), 1, + sym_call, + STATE(908), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2499), 1, sym_dotted_name, - STATE(2520), 1, - sym_expression, - STATE(3176), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(940), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -40064,18 +40429,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40083,7 +40448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40100,51 +40465,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18144] = 26, - ACTIONS(401), 1, + [17944] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1096), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1243), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(630), 1, sym_primary_expression, - STATE(1282), 1, + STATE(881), 1, + sym_call, + STATE(908), 1, sym_selector_expression, - STATE(2329), 1, - sym_dotted_name, - STATE(2437), 1, + STATE(1161), 1, sym_expression, - STATE(3176), 1, + STATE(2499), 1, + sym_dotted_name, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(940), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -40153,18 +40518,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40172,7 +40537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40189,51 +40554,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18259] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, + [18059] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1339), 1, - sym_identifier, - STATE(1019), 1, + STATE(349), 1, + sym_expression, + STATE(498), 1, sym_primary_expression, - STATE(1063), 1, + STATE(881), 1, sym_call, - STATE(1068), 1, + STATE(884), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2504), 1, sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3064), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1325), 3, + STATE(940), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -40242,18 +40607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40261,7 +40626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40278,369 +40643,251 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18374] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1317), 1, + [18174] = 22, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, - anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, - anon_sym_DQUOTE, - ACTIONS(1329), 1, - sym_float, - ACTIONS(1339), 1, - sym_identifier, - STATE(1018), 1, - sym_primary_expression, - STATE(1063), 1, - sym_call, - STATE(1068), 1, - sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3064), 1, - sym_quant_op, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1365), 1, + anon_sym_PIPE, + ACTIONS(1367), 1, + anon_sym_AMP, + ACTIONS(1369), 1, + anon_sym_CARET, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1325), 3, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1371), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1351), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1373), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1345), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(27), 4, + sym_float, + ACTIONS(1341), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(988), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1139), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [18489] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [18281] = 22, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(1359), 1, anon_sym_not, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, - sym_primary_expression, - STATE(1501), 1, - sym_call, - STATE(1742), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3164), 1, - sym_quant_op, + ACTIONS(1365), 1, + anon_sym_PIPE, + ACTIONS(1367), 1, + anon_sym_AMP, + ACTIONS(1369), 1, + anon_sym_CARET, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1909), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1932), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1960), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [18604] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1371), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1351), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1373), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1343), 5, anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(990), 1, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1381), 8, + sym__dedent, sym_string_start, - ACTIONS(1317), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1321), 1, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(1323), 1, - anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(1329), 1, - sym_float, - ACTIONS(1339), 1, - sym_identifier, - STATE(1017), 1, - sym_primary_expression, - STATE(1063), 1, - sym_call, - STATE(1068), 1, - sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3064), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1108), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1325), 3, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + sym_float, + ACTIONS(1379), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(988), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1139), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [18719] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(990), 1, + [18388] = 5, + ACTIONS(1387), 1, + anon_sym_PIPE, + STATE(360), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1385), 25, + sym__dedent, sym_string_start, - ACTIONS(1317), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, - anon_sym_DQUOTE, - ACTIONS(1329), 1, - sym_float, - ACTIONS(1339), 1, - sym_identifier, - STATE(1046), 1, - sym_primary_expression, - STATE(1063), 1, - sym_call, - STATE(1068), 1, - sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3064), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1108), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1325), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1383), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(988), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1139), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [18834] = 4, - STATE(834), 1, - aux_sym_union_type_repeat1, + [18461] = 4, + ACTIONS(1394), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1349), 26, + ACTIONS(1392), 25, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -40652,7 +40899,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, @@ -40667,7 +40913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1347), 33, + ACTIONS(1390), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -40691,6 +40937,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, @@ -40701,7 +40948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [18905] = 26, + [18532] = 26, ACTIONS(9), 1, sym_identifier, ACTIONS(13), 1, @@ -40724,25 +40971,25 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(180), 1, anon_sym_LBRACK, - STATE(1499), 1, + STATE(1494), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1495), 1, sym_call, - STATE(1742), 1, + STATE(1642), 1, sym_selector_expression, - STATE(2434), 1, + STATE(2521), 1, sym_expression, - STATE(2470), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, ACTIONS(47), 3, @@ -40754,7 +41001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -40765,7 +41012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40773,7 +41020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40790,51 +41037,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19020] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [18647] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2476), 1, - sym_expression, - STATE(2484), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2520), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -40843,18 +41090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40862,7 +41109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40879,51 +41126,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19135] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, + [18762] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(1339), 1, - sym_identifier, - STATE(1014), 1, - sym_primary_expression, - STATE(1063), 1, + STATE(1554), 1, + sym_expression, + STATE(1561), 1, sym_call, - STATE(1068), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1801), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3064), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1908), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1325), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -40932,18 +41179,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40951,7 +41198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40968,118 +41215,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19250] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(527), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1353), 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(1351), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [18877] = 26, + ACTIONS(1084), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [19321] = 26, - ACTIONS(401), 1, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1096), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1243), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(630), 1, sym_primary_expression, - STATE(1282), 1, + STATE(881), 1, + sym_call, + STATE(908), 1, sym_selector_expression, - STATE(2408), 1, + STATE(1164), 1, sym_expression, - STATE(2435), 1, + STATE(2499), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(940), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -41088,18 +41268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41107,7 +41287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41124,407 +41304,582 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19436] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, - anon_sym_DOT, - ACTIONS(952), 1, - anon_sym_lambda, - ACTIONS(956), 1, - anon_sym_not, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1303), 1, + [18992] = 13, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, - anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, - anon_sym_DQUOTE, - ACTIONS(1315), 1, - sym_float, - STATE(1614), 1, - sym_call, - STATE(1615), 1, - sym_primary_expression, - STATE(1632), 1, - sym_selector_expression, - STATE(2335), 1, - sym_expression, - STATE(2531), 1, - sym_dotted_name, - STATE(3132), 1, - sym_quant_op, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, - sym_binary_operator, - sym_subscript, - STATE(1964), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(964), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1958), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [19551] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, + [19081] = 14, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1349), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, + anon_sym_QMARK_DOT, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1371), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 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(1396), 30, + anon_sym_import, anon_sym_DOT, - ACTIONS(952), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(956), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1303), 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, + [19172] = 15, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, - anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, - anon_sym_DQUOTE, - ACTIONS(1315), 1, - sym_float, - STATE(1614), 1, - sym_call, - STATE(1615), 1, - sym_primary_expression, - STATE(1632), 1, - sym_selector_expression, - STATE(2334), 1, - sym_expression, - STATE(2531), 1, - sym_dotted_name, - STATE(3132), 1, - sym_quant_op, + ACTIONS(1369), 1, + anon_sym_CARET, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, - sym_binary_operator, - sym_subscript, - STATE(1964), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1371), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(964), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1958), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [19666] = 26, - ACTIONS(946), 1, + [19265] = 16, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1349), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, + anon_sym_QMARK_DOT, + ACTIONS(1367), 1, + anon_sym_AMP, + ACTIONS(1369), 1, + anon_sym_CARET, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1371), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 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(1396), 30, + anon_sym_import, anon_sym_DOT, - ACTIONS(952), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1303), 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, + [19360] = 12, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, - anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, - anon_sym_DQUOTE, - ACTIONS(1315), 1, - sym_float, - STATE(1495), 1, - sym_primary_expression, - STATE(1574), 1, - sym_expression, - STATE(1614), 1, - sym_call, - STATE(1830), 1, - sym_selector_expression, - STATE(2498), 1, - sym_dotted_name, - STATE(3132), 1, - sym_quant_op, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, - sym_binary_operator, - sym_subscript, - STATE(1964), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(964), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1958), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [19781] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1317), 1, + [19447] = 10, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, - anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1398), 21, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1329), 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(1339), 1, + ACTIONS(1396), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1040), 1, - sym_primary_expression, - STATE(1063), 1, - sym_call, - STATE(1068), 1, - sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3064), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [19530] = 10, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1349), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, + anon_sym_QMARK_DOT, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1325), 3, + ACTIONS(1398), 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(988), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1139), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [19896] = 26, - ACTIONS(912), 1, + [19613] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(1355), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - STATE(819), 1, - sym_primary_expression, - STATE(857), 1, + STATE(1435), 1, sym_call, - STATE(885), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(2349), 1, sym_expression, - STATE(3095), 1, + STATE(2464), 1, + sym_dotted_name, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -41533,18 +41888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41552,7 +41907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41569,51 +41924,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20011] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, + [19728] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(922), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1237), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(571), 1, sym_float, - STATE(823), 1, + STATE(1354), 1, sym_primary_expression, - STATE(857), 1, + STATE(1414), 1, sym_call, - STATE(898), 1, + STATE(1427), 1, sym_selector_expression, - STATE(1150), 1, + STATE(2413), 1, sym_expression, - STATE(2502), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -41622,18 +41977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41641,7 +41996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41658,51 +42013,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20126] = 26, - ACTIONS(766), 1, - anon_sym_DOT, + [19843] = 26, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, ACTIONS(786), 1, - anon_sym_DQUOTE, + anon_sym_not, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(976), 1, sym_identifier, - ACTIONS(1163), 1, - anon_sym_not, - STATE(1636), 1, - sym_call, - STATE(1647), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1722), 1, - sym_expression, - STATE(1846), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2558), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -41711,18 +42066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41730,7 +42085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41747,51 +42102,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20241] = 26, - ACTIONS(507), 1, + [19958] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, + ACTIONS(1054), 1, sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(1056), 1, + anon_sym_not, + STATE(1587), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1661), 1, + sym_call, + STATE(1786), 1, sym_selector_expression, - STATE(2356), 1, + STATE(2341), 1, sym_expression, - STATE(2442), 1, + STATE(2531), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -41800,18 +42155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41819,7 +42174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41836,51 +42191,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20356] = 26, - ACTIONS(507), 1, + [20073] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + ACTIONS(1106), 1, + sym_string_start, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, + ACTIONS(1402), 1, sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(358), 1, sym_primary_expression, - STATE(1572), 1, + STATE(881), 1, + sym_call, + STATE(885), 1, sym_selector_expression, - STATE(2379), 1, - sym_expression, - STATE(2442), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2582), 1, + sym_expression, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -41889,18 +42244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41908,7 +42263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41925,51 +42280,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20471] = 26, - ACTIONS(970), 1, + [20188] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1243), 1, sym_float, - STATE(1025), 1, + ACTIONS(1402), 1, + sym_identifier, + STATE(359), 1, sym_primary_expression, - STATE(1038), 1, - sym_expression, - STATE(1063), 1, + STATE(881), 1, sym_call, - STATE(1079), 1, + STATE(885), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2586), 1, + sym_expression, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -41978,18 +42333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41997,7 +42352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42014,140 +42369,136 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20586] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(980), 1, - anon_sym_not, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1317), 1, + [20303] = 22, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, - anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, - anon_sym_DQUOTE, - ACTIONS(1329), 1, - sym_float, - STATE(1027), 1, - sym_primary_expression, - STATE(1063), 1, - sym_call, - STATE(1070), 1, - sym_selector_expression, - STATE(1984), 1, - sym_expression, - STATE(2504), 1, - sym_dotted_name, - STATE(3064), 1, - sym_quant_op, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1365), 1, + anon_sym_PIPE, + ACTIONS(1367), 1, + anon_sym_AMP, + ACTIONS(1369), 1, + anon_sym_CARET, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1325), 3, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1371), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1351), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1373), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1406), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(27), 4, + sym_float, + ACTIONS(1404), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(988), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1139), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [20701] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [20410] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1028), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(1030), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1519), 1, - sym_primary_expression, - STATE(1634), 1, - sym_call, - STATE(1817), 1, + STATE(1198), 1, sym_selector_expression, - STATE(2315), 1, - sym_expression, - STATE(2514), 1, + STATE(1414), 1, + sym_call, + STATE(1988), 1, + sym_primary_expression, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2576), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42156,18 +42507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42175,7 +42526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42192,51 +42543,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20816] = 26, - ACTIONS(401), 1, + [20525] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1042), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - STATE(1211), 1, + STATE(1561), 1, sym_call, - STATE(1213), 1, + STATE(1573), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1613), 1, + sym_expression, + STATE(1801), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2472), 1, - sym_expression, - STATE(3176), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1908), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42245,18 +42596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42264,7 +42615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42281,51 +42632,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20931] = 26, - ACTIONS(441), 1, - anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, + [20640] = 4, + ACTIONS(1414), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1412), 25, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 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(938), 1, + ACTIONS(1410), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(940), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [20711] = 26, + ACTIONS(409), 1, + anon_sym_DOT, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2033), 1, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_QMARK_DOT, + ACTIONS(1269), 1, + anon_sym_DQUOTE, + ACTIONS(1271), 1, + sym_float, + STATE(1182), 1, sym_primary_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(1195), 1, sym_expression, - STATE(3223), 1, + STATE(1227), 1, + sym_call, + STATE(1315), 1, + sym_selector_expression, + STATE(2452), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42334,18 +42752,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42353,7 +42771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42370,51 +42788,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21046] = 26, - ACTIONS(441), 1, + [20826] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(1402), 1, sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(1998), 1, + STATE(366), 1, sym_primary_expression, - STATE(2492), 1, + STATE(881), 1, + sym_call, + STATE(885), 1, + sym_selector_expression, + STATE(2537), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2586), 1, sym_expression, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42423,18 +42841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42442,7 +42860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42459,51 +42877,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21161] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [20941] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(1359), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1998), 1, + STATE(1987), 1, sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2576), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42512,18 +42930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42531,7 +42949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42548,51 +42966,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21276] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [21056] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(2011), 1, + STATE(1986), 1, sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2576), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42601,18 +43019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42620,7 +43038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42637,51 +43055,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21391] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [21171] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(2014), 1, + STATE(1985), 1, sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2576), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42690,18 +43108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42709,7 +43127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42726,51 +43144,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21506] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [21286] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(2016), 1, + STATE(1984), 1, sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2576), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42779,18 +43197,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42798,7 +43216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42815,51 +43233,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21621] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [21401] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(2027), 1, + STATE(1983), 1, sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2576), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42868,18 +43286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42887,7 +43305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42904,51 +43322,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21736] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [21516] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(2035), 1, + STATE(1982), 1, sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2576), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -42957,18 +43375,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42976,7 +43394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42993,51 +43411,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21851] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [21631] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(2040), 1, + STATE(1981), 1, sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2565), 1, + STATE(2576), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43046,18 +43464,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43065,7 +43483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43082,51 +43500,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21966] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [21746] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(1966), 1, + STATE(1354), 1, sym_primary_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, + sym_selector_expression, + STATE(2414), 1, sym_expression, - STATE(3223), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43135,18 +43553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43154,7 +43572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43171,51 +43589,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22081] = 26, - ACTIONS(940), 1, + [21861] = 26, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(946), 1, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1333), 1, + ACTIONS(1402), 1, sym_identifier, - STATE(1535), 1, + STATE(367), 1, sym_primary_expression, - STATE(1614), 1, + STATE(881), 1, sym_call, - STATE(1756), 1, + STATE(885), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2586), 1, sym_expression, - STATE(3132), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1963), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43224,18 +43642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43243,7 +43661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43260,51 +43678,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22196] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, + [21976] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(956), 1, - anon_sym_not, - ACTIONS(966), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(571), 1, sym_float, - STATE(1614), 1, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(1416), 1, + anon_sym_not, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1615), 1, + STATE(1980), 1, sym_primary_expression, - STATE(1632), 1, - sym_selector_expression, - STATE(2332), 1, - sym_expression, - STATE(2531), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3132), 1, + STATE(2576), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43313,18 +43731,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43332,7 +43750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43349,51 +43767,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22311] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [22091] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1106), 1, + sym_string_start, + ACTIONS(1231), 1, + anon_sym_LPAREN, + ACTIONS(1233), 1, + anon_sym_LBRACK, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, + ACTIONS(1402), 1, + sym_identifier, + STATE(368), 1, sym_primary_expression, - STATE(1501), 1, + STATE(881), 1, sym_call, - STATE(1742), 1, + STATE(885), 1, sym_selector_expression, - STATE(2311), 1, - sym_expression, - STATE(2470), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3164), 1, + STATE(2586), 1, + sym_expression, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43402,18 +43820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43421,7 +43839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43438,51 +43856,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22426] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(946), 1, + [22206] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1333), 1, + ACTIONS(928), 1, sym_identifier, - STATE(1585), 1, - sym_primary_expression, - STATE(1614), 1, - sym_call, - STATE(1756), 1, + ACTIONS(930), 1, + anon_sym_not, + STATE(1198), 1, sym_selector_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(1980), 1, + sym_primary_expression, + STATE(2537), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2576), 1, sym_expression, - STATE(3132), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1963), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43491,18 +43909,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43510,7 +43928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43527,51 +43945,119 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22541] = 26, - ACTIONS(940), 1, + [22321] = 5, + ACTIONS(1303), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 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(1289), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(946), 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, + [22394] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1333), 1, + ACTIONS(1402), 1, sym_identifier, - STATE(1584), 1, + STATE(369), 1, sym_primary_expression, - STATE(1614), 1, + STATE(881), 1, sym_call, - STATE(1756), 1, + STATE(885), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2586), 1, sym_expression, - STATE(3132), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1963), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43580,18 +44066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43599,7 +44085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43616,51 +44102,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22656] = 26, - ACTIONS(441), 1, + [22509] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1243), 1, sym_float, - STATE(1364), 1, + ACTIONS(1402), 1, + sym_identifier, + STATE(370), 1, sym_primary_expression, - STATE(1369), 1, + STATE(881), 1, sym_call, - STATE(1422), 1, + STATE(885), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2528), 1, + STATE(2586), 1, sym_expression, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43669,18 +44155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43688,7 +44174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43705,51 +44191,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22771] = 26, - ACTIONS(940), 1, + [22624] = 26, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(946), 1, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1333), 1, + ACTIONS(1402), 1, sym_identifier, - STATE(1582), 1, + STATE(371), 1, sym_primary_expression, - STATE(1614), 1, + STATE(881), 1, sym_call, - STATE(1756), 1, + STATE(885), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2586), 1, sym_expression, - STATE(3132), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1963), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43758,18 +44244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43777,7 +44263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43794,51 +44280,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22886] = 26, - ACTIONS(940), 1, + [22739] = 26, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(946), 1, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1333), 1, + ACTIONS(1402), 1, sym_identifier, - STATE(1581), 1, + STATE(372), 1, sym_primary_expression, - STATE(1614), 1, + STATE(881), 1, sym_call, - STATE(1756), 1, + STATE(885), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2586), 1, sym_expression, - STATE(3132), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1963), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43847,18 +44333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43866,7 +44352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43883,51 +44369,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23001] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(946), 1, + [22854] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1333), 1, - sym_identifier, - STATE(1580), 1, + STATE(328), 1, + sym_expression, + STATE(498), 1, sym_primary_expression, - STATE(1614), 1, + STATE(881), 1, sym_call, - STATE(1756), 1, + STATE(884), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2504), 1, sym_dotted_name, - STATE(2551), 1, - sym_expression, - STATE(3132), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1963), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -43936,18 +44422,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43955,7 +44441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43972,51 +44458,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23116] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(946), 1, + [22969] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1096), 1, + anon_sym_not, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1333), 1, - sym_identifier, - STATE(1579), 1, + STATE(630), 1, sym_primary_expression, - STATE(1614), 1, + STATE(881), 1, sym_call, - STATE(1756), 1, + STATE(908), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2551), 1, + STATE(1162), 1, sym_expression, - STATE(3132), 1, + STATE(2499), 1, + sym_dotted_name, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1963), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44025,18 +44511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44044,7 +44530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44061,51 +44547,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23231] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(946), 1, + [23084] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1096), 1, + anon_sym_not, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1333), 1, - sym_identifier, - STATE(1578), 1, + STATE(630), 1, sym_primary_expression, - STATE(1614), 1, + STATE(881), 1, sym_call, - STATE(1756), 1, + STATE(908), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2551), 1, + STATE(1165), 1, sym_expression, - STATE(3132), 1, + STATE(2499), 1, + sym_dotted_name, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1963), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44114,18 +44600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44133,7 +44619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44150,51 +44636,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23346] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(970), 1, + [23199] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(980), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(990), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1271), 1, sym_float, - STATE(1027), 1, - sym_primary_expression, - STATE(1063), 1, + ACTIONS(1418), 1, + sym_identifier, + STATE(1227), 1, sym_call, - STATE(1070), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2002), 1, - sym_expression, - STATE(2504), 1, + STATE(2337), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2497), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44203,18 +44689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44222,7 +44708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44239,51 +44725,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23461] = 26, - ACTIONS(441), 1, + [23314] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, - sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1497), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1561), 1, sym_call, - STATE(2492), 1, - sym_dotted_name, - STATE(2553), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1629), 1, sym_expression, - STATE(3223), 1, + STATE(1801), 1, + sym_selector_expression, + STATE(2470), 1, + sym_dotted_name, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44292,18 +44778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44311,7 +44797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44328,51 +44814,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23576] = 26, - ACTIONS(441), 1, + [23429] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1335), 1, - sym_identifier, - ACTIONS(1361), 1, - anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1497), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1227), 1, sym_call, - STATE(2492), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, + sym_selector_expression, + STATE(2454), 1, sym_dotted_name, - STATE(2553), 1, + STATE(2459), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44381,18 +44867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44400,7 +44886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44417,51 +44903,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23691] = 26, - ACTIONS(970), 1, + [23544] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1339), 1, + ACTIONS(1402), 1, sym_identifier, - ACTIONS(1363), 1, + ACTIONS(1420), 1, anon_sym_not, - STATE(1050), 1, + STATE(379), 1, sym_primary_expression, - STATE(1063), 1, + STATE(881), 1, sym_call, - STATE(1068), 1, + STATE(885), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2559), 1, + STATE(2586), 1, sym_expression, - STATE(3064), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1325), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44470,18 +44956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44489,7 +44975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44506,51 +44992,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23806] = 26, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, + [23659] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(53), 1, sym_float, - STATE(1194), 1, - sym_expression, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1495), 1, + sym_call, + STATE(1614), 1, + sym_expression, + STATE(1642), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44559,18 +45045,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44578,7 +45064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44595,51 +45081,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23921] = 26, - ACTIONS(940), 1, + [23774] = 26, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(970), 1, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1339), 1, + ACTIONS(1402), 1, sym_identifier, - STATE(1050), 1, + STATE(379), 1, sym_primary_expression, - STATE(1063), 1, + STATE(881), 1, sym_call, - STATE(1068), 1, + STATE(885), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2559), 1, + STATE(2586), 1, sym_expression, - STATE(3064), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1325), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44648,18 +45134,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44667,7 +45153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44684,51 +45170,119 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24036] = 26, - ACTIONS(401), 1, + [23889] = 5, + ACTIONS(1303), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1422), 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(1424), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [23962] = 26, + ACTIONS(409), 1, + anon_sym_DOT, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2365), 1, - sym_dotted_name, - STATE(2527), 1, + STATE(2407), 1, sym_expression, - STATE(3176), 1, + STATE(2454), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44737,18 +45291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44756,7 +45310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44773,51 +45327,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24151] = 26, - ACTIONS(401), 1, + [24077] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(940), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1365), 1, - sym_identifier, - STATE(1211), 1, - sym_call, - STATE(1221), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1292), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2547), 1, + STATE(2283), 1, sym_expression, - STATE(3176), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44826,18 +45380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44845,7 +45399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44862,51 +45416,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24266] = 26, - ACTIONS(401), 1, + [24192] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2265), 1, - sym_expression, - STATE(2435), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2514), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -44915,18 +45469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44934,7 +45488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44951,124 +45505,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24381] = 10, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, - anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1369), 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(1367), 32, - anon_sym_import, + [24307] = 26, + ACTIONS(409), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + ACTIONS(419), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(427), 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, - [24464] = 26, - ACTIONS(9), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, - sym_primary_expression, - STATE(1501), 1, + STATE(1227), 1, sym_call, - STATE(1520), 1, - sym_expression, - STATE(1742), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2382), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45077,18 +45558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45096,7 +45577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45113,51 +45594,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24579] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [24422] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1028), 1, - sym_identifier, - ACTIONS(1030), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1519), 1, + ACTIONS(1426), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1410), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1414), 1, sym_call, - STATE(1817), 1, - sym_selector_expression, - STATE(2354), 1, - sym_expression, - STATE(2514), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2585), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45166,18 +45647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45185,7 +45666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45202,51 +45683,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24694] = 26, - ACTIONS(441), 1, + [24537] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1028), 1, + ACTIONS(1418), 1, sym_identifier, - ACTIONS(1030), 1, - anon_sym_not, - STATE(1519), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1227), 1, sym_call, - STATE(1817), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2361), 1, - sym_expression, - STATE(2514), 1, + STATE(2343), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2551), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45255,18 +45736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45274,7 +45755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45291,51 +45772,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24809] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [24652] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1085), 1, + ACTIONS(962), 1, sym_identifier, - ACTIONS(1087), 1, + ACTIONS(964), 1, anon_sym_not, - STATE(1530), 1, + STATE(1335), 1, sym_primary_expression, - STATE(1531), 1, + STATE(1341), 1, sym_expression, - STATE(1634), 1, + STATE(1414), 1, sym_call, - STATE(1827), 1, + STATE(1475), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2532), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45344,18 +45825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45363,7 +45844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45380,51 +45861,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24924] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, + [24767] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1339), 1, + ACTIONS(1305), 1, sym_identifier, - STATE(1041), 1, + STATE(1218), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1227), 1, sym_call, - STATE(1068), 1, + STATE(1311), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2559), 1, + STATE(2568), 1, sym_expression, - STATE(3064), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1325), 3, + STATE(1355), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45433,18 +45914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45452,7 +45933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45469,51 +45950,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25039] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [24882] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, + ACTIONS(1305), 1, + sym_identifier, + STATE(1217), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1227), 1, sym_call, - STATE(1742), 1, + STATE(1311), 1, sym_selector_expression, - STATE(2383), 1, - sym_expression, - STATE(2470), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3164), 1, + STATE(2568), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45522,18 +46003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45541,7 +46022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45558,51 +46039,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25154] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(946), 1, + [24997] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1333), 1, + ACTIONS(1305), 1, sym_identifier, - STATE(1563), 1, + STATE(1215), 1, sym_primary_expression, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1756), 1, + STATE(1311), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2568), 1, sym_expression, - STATE(3132), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45611,18 +46092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45630,7 +46111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45647,255 +46128,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25269] = 5, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1381), 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(1383), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [25342] = 5, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1387), 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(1389), 32, - anon_sym_import, + [25112] = 26, + ACTIONS(409), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + ACTIONS(419), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [25415] = 5, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1391), 25, + ACTIONS(439), 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_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1393), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_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(1134), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [25488] = 26, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1136), 1, anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1206), 1, + STATE(1182), 1, + sym_primary_expression, + STATE(1186), 1, sym_expression, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, - sym_primary_expression, - STATE(1282), 1, + STATE(1315), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2452), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45904,18 +46181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45923,7 +46200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45940,51 +46217,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25603] = 26, - ACTIONS(401), 1, + [25227] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + ACTIONS(1418), 1, + sym_identifier, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2267), 1, - sym_expression, - STATE(2435), 1, + STATE(2360), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2498), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -45993,18 +46270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46012,7 +46289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46029,51 +46306,119 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25718] = 26, - ACTIONS(401), 1, + [25342] = 5, + ACTIONS(1295), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1430), 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(1428), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1131), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1133), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [25415] = 26, + ACTIONS(409), 1, + anon_sym_DOT, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1196), 1, + ACTIONS(1305), 1, + sym_identifier, + STATE(1214), 1, sym_primary_expression, - STATE(1207), 1, - sym_expression, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1241), 1, + STATE(1311), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2568), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1355), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -46082,18 +46427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46101,7 +46446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46118,51 +46463,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25833] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(946), 1, + [25530] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1333), 1, + ACTIONS(1305), 1, sym_identifier, - STATE(1562), 1, + STATE(1213), 1, sym_primary_expression, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1756), 1, + STATE(1311), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2567), 1, + STATE(2568), 1, sym_expression, - STATE(3132), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -46171,18 +46516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46190,7 +46535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46207,51 +46552,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25948] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(970), 1, + [25645] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(948), 1, + anon_sym_not, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(1339), 1, - sym_identifier, - STATE(1045), 1, + STATE(1551), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1561), 1, sym_call, - STATE(1068), 1, + STATE(1842), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2570), 1, + STATE(2353), 1, sym_expression, - STATE(3064), 1, + STATE(2527), 1, + sym_dotted_name, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1108), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1908), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1325), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -46260,18 +46605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1117), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46279,7 +46624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46296,51 +46641,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26063] = 26, - ACTIONS(13), 1, + [25760] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(1305), 1, sym_identifier, - STATE(1501), 1, - sym_call, - STATE(1542), 1, + STATE(1212), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1227), 1, + sym_call, + STATE(1311), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2568), 1, sym_expression, - STATE(3164), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -46349,18 +46694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46368,7 +46713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46385,51 +46730,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26178] = 26, - ACTIONS(13), 1, + [25875] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(1305), 1, sym_identifier, - STATE(1501), 1, - sym_call, - STATE(1545), 1, + STATE(1211), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1227), 1, + sym_call, + STATE(1311), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2568), 1, sym_expression, - STATE(3164), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -46438,18 +46783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46457,7 +46802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46474,15 +46819,16 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26293] = 5, - ACTIONS(1401), 1, - anon_sym_EQ, - STATE(356), 1, - aux_sym_union_type_repeat1, + [25990] = 5, + ACTIONS(1295), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1399), 26, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 25, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -46492,7 +46838,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, @@ -46509,7 +46854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1397), 32, + ACTIONS(1289), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -46542,65 +46887,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [26366] = 21, - ACTIONS(1371), 1, + [26063] = 5, + ACTIONS(1295), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1422), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1377), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1407), 1, - anon_sym_not, - ACTIONS(1413), 1, - anon_sym_PIPE, - ACTIONS(1415), 1, - anon_sym_AMP, - ACTIONS(1417), 1, - anon_sym_CARET, - ACTIONS(1423), 1, - anon_sym_is, - STATE(906), 1, - sym_argument_list, - STATE(1109), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1409), 2, - anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1411), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1419), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1403), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1251), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1253), 25, + ACTIONS(1424), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -46608,69 +46930,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [26471] = 26, - ACTIONS(507), 1, + [26136] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1425), 1, + ACTIONS(692), 1, sym_identifier, - STATE(1471), 1, - sym_primary_expression, - STATE(1473), 1, + STATE(1435), 1, sym_call, - STATE(1492), 1, + STATE(1456), 1, + sym_expression, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2557), 1, - sym_expression, - STATE(3179), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -46679,18 +47008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46698,7 +47027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46715,51 +47044,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26586] = 26, - ACTIONS(507), 1, + [26251] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, + ACTIONS(1305), 1, sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(1207), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1227), 1, + sym_call, + STATE(1311), 1, sym_selector_expression, - STATE(2285), 1, - sym_expression, - STATE(2442), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2568), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -46768,18 +47097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46787,7 +47116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46804,84 +47133,191 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26701] = 5, - ACTIONS(1427), 1, - anon_sym_PLUS, + [26366] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + anon_sym_LBRACE, + ACTIONS(565), 1, + anon_sym_QMARK_DOT, + ACTIONS(569), 1, + anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(930), 1, + anon_sym_not, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, + sym_call, + STATE(2035), 1, + sym_primary_expression, + STATE(2537), 1, + sym_dotted_name, + STATE(2576), 1, + sym_expression, + STATE(3261), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1235), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_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(1381), 25, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26481] = 26, + ACTIONS(409), 1, + anon_sym_DOT, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(439), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, + ACTIONS(1261), 1, anon_sym_LBRACK, + ACTIONS(1263), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, + ACTIONS(1269), 1, anon_sym_DQUOTE, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1305), 1, + sym_identifier, + STATE(1206), 1, + sym_primary_expression, + STATE(1227), 1, + sym_call, + STATE(1311), 1, + sym_selector_expression, + STATE(2537), 1, + sym_dotted_name, + STATE(2584), 1, + sym_expression, + STATE(3180), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1355), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1267), 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(1383), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1336), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(437), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [26774] = 5, - ACTIONS(1427), 1, - anon_sym_PLUS, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1339), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26596] = 4, + STATE(560), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1387), 25, + ACTIONS(1434), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -46891,6 +47327,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, @@ -46907,13 +47344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1389), 32, + ACTIONS(1432), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -46940,119 +47378,229 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [26847] = 5, - ACTIONS(1427), 1, - anon_sym_PLUS, + [26667] = 26, + ACTIONS(1012), 1, + anon_sym_DOT, + ACTIONS(1018), 1, + anon_sym_lambda, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1309), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + anon_sym_LBRACK, + ACTIONS(1313), 1, + anon_sym_LBRACE, + ACTIONS(1315), 1, + anon_sym_QMARK_DOT, + ACTIONS(1319), 1, + anon_sym_DQUOTE, + ACTIONS(1321), 1, + sym_float, + STATE(1023), 1, + sym_primary_expression, + STATE(1030), 1, + sym_expression, + STATE(1070), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2493), 1, + sym_dotted_name, + STATE(3063), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(1123), 2, + sym_binary_operator, + sym_subscript, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1107), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1030), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1121), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1088), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_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(1391), 25, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26782] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, + ACTIONS(557), 1, anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(565), 1, anon_sym_QMARK_DOT, + ACTIONS(569), 1, anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + STATE(1354), 1, + sym_primary_expression, + STATE(1414), 1, + sym_call, + STATE(1427), 1, + sym_selector_expression, + STATE(2507), 1, + sym_dotted_name, + STATE(2549), 1, + sym_expression, + STATE(3261), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 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(1393), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1631), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [26920] = 26, - ACTIONS(441), 1, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26897] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - STATE(1176), 1, + STATE(1023), 1, + sym_primary_expression, + STATE(1034), 1, + sym_expression, + STATE(1070), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1082), 1, sym_call, - STATE(2003), 1, - sym_primary_expression, - STATE(2492), 1, + STATE(2493), 1, sym_dotted_name, - STATE(2565), 1, - sym_expression, - STATE(3223), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47061,18 +47609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47080,7 +47628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47097,51 +47645,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27035] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + [27012] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(1004), 1, - anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1271), 1, sym_float, - STATE(517), 1, + STATE(1182), 1, sym_primary_expression, - STATE(809), 1, + STATE(1187), 1, sym_expression, - STATE(856), 1, + STATE(1227), 1, sym_call, - STATE(877), 1, + STATE(1315), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2452), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47150,18 +47698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47169,7 +47717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47186,51 +47734,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27150] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [27127] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2465), 1, + STATE(2480), 1, sym_expression, - STATE(2484), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47239,18 +47787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47258,7 +47806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47275,15 +47823,16 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27265] = 4, - STATE(681), 1, - aux_sym_union_type_repeat1, + [27242] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 26, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1438), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -47308,14 +47857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1431), 33, + ACTIONS(1436), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -47342,51 +47890,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [27336] = 26, - ACTIONS(970), 1, + [27313] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(571), 1, sym_float, - STATE(1025), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_not, + STATE(1414), 1, + sym_call, + STATE(1992), 1, sym_primary_expression, - STATE(1048), 1, + STATE(1993), 1, sym_expression, - STATE(1063), 1, - sym_call, - STATE(1079), 1, + STATE(2059), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2494), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47395,18 +47943,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47414,7 +47962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47431,51 +47979,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27451] = 26, - ACTIONS(401), 1, + [27428] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1120), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1321), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2264), 1, + STATE(1045), 1, sym_expression, - STATE(2435), 1, + STATE(1070), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1125), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47484,18 +48032,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47503,7 +48051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47520,51 +48068,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27566] = 26, - ACTIONS(766), 1, + [27543] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(1636), 1, + ACTIONS(1158), 1, + anon_sym_not, + STATE(1414), 1, sym_call, - STATE(1643), 1, + STATE(1992), 1, sym_primary_expression, - STATE(1953), 1, + STATE(2000), 1, + sym_expression, + STATE(2059), 1, sym_selector_expression, - STATE(2453), 1, + STATE(2494), 1, sym_dotted_name, - STATE(2461), 1, - sym_expression, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47573,18 +48121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47592,7 +48140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47609,51 +48157,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27681] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [27658] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1085), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1087), 1, + ACTIONS(1158), 1, anon_sym_not, - STATE(1523), 1, - sym_expression, - STATE(1530), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1414), 1, sym_call, - STATE(1827), 1, + STATE(1992), 1, + sym_primary_expression, + STATE(2001), 1, + sym_expression, + STATE(2059), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2494), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47662,18 +48210,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47681,7 +48229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47698,140 +48246,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27796] = 26, - ACTIONS(441), 1, - anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, + [27773] = 4, + STATE(560), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1442), 26, + sym__dedent, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, - sym_call, - STATE(1422), 1, - sym_selector_expression, - STATE(2446), 1, - sym_expression, - STATE(2484), 1, - sym_dotted_name, - STATE(3223), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(559), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1440), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(465), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1284), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [27911] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [27844] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, + STATE(1354), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, + sym_selector_expression, + STATE(2507), 1, sym_dotted_name, - STATE(2546), 1, + STATE(2525), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47840,18 +48366,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47859,7 +48385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47876,51 +48402,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28026] = 26, - ACTIONS(912), 1, + [27959] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(545), 1, sym_float, - STATE(319), 1, - sym_primary_expression, - STATE(816), 1, - sym_expression, - STATE(857), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(879), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2516), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -47929,18 +48455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47948,7 +48474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47965,120 +48491,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28141] = 6, - ACTIONS(1435), 1, - anon_sym_DOT, - ACTIONS(1440), 1, - anon_sym_QMARK_DOT, - STATE(441), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1438), 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(1433), 32, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [28216] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [28074] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1156), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1511), 1, - sym_primary_expression, - STATE(1634), 1, + ACTIONS(1158), 1, + anon_sym_not, + STATE(1414), 1, sym_call, - STATE(2492), 1, - sym_dotted_name, - STATE(2553), 1, + STATE(1992), 1, + sym_primary_expression, + STATE(1994), 1, sym_expression, - STATE(3223), 1, + STATE(2059), 1, + sym_selector_expression, + STATE(2494), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48087,18 +48544,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48106,7 +48563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48123,51 +48580,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28331] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, + [28189] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(956), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(966), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1615), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1632), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2326), 1, + STATE(2275), 1, sym_expression, - STATE(2531), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48176,18 +48633,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48195,7 +48652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48212,51 +48669,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28446] = 26, - ACTIONS(946), 1, + [28304] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(571), 1, sym_float, - STATE(1495), 1, - sym_primary_expression, - STATE(1524), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_not, + STATE(1176), 1, sym_expression, - STATE(1614), 1, + STATE(1414), 1, sym_call, - STATE(1830), 1, + STATE(1992), 1, + sym_primary_expression, + STATE(2059), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2494), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48265,18 +48722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48284,7 +48741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48301,51 +48758,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28561] = 26, - ACTIONS(401), 1, + [28419] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(1365), 1, - sym_identifier, - STATE(1174), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1211), 1, - sym_call, - STATE(1292), 1, + STATE(1052), 1, + sym_expression, + STATE(1070), 1, sym_selector_expression, - STATE(2492), 1, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(2552), 1, - sym_expression, - STATE(3176), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48354,18 +48811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48373,7 +48830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48390,51 +48847,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28676] = 26, - ACTIONS(401), 1, + [28534] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(545), 1, sym_float, - STATE(1196), 1, - sym_primary_expression, - STATE(1200), 1, - sym_expression, - STATE(1211), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1241), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2404), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48443,18 +48900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48462,7 +48919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48479,51 +48936,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28791] = 26, - ACTIONS(401), 1, + [28649] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1365), 1, - sym_identifier, - STATE(1211), 1, - sym_call, - STATE(1219), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1292), 1, + STATE(1192), 1, + sym_expression, + STATE(1227), 1, + sym_call, + STATE(1315), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2452), 1, sym_dotted_name, - STATE(2547), 1, - sym_expression, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48532,18 +48989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48551,7 +49008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48568,51 +49025,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28906] = 26, - ACTIONS(441), 1, + [28764] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(894), 1, anon_sym_not, - STATE(1166), 1, - sym_expression, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, + STATE(1495), 1, sym_call, - STATE(2001), 1, + STATE(1500), 1, + sym_expression, + STATE(1549), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1753), 1, + sym_selector_expression, + STATE(2463), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48621,18 +49078,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48640,7 +49097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48657,51 +49114,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29021] = 26, - ACTIONS(946), 1, + [28879] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(952), 1, - anon_sym_lambda, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(794), 1, sym_float, - STATE(1495), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1789), 1, sym_primary_expression, - STATE(1547), 1, - sym_expression, - STATE(1614), 1, + STATE(1791), 1, sym_call, - STATE(1830), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2505), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48710,18 +49167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48729,7 +49186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48746,51 +49203,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29136] = 26, - ACTIONS(441), 1, + [28994] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_not, - STATE(1369), 1, - sym_call, - STATE(1969), 1, - sym_primary_expression, - STATE(1971), 1, + STATE(424), 1, sym_expression, - STATE(2045), 1, + STATE(498), 1, + sym_primary_expression, + STATE(881), 1, + sym_call, + STATE(884), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48799,18 +49256,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48818,7 +49275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48835,51 +49292,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29251] = 26, - ACTIONS(507), 1, + [29109] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + ACTIONS(1096), 1, + anon_sym_not, + ACTIONS(1106), 1, + sym_string_start, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(1143), 1, - anon_sym_not, - STATE(1438), 1, + STATE(630), 1, sym_primary_expression, - STATE(1473), 1, + STATE(881), 1, sym_call, - STATE(1481), 1, - sym_expression, - STATE(1521), 1, + STATE(908), 1, sym_selector_expression, - STATE(2521), 1, + STATE(1154), 1, + sym_expression, + STATE(2499), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48888,18 +49345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48907,7 +49364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48924,51 +49381,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29366] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, + [29224] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(956), 1, - anon_sym_not, - ACTIONS(966), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(571), 1, sym_float, - STATE(1614), 1, + ACTIONS(1156), 1, + sym_identifier, + ACTIONS(1158), 1, + anon_sym_not, + STATE(1168), 1, + sym_expression, + STATE(1414), 1, sym_call, - STATE(1615), 1, + STATE(1992), 1, sym_primary_expression, - STATE(1632), 1, + STATE(2059), 1, sym_selector_expression, - STATE(2347), 1, - sym_expression, - STATE(2531), 1, + STATE(2494), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -48977,18 +49434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48996,7 +49453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49013,51 +49470,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29481] = 26, - ACTIONS(766), 1, + [29339] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1155), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(1163), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1636), 1, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1647), 1, + STATE(2034), 1, sym_primary_expression, - STATE(1813), 1, - sym_expression, - STATE(1846), 1, - sym_selector_expression, - STATE(2525), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2569), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49066,18 +49523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49085,7 +49542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49102,118 +49559,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29596] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1443), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1445), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [29667] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [29454] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1173), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(1175), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1327), 1, - sym_primary_expression, - STATE(1333), 1, - sym_expression, - STATE(1369), 1, - sym_call, - STATE(1483), 1, + STATE(1198), 1, sym_selector_expression, - STATE(2501), 1, + STATE(1414), 1, + sym_call, + STATE(2034), 1, + sym_primary_expression, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2572), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49222,18 +49612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49241,7 +49631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49258,51 +49648,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29782] = 26, - ACTIONS(441), 1, + [29569] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_not, - STATE(1369), 1, - sym_call, - STATE(1969), 1, + STATE(1023), 1, sym_primary_expression, - STATE(2043), 1, + STATE(1032), 1, sym_expression, - STATE(2045), 1, + STATE(1070), 1, sym_selector_expression, - STATE(2458), 1, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49311,18 +49701,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49330,7 +49720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49347,51 +49737,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29897] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, + [29684] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(956), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(966), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - STATE(1544), 1, - sym_expression, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1615), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1632), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2531), 1, + STATE(2276), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49400,18 +49790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49419,7 +49809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49436,51 +49826,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30012] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [29799] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(1158), 1, anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(2001), 1, + STATE(1992), 1, sym_primary_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2548), 1, + STATE(2048), 1, sym_expression, - STATE(3223), 1, + STATE(2059), 1, + sym_selector_expression, + STATE(2494), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49489,18 +49879,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49508,7 +49898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49525,51 +49915,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30127] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [29914] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(886), 1, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(1112), 1, anon_sym_not, - STATE(1369), 1, - sym_call, - STATE(1969), 1, - sym_primary_expression, - STATE(2041), 1, + STATE(1511), 1, sym_expression, - STATE(2045), 1, + STATE(1544), 1, + sym_primary_expression, + STATE(1660), 1, sym_selector_expression, - STATE(2458), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49578,18 +49968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49597,7 +49987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49614,51 +50004,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30242] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [30029] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(886), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(1158), 1, anon_sym_not, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1969), 1, + STATE(1992), 1, sym_primary_expression, - STATE(1972), 1, + STATE(1999), 1, sym_expression, - STATE(2045), 1, + STATE(2059), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2494), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49667,18 +50057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49686,7 +50076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49703,51 +50093,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30357] = 26, - ACTIONS(441), 1, - anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, + [30144] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1446), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(886), 1, + ACTIONS(1444), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_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(888), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [30215] = 26, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, + anon_sym_LBRACK, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, + anon_sym_LBRACE, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(786), 1, anon_sym_not, - STATE(1162), 1, - sym_expression, - STATE(1369), 1, - sym_call, - STATE(1969), 1, + ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1789), 1, sym_primary_expression, - STATE(2045), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2535), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49756,18 +50213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49775,7 +50232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49792,51 +50249,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30472] = 26, - ACTIONS(441), 1, + [30330] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1022), 1, + anon_sym_not, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_not, - STATE(1166), 1, + STATE(1045), 1, sym_expression, - STATE(1369), 1, - sym_call, - STATE(1969), 1, + STATE(1057), 1, sym_primary_expression, - STATE(2045), 1, + STATE(1066), 1, sym_selector_expression, - STATE(2458), 1, + STATE(1082), 1, + sym_call, + STATE(2457), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49845,18 +50302,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49864,7 +50321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49881,51 +50338,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30587] = 26, - ACTIONS(441), 1, + [30445] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, - sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1512), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1190), 1, + sym_expression, + STATE(1227), 1, sym_call, - STATE(2492), 1, + STATE(1315), 1, + sym_selector_expression, + STATE(2452), 1, sym_dotted_name, - STATE(2553), 1, - sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -49934,18 +50391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49953,7 +50410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49970,51 +50427,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30702] = 26, - ACTIONS(441), 1, - anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, + [30560] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1446), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(886), 1, + ACTIONS(1444), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_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(888), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [30631] = 26, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(533), 1, + anon_sym_QMARK_DOT, + ACTIONS(535), 1, anon_sym_not, - STATE(1369), 1, + ACTIONS(539), 1, + anon_sym_DQUOTE, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1969), 1, + STATE(1488), 1, sym_primary_expression, - STATE(2039), 1, - sym_expression, - STATE(2045), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2560), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50023,18 +50547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50042,7 +50566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50059,51 +50583,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30817] = 26, - ACTIONS(441), 1, + [30746] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_not, - STATE(1369), 1, + STATE(1561), 1, sym_call, - STATE(1969), 1, + STATE(1573), 1, sym_primary_expression, - STATE(2042), 1, + STATE(1625), 1, sym_expression, - STATE(2045), 1, + STATE(1801), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50112,18 +50636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50131,7 +50655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50148,51 +50672,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30932] = 26, - ACTIONS(766), 1, + [30861] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, + STATE(1187), 1, + sym_expression, + STATE(1227), 1, sym_call, - STATE(1643), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2453), 1, - sym_dotted_name, STATE(2454), 1, - sym_expression, - STATE(3197), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50201,18 +50725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50220,7 +50744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50237,51 +50761,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31047] = 26, - ACTIONS(507), 1, + [30976] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(914), 1, + anon_sym_not, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(568), 1, sym_primary_expression, - STATE(1572), 1, + STATE(672), 1, + sym_expression, + STATE(879), 1, sym_selector_expression, - STATE(2442), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(2462), 1, - sym_expression, - STATE(3179), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50290,18 +50814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50309,7 +50833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50326,51 +50850,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31162] = 26, - ACTIONS(441), 1, + [31091] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1042), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1557), 1, + sym_expression, + STATE(1561), 1, sym_call, - STATE(1422), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1801), 1, sym_selector_expression, - STATE(2464), 1, - sym_expression, - STATE(2484), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50379,18 +50903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50398,7 +50922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50415,51 +50939,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31277] = 26, - ACTIONS(401), 1, + [31206] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1022), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1321), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1066), 1, sym_selector_expression, - STATE(2357), 1, + STATE(1082), 1, + sym_call, + STATE(2051), 1, sym_expression, - STATE(2435), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1125), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50468,18 +50992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50487,7 +51011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50504,51 +51028,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31392] = 26, - ACTIONS(401), 1, + [31321] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + anon_sym_lambda, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1183), 1, + sym_expression, + STATE(1227), 1, + sym_call, + STATE(1315), 1, sym_selector_expression, - STATE(2319), 1, + STATE(2452), 1, sym_dotted_name, - STATE(2497), 1, - sym_expression, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50557,18 +51081,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50576,7 +51100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50593,51 +51117,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31507] = 26, - ACTIONS(401), 1, + [31436] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(1054), 1, + sym_identifier, + ACTIONS(1056), 1, + anon_sym_not, + STATE(1587), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1661), 1, + sym_call, + STATE(1786), 1, sym_selector_expression, - STATE(2318), 1, - sym_dotted_name, - STATE(2509), 1, + STATE(2375), 1, sym_expression, - STATE(3176), 1, + STATE(2531), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50646,18 +51170,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50665,7 +51189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50682,51 +51206,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31622] = 26, - ACTIONS(401), 1, + [31551] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1243), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(1402), 1, + sym_identifier, + STATE(615), 1, sym_primary_expression, - STATE(1282), 1, + STATE(881), 1, + sym_call, + STATE(885), 1, sym_selector_expression, - STATE(2378), 1, - sym_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2586), 1, + sym_expression, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50735,18 +51259,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1010), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50754,7 +51278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50771,51 +51295,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31737] = 26, - ACTIONS(401), 1, + [31666] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(930), 1, + anon_sym_not, + STATE(1168), 1, + sym_expression, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1213), 1, + STATE(2034), 1, sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50824,18 +51348,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50843,7 +51367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50860,51 +51384,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31852] = 26, - ACTIONS(13), 1, + [31781] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1189), 1, + ACTIONS(1062), 1, sym_identifier, - ACTIONS(1191), 1, + ACTIONS(1070), 1, anon_sym_not, - STATE(1501), 1, - sym_call, - STATE(1513), 1, + STATE(1432), 1, sym_primary_expression, - STATE(1540), 1, + STATE(1435), 1, + sym_call, + STATE(1469), 1, sym_expression, - STATE(1798), 1, + STATE(1579), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -50913,18 +51437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50932,7 +51456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50949,51 +51473,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31967] = 26, - ACTIONS(401), 1, + [31896] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2376), 1, - sym_expression, - STATE(2435), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2538), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51002,18 +51526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51021,7 +51545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51038,51 +51562,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32082] = 26, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, + [32011] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(53), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1495), 1, + sym_call, + STATE(1642), 1, sym_selector_expression, - STATE(2384), 1, + STATE(2344), 1, sym_expression, - STATE(2435), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51091,18 +51615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51110,7 +51634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51127,51 +51651,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32197] = 26, - ACTIONS(401), 1, + [32126] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(545), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_not, + STATE(1432), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1435), 1, + sym_call, + STATE(1487), 1, + sym_expression, + STATE(1579), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2455), 1, sym_dotted_name, - STATE(2518), 1, - sym_expression, - STATE(3176), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51180,18 +51704,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51199,7 +51723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51216,51 +51740,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, + [32241] = 4, + STATE(560), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1337), 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(1335), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, [32312] = 26, - ACTIONS(441), 1, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1514), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1227), 1, sym_call, - STATE(2492), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, + sym_selector_expression, + STATE(2364), 1, sym_dotted_name, - STATE(2553), 1, + STATE(2533), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51269,18 +51860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51288,7 +51879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51306,50 +51897,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [32427] = 26, - ACTIONS(766), 1, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1447), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(1629), 1, - sym_primary_expression, - STATE(1636), 1, + STATE(1227), 1, sym_call, - STATE(1950), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2351), 1, sym_dotted_name, - STATE(2564), 1, + STATE(2523), 1, sym_expression, - STATE(3197), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51358,18 +51949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51377,7 +51968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51395,50 +51986,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [32542] = 26, - ACTIONS(766), 1, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(1018), 1, + anon_sym_lambda, + ACTIONS(1022), 1, + anon_sym_not, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1066), 1, sym_selector_expression, - STATE(2425), 1, + STATE(1082), 1, + sym_call, + STATE(1991), 1, sym_expression, - STATE(2453), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51447,18 +52038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51466,7 +52057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51484,50 +52075,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [32657] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1309), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + anon_sym_LBRACK, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1501), 1, - sym_call, - STATE(1742), 1, - sym_selector_expression, - STATE(2433), 1, + STATE(1060), 1, sym_expression, - STATE(2470), 1, + STATE(1070), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51536,18 +52127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51555,7 +52146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51573,50 +52164,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [32772] = 26, - ACTIONS(401), 1, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + anon_sym_lambda, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1134), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1197), 1, + sym_expression, + STATE(1227), 1, + sym_call, + STATE(1315), 1, sym_selector_expression, - STATE(2316), 1, + STATE(2452), 1, sym_dotted_name, - STATE(2438), 1, - sym_expression, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51625,18 +52216,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51644,7 +52235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51662,50 +52253,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [32887] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, - sym_primary_expression, - STATE(1501), 1, + STATE(1227), 1, sym_call, - STATE(1742), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2317), 1, + STATE(2440), 1, sym_expression, - STATE(2470), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51714,18 +52305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51733,7 +52324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51751,50 +52342,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [33002] = 26, - ACTIONS(441), 1, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1028), 1, - sym_identifier, - ACTIONS(1030), 1, - anon_sym_not, - STATE(1519), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1495), 1, sym_call, - STATE(1817), 1, + STATE(1642), 1, sym_selector_expression, - STATE(2345), 1, + STATE(2458), 1, sym_expression, - STATE(2514), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51803,18 +52394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51822,7 +52413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51840,50 +52431,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [33117] = 26, - ACTIONS(401), 1, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1365), 1, - sym_identifier, - STATE(1211), 1, - sym_call, - STATE(1214), 1, + STATE(1182), 1, sym_primary_expression, - STATE(1292), 1, + STATE(1199), 1, + sym_expression, + STATE(1227), 1, + sym_call, + STATE(1315), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2452), 1, sym_dotted_name, - STATE(2547), 1, - sym_expression, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51892,18 +52483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51911,7 +52502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51929,50 +52520,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [33232] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1004), 1, - anon_sym_not, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1223), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(545), 1, sym_float, - STATE(517), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_not, + STATE(1432), 1, sym_primary_expression, - STATE(645), 1, - sym_expression, - STATE(856), 1, + STATE(1435), 1, sym_call, - STATE(877), 1, + STATE(1456), 1, + sym_expression, + STATE(1579), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -51981,18 +52572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52000,7 +52591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52018,50 +52609,50 @@ static const uint16_t ts_small_parse_table[] = { sym_null_coalesce, sym_string, [33347] = 26, - ACTIONS(401), 1, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + ACTIONS(1418), 1, + sym_identifier, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2428), 1, - sym_expression, - STATE(2435), 1, + STATE(2325), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2509), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52070,18 +52661,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52089,7 +52680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52106,125 +52697,135 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33462] = 11, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1229), 1, + [33462] = 21, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1349), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_PLUS, - ACTIONS(1451), 1, - anon_sym_as, - ACTIONS(1453), 1, - anon_sym_if, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(1459), 1, - anon_sym_or, + ACTIONS(1365), 1, + anon_sym_PIPE, + ACTIONS(1367), 1, + anon_sym_AMP, + ACTIONS(1369), 1, + anon_sym_CARET, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1452), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_is, + STATE(865), 1, + aux_sym_comparison_operator_repeat1, + STATE(952), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1455), 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, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1363), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1371), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(1450), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1454), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(1448), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(1449), 27, + ACTIONS(1343), 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_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [33547] = 26, - ACTIONS(766), 1, + [33567] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, + STATE(1227), 1, sym_call, - STATE(1643), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2443), 1, + STATE(2416), 1, sym_expression, - STATE(2453), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52233,18 +52834,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52252,7 +52853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52269,51 +52870,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33662] = 26, - ACTIONS(507), 1, + [33682] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(692), 1, sym_identifier, - STATE(1473), 1, + STATE(1424), 1, + sym_expression, + STATE(1435), 1, sym_call, - STATE(1476), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2460), 1, - sym_expression, - STATE(3179), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52322,18 +52923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52341,7 +52942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52358,51 +52959,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33777] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + [33797] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(1004), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1271), 1, sym_float, - STATE(517), 1, - sym_primary_expression, - STATE(615), 1, - sym_expression, - STATE(856), 1, + STATE(1227), 1, sym_call, - STATE(877), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2502), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52411,18 +53012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52430,7 +53031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52447,51 +53048,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33892] = 26, - ACTIONS(401), 1, + [33912] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(940), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1365), 1, - sym_identifier, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1215), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1292), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2547), 1, + STATE(2415), 1, sym_expression, - STATE(3176), 1, + STATE(2454), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52500,18 +53101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52519,7 +53120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52536,51 +53137,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34007] = 26, - ACTIONS(441), 1, + [34027] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(545), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1422), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2468), 1, + STATE(2308), 1, sym_expression, - STATE(2484), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52589,18 +53190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52608,7 +53209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52625,51 +53226,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34122] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + [34142] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(1004), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1271), 1, sym_float, - STATE(488), 1, - sym_expression, - STATE(517), 1, - sym_primary_expression, - STATE(856), 1, + STATE(1227), 1, sym_call, - STATE(877), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2491), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52678,18 +53279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52697,7 +53298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52714,51 +53315,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34237] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + [34257] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1004), 1, - anon_sym_not, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1223), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(545), 1, sym_float, - STATE(429), 1, - sym_expression, - STATE(517), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_not, + STATE(1432), 1, sym_primary_expression, - STATE(856), 1, + STATE(1435), 1, sym_call, - STATE(877), 1, + STATE(1437), 1, + sym_expression, + STATE(1579), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52767,18 +53368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52786,7 +53387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52803,51 +53404,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34352] = 26, - ACTIONS(401), 1, + [34372] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(545), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_not, + STATE(1424), 1, + sym_expression, + STATE(1432), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1435), 1, + sym_call, + STATE(1579), 1, sym_selector_expression, - STATE(2352), 1, + STATE(2455), 1, sym_dotted_name, - STATE(2495), 1, - sym_expression, - STATE(3176), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -52856,18 +53457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52875,7 +53476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52892,24 +53493,14 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34467] = 9, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1229), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(1459), 1, - anon_sym_or, + [34487] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(605), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 24, + ACTIONS(1460), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -52918,6 +53509,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, @@ -52934,8 +53527,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1461), 29, + ACTIONS(1458), 32, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -52954,6 +53548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -52964,140 +53560,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [34548] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + [34558] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1004), 1, - anon_sym_not, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1223), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(545), 1, sym_float, - STATE(517), 1, - sym_primary_expression, - STATE(810), 1, - sym_expression, - STATE(856), 1, - sym_call, - STATE(877), 1, - sym_selector_expression, - STATE(2475), 1, - sym_dotted_name, - STATE(3037), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1231), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(987), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1012), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(974), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(975), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34663] = 26, - ACTIONS(992), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, sym_identifier, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1004), 1, + ACTIONS(1070), 1, anon_sym_not, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(1225), 1, - anon_sym_LBRACK, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(1229), 1, - anon_sym_QMARK_DOT, - ACTIONS(1233), 1, - anon_sym_DQUOTE, - ACTIONS(1235), 1, - sym_float, - STATE(428), 1, - sym_expression, - STATE(517), 1, + STATE(1432), 1, sym_primary_expression, - STATE(856), 1, + STATE(1435), 1, sym_call, - STATE(877), 1, + STATE(1462), 1, + sym_expression, + STATE(1579), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53106,18 +53613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53125,7 +53632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53142,51 +53649,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34778] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + [34673] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(1004), 1, - anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1321), 1, sym_float, - STATE(497), 1, - sym_expression, - STATE(517), 1, + ACTIONS(1462), 1, + sym_identifier, + STATE(1041), 1, sym_primary_expression, - STATE(856), 1, - sym_call, - STATE(877), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2475), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2583), 1, + sym_expression, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53195,18 +53702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53214,7 +53721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53231,51 +53738,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34893] = 26, - ACTIONS(401), 1, + [34788] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2346), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2513), 1, + STATE(2548), 1, sym_expression, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53284,18 +53791,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53303,7 +53810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53320,51 +53827,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35008] = 26, - ACTIONS(401), 1, + [34903] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1022), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1321), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(1060), 1, sym_expression, - STATE(2435), 1, + STATE(1066), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2457), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1125), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53373,18 +53880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53392,7 +53899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53409,51 +53916,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35123] = 26, - ACTIONS(401), 1, + [35018] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(794), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1774), 1, + sym_expression, + STATE(1791), 1, + sym_call, + STATE(1885), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2512), 1, - sym_expression, - STATE(3176), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53462,18 +53969,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53481,7 +53988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53498,51 +54005,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35238] = 26, - ACTIONS(970), 1, + [35133] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, + ACTIONS(1022), 1, anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1321), 1, sym_float, - STATE(1021), 1, - sym_expression, - STATE(1025), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1063), 1, - sym_call, - STATE(1079), 1, + STATE(1066), 1, sym_selector_expression, - STATE(2480), 1, + STATE(1082), 1, + sym_call, + STATE(2055), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53551,18 +54058,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53570,7 +54077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53587,51 +54094,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35353] = 26, - ACTIONS(401), 1, + [35248] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(1365), 1, - sym_identifier, - STATE(1211), 1, - sym_call, - STATE(1216), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1292), 1, + STATE(1033), 1, + sym_expression, + STATE(1070), 1, sym_selector_expression, - STATE(2492), 1, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(2547), 1, - sym_expression, - STATE(3176), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53640,18 +54147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53659,7 +54166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53676,51 +54183,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35468] = 26, - ACTIONS(401), 1, + [35363] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(940), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1365), 1, - sym_identifier, - STATE(1211), 1, + STATE(1186), 1, + sym_expression, + STATE(1227), 1, sym_call, - STATE(1218), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1292), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2547), 1, - sym_expression, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53729,18 +54236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53748,7 +54255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53765,51 +54272,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35583] = 26, - ACTIONS(441), 1, + [35478] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(794), 1, sym_float, - STATE(1364), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1785), 1, + sym_expression, + STATE(1791), 1, sym_call, - STATE(1422), 1, + STATE(1885), 1, sym_selector_expression, - STATE(2448), 1, - sym_expression, - STATE(2484), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53818,18 +54325,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53837,7 +54344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53854,51 +54361,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35698] = 26, - ACTIONS(970), 1, + [35593] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(53), 1, sym_float, - STATE(1025), 1, - sym_primary_expression, - STATE(1042), 1, - sym_expression, - STATE(1063), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(1079), 1, + STATE(1512), 1, + sym_expression, + STATE(1549), 1, + sym_primary_expression, + STATE(1753), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1108), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53907,18 +54414,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53926,7 +54433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53943,51 +54450,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35813] = 26, - ACTIONS(970), 1, + [35708] = 26, + ACTIONS(1084), 1, + sym_identifier, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, + ACTIONS(1096), 1, anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1106), 1, + sym_string_start, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1243), 1, sym_float, - STATE(1015), 1, - sym_expression, - STATE(1025), 1, + STATE(630), 1, sym_primary_expression, - STATE(1063), 1, + STATE(881), 1, sym_call, - STATE(1079), 1, + STATE(908), 1, sym_selector_expression, - STATE(2480), 1, + STATE(1181), 1, + sym_expression, + STATE(2499), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1108), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -53996,18 +54503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(942), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54015,7 +54522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54032,51 +54539,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35928] = 26, - ACTIONS(970), 1, + [35823] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1077), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1271), 1, sym_float, - STATE(1025), 1, - sym_primary_expression, - STATE(1034), 1, - sym_expression, - STATE(1063), 1, + STATE(1227), 1, sym_call, - STATE(1079), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2422), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54085,18 +54592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54104,7 +54611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54121,7 +54628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36043] = 26, + [35938] = 26, ACTIONS(9), 1, sym_identifier, ACTIONS(13), 1, @@ -54144,25 +54651,25 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(180), 1, anon_sym_LBRACK, - STATE(1499), 1, + STATE(1494), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1495), 1, sym_call, - STATE(1742), 1, + STATE(1642), 1, sym_selector_expression, - STATE(2447), 1, + STATE(2368), 1, sym_expression, - STATE(2470), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, ACTIONS(47), 3, @@ -54174,7 +54681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -54185,7 +54692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54193,7 +54700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54210,51 +54717,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36158] = 26, - ACTIONS(401), 1, + [36053] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(53), 1, sym_float, - STATE(1211), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(1213), 1, + STATE(1549), 1, sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2410), 1, + STATE(1611), 1, sym_expression, - STATE(2435), 1, + STATE(1753), 1, + sym_selector_expression, + STATE(2463), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54263,18 +54770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54282,7 +54789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54299,51 +54806,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36273] = 26, - ACTIONS(401), 1, + [36168] = 4, + STATE(560), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1385), 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(1383), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(940), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1289), 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, + [36239] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1365), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, sym_identifier, - STATE(1211), 1, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(1220), 1, + STATE(1549), 1, sym_primary_expression, - STATE(1292), 1, + STATE(1596), 1, + sym_expression, + STATE(1753), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2463), 1, sym_dotted_name, - STATE(2547), 1, - sym_expression, - STATE(3176), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1378), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54352,18 +54926,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54371,7 +54945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54388,51 +54962,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36388] = 26, - ACTIONS(970), 1, + [36354] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(53), 1, sym_float, - STATE(1025), 1, - sym_primary_expression, - STATE(1029), 1, - sym_expression, - STATE(1063), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1464), 1, + sym_identifier, + STATE(1495), 1, sym_call, - STATE(1079), 1, + STATE(1505), 1, + sym_primary_expression, + STATE(1830), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2579), 1, + sym_expression, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1108), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54441,18 +55015,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54460,7 +55034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54477,51 +55051,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36503] = 26, - ACTIONS(970), 1, + [36469] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1077), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1271), 1, sym_float, - STATE(1025), 1, - sym_primary_expression, - STATE(1037), 1, - sym_expression, - STATE(1063), 1, + STATE(1227), 1, sym_call, - STATE(1079), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2557), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54530,18 +55104,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54549,7 +55123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54566,51 +55140,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36618] = 26, - ACTIONS(970), 1, + [36584] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1077), 1, + ACTIONS(1273), 1, sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1287), 1, sym_float, - STATE(1025), 1, - sym_primary_expression, - STATE(1053), 1, - sym_expression, - STATE(1063), 1, + STATE(1561), 1, sym_call, - STATE(1079), 1, + STATE(1591), 1, + sym_primary_expression, + STATE(1802), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2588), 1, + sym_expression, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1108), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54619,18 +55193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54638,7 +55212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54655,135 +55229,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36733] = 21, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, - anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1407), 1, - anon_sym_not, - ACTIONS(1413), 1, - anon_sym_PIPE, - ACTIONS(1415), 1, - anon_sym_AMP, - ACTIONS(1417), 1, - anon_sym_CARET, - ACTIONS(1423), 1, - anon_sym_is, - STATE(889), 1, - aux_sym_comparison_operator_repeat1, - STATE(906), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1411), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1403), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1253), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [36838] = 26, - ACTIONS(401), 1, + [36699] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1273), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - STATE(1211), 1, + ACTIONS(1466), 1, + anon_sym_not, + STATE(1561), 1, sym_call, - STATE(1213), 1, + STATE(1591), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1802), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2457), 1, + STATE(2588), 1, sym_expression, - STATE(3176), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1853), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54792,18 +55282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54811,7 +55301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54828,51 +55318,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36953] = 26, - ACTIONS(401), 1, + [36814] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1365), 1, + ACTIONS(928), 1, sym_identifier, - STATE(1211), 1, + ACTIONS(930), 1, + anon_sym_not, + STATE(1176), 1, + sym_expression, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1222), 1, + STATE(2034), 1, sym_primary_expression, - STATE(1292), 1, - sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2547), 1, - sym_expression, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54881,18 +55371,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54900,7 +55390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54917,51 +55407,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37068] = 26, - ACTIONS(401), 1, + [36929] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1365), 1, + ACTIONS(928), 1, sym_identifier, - STATE(1211), 1, + ACTIONS(930), 1, + anon_sym_not, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, sym_call, - STATE(1223), 1, + STATE(2034), 1, sym_primary_expression, - STATE(1292), 1, - sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2547), 1, + STATE(2566), 1, sym_expression, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -54970,18 +55460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54989,7 +55479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55006,51 +55496,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37183] = 26, - ACTIONS(13), 1, + [37044] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(778), 1, + anon_sym_LBRACK, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(976), 1, sym_identifier, - STATE(1501), 1, - sym_call, - STATE(1569), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2554), 1, + STATE(2471), 1, sym_expression, - STATE(3164), 1, + STATE(2529), 1, + sym_dotted_name, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55059,18 +55549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55078,7 +55568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55095,51 +55585,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37298] = 26, - ACTIONS(401), 1, + [37159] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(1110), 1, + sym_identifier, + ACTIONS(1112), 1, + anon_sym_not, + STATE(1168), 1, + sym_expression, + STATE(1544), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1660), 1, sym_selector_expression, - STATE(2431), 1, - sym_expression, - STATE(2435), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55148,18 +55638,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55167,7 +55657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55184,51 +55674,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37413] = 26, - ACTIONS(441), 1, + [37274] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(948), 1, + anon_sym_not, + ACTIONS(958), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - STATE(1166), 1, - sym_expression, - STATE(1530), 1, + STATE(1551), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1561), 1, sym_call, - STATE(1827), 1, + STATE(1842), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2372), 1, + sym_expression, + STATE(2527), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55237,18 +55727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55256,7 +55746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55273,51 +55763,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37528] = 26, - ACTIONS(401), 1, + [37389] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(948), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1551), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1561), 1, + sym_call, + STATE(1842), 1, sym_selector_expression, - STATE(2394), 1, + STATE(2373), 1, sym_expression, - STATE(2435), 1, + STATE(2527), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1908), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55326,18 +55816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55345,7 +55835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55362,51 +55852,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37643] = 26, - ACTIONS(441), 1, + [37504] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1022), 1, + anon_sym_not, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - STATE(1162), 1, - sym_expression, - STATE(1530), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1634), 1, - sym_call, - STATE(1827), 1, + STATE(1066), 1, sym_selector_expression, - STATE(2483), 1, + STATE(1082), 1, + sym_call, + STATE(2053), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55415,18 +55905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1128), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55434,7 +55924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55451,187 +55941,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37758] = 4, - STATE(681), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1465), 26, + [37619] = 26, + ACTIONS(938), 1, + anon_sym_DOT, + ACTIONS(944), 1, + anon_sym_lambda, + ACTIONS(958), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_LPAREN, + ACTIONS(1277), 1, anon_sym_LBRACK, + ACTIONS(1279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1285), 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(1287), 1, sym_float, - ACTIONS(1467), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [37829] = 6, - ACTIONS(1471), 1, - anon_sym_DOT, - ACTIONS(1476), 1, - anon_sym_QMARK_DOT, + STATE(1561), 1, + sym_call, + STATE(1573), 1, + sym_primary_expression, + STATE(1594), 1, + sym_expression, + STATE(1801), 1, + sym_selector_expression, + STATE(2470), 1, + sym_dotted_name, + STATE(3130), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(527), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1474), 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, + STATE(1853), 2, + sym_binary_operator, + sym_subscript, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1469), 31, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1897), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(956), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [37904] = 26, - ACTIONS(441), 1, + STATE(1861), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1862), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [37734] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(1028), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1030), 1, - anon_sym_not, - STATE(1166), 1, - sym_expression, - STATE(1519), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1435), 1, sym_call, - STATE(1817), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2514), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2559), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55640,18 +56083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55659,7 +56102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55676,51 +56119,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38019] = 26, - ACTIONS(401), 1, + [37849] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1196), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1209), 1, - sym_expression, - STATE(1211), 1, + STATE(1414), 1, sym_call, - STATE(1241), 1, + STATE(1427), 1, sym_selector_expression, STATE(2507), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2554), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55729,18 +56172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55748,7 +56191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55765,51 +56208,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38134] = 26, - ACTIONS(401), 1, + [37964] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(545), 1, sym_float, - STATE(1211), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1213), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2266), 1, + STATE(2309), 1, sym_expression, - STATE(2435), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55818,18 +56261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55837,7 +56280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55854,51 +56297,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38249] = 26, - ACTIONS(401), 1, + [38079] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1273), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - STATE(1211), 1, + STATE(1561), 1, sym_call, - STATE(1213), 1, + STATE(1603), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1802), 1, sym_selector_expression, - STATE(2261), 1, - sym_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2588), 1, + sym_expression, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1853), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55907,18 +56350,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55926,7 +56369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -55943,51 +56386,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38364] = 26, - ACTIONS(401), 1, + [38194] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1365), 1, + ACTIONS(1156), 1, sym_identifier, - ACTIONS(1479), 1, + ACTIONS(1158), 1, anon_sym_not, - STATE(1211), 1, + STATE(1414), 1, sym_call, - STATE(1212), 1, + STATE(1992), 1, sym_primary_expression, - STATE(1292), 1, + STATE(2041), 1, + sym_expression, + STATE(2059), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2494), 1, sym_dotted_name, - STATE(2547), 1, - sym_expression, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -55996,18 +56439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(2066), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56015,7 +56458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56032,23 +56475,26 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38479] = 4, + [38309] = 6, + ACTIONS(1470), 1, + anon_sym_DOT, + ACTIONS(1475), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, + STATE(541), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1481), 26, + ACTIONS(1473), 25, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -56066,9 +56512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1483), 32, + ACTIONS(1468), 31, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -56099,51 +56544,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38550] = 26, - ACTIONS(441), 1, + [38384] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(1085), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, sym_identifier, - ACTIONS(1087), 1, + ACTIONS(1070), 1, anon_sym_not, - STATE(1510), 1, + STATE(1419), 1, sym_expression, - STATE(1530), 1, + STATE(1432), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1435), 1, sym_call, - STATE(1827), 1, + STATE(1579), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56152,18 +56597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56171,7 +56616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56188,51 +56633,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38665] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, + [38499] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1237), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(545), 1, sym_float, - STATE(454), 1, - sym_expression, - STATE(823), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_not, + STATE(1432), 1, sym_primary_expression, - STATE(857), 1, + STATE(1435), 1, sym_call, - STATE(898), 1, + STATE(1484), 1, + sym_expression, + STATE(1579), 1, sym_selector_expression, - STATE(2502), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56241,18 +56686,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56260,7 +56705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56277,51 +56722,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38780] = 26, - ACTIONS(441), 1, + [38614] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - STATE(1530), 1, + STATE(498), 1, sym_primary_expression, - STATE(1570), 1, + STATE(635), 1, sym_expression, - STATE(1634), 1, + STATE(881), 1, sym_call, - STATE(1827), 1, + STATE(884), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56330,18 +56775,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56349,7 +56794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56366,23 +56811,25 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38895] = 4, + [38729] = 6, + ACTIONS(1480), 1, + anon_sym_DOT, + ACTIONS(1485), 1, + anon_sym_QMARK_DOT, + STATE(545), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1481), 26, + ACTIONS(1483), 25, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -56400,13 +56847,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1483), 32, + ACTIONS(1478), 32, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -56433,51 +56880,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38966] = 26, - ACTIONS(401), 1, + [38804] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(1273), 1, + sym_identifier, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(1365), 1, - sym_identifier, - STATE(1211), 1, + STATE(1561), 1, sym_call, - STATE(1212), 1, + STATE(1604), 1, sym_primary_expression, - STATE(1292), 1, + STATE(1802), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2547), 1, + STATE(2588), 1, sym_expression, - STATE(3176), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1378), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1297), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56486,18 +56933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1340), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56505,7 +56952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56522,120 +56969,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39081] = 6, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(1489), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1485), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [38919] = 26, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, + ACTIONS(519), 1, anon_sym_LBRACK, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(533), 1, anon_sym_QMARK_DOT, + ACTIONS(539), 1, anon_sym_DQUOTE, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_not, + STATE(1432), 1, + sym_primary_expression, + STATE(1435), 1, + sym_call, + STATE(1446), 1, + sym_expression, + STATE(1579), 1, + sym_selector_expression, + STATE(2455), 1, + sym_dotted_name, + STATE(3198), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1732), 2, + sym_binary_operator, + sym_subscript, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1487), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1759), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(543), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [39156] = 26, - ACTIONS(401), 1, + STATE(1743), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1747), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [39034] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1273), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - STATE(1211), 1, + STATE(1561), 1, sym_call, - STATE(1213), 1, + STATE(1605), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1802), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2526), 1, + STATE(2588), 1, sym_expression, - STATE(3176), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1853), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56644,18 +57111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56663,7 +57130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56680,15 +57147,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39271] = 4, - ACTIONS(1495), 1, - anon_sym_DASH_GT, + [39149] = 5, + ACTIONS(1492), 1, + anon_sym_EQ, + STATE(560), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 25, + ACTIONS(1490), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -56698,6 +57167,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, @@ -56712,14 +57182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1493), 34, + ACTIONS(1488), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -56736,7 +57205,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, @@ -56747,51 +57215,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [39342] = 26, - ACTIONS(441), 1, + [39222] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(1085), 1, + ACTIONS(1462), 1, sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - STATE(1525), 1, - sym_expression, - STATE(1530), 1, + STATE(1039), 1, sym_primary_expression, - STATE(1634), 1, - sym_call, - STATE(1827), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2483), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2563), 1, + sym_expression, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56800,18 +57268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56819,7 +57287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56836,51 +57304,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39457] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, + [39337] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(956), 1, - anon_sym_not, - ACTIONS(966), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1321), 1, sym_float, - STATE(1532), 1, - sym_expression, - STATE(1614), 1, - sym_call, - STATE(1615), 1, + ACTIONS(1462), 1, + sym_identifier, + STATE(1049), 1, sym_primary_expression, - STATE(1632), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2531), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3132), 1, + STATE(2583), 1, + sym_expression, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56889,18 +57357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56908,7 +57376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -56925,51 +57393,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39572] = 26, - ACTIONS(441), 1, + [39452] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1273), 1, + sym_identifier, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - STATE(1530), 1, - sym_primary_expression, - STATE(1576), 1, - sym_expression, - STATE(1634), 1, + STATE(1561), 1, sym_call, - STATE(1827), 1, + STATE(1606), 1, + sym_primary_expression, + STATE(1802), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2588), 1, + sym_expression, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -56978,18 +57446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56997,7 +57465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57014,51 +57482,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39687] = 26, - ACTIONS(441), 1, + [39567] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1273), 1, + sym_identifier, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, - anon_sym_not, - STATE(1508), 1, - sym_expression, - STATE(1530), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1561), 1, sym_call, - STATE(1827), 1, + STATE(1607), 1, + sym_primary_expression, + STATE(1802), 1, sym_selector_expression, - STATE(2483), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2588), 1, + sym_expression, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57067,18 +57535,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57086,7 +57554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57103,51 +57571,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39802] = 26, - ACTIONS(441), 1, + [39682] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1028), 1, - sym_identifier, - ACTIONS(1030), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, anon_sym_not, - STATE(1162), 1, - sym_expression, - STATE(1519), 1, + ACTIONS(1464), 1, + sym_identifier, + STATE(1495), 1, + sym_call, + STATE(1584), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1830), 1, + sym_selector_expression, + STATE(2537), 1, + sym_dotted_name, + STATE(2587), 1, + sym_expression, + STATE(3186), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1916), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1974), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [39797] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, + anon_sym_DOT, + ACTIONS(944), 1, + anon_sym_lambda, + ACTIONS(958), 1, + sym_string_start, + ACTIONS(1273), 1, + sym_identifier, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(1277), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, + anon_sym_LBRACE, + ACTIONS(1281), 1, + anon_sym_QMARK_DOT, + ACTIONS(1285), 1, + anon_sym_DQUOTE, + ACTIONS(1287), 1, + sym_float, + STATE(1561), 1, sym_call, - STATE(1817), 1, + STATE(1608), 1, + sym_primary_expression, + STATE(1802), 1, sym_selector_expression, - STATE(2514), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2588), 1, + sym_expression, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57156,18 +57713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57175,7 +57732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57192,51 +57749,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39917] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [39912] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1028), 1, - sym_identifier, - ACTIONS(1030), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1519), 1, + ACTIONS(1426), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1389), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1414), 1, sym_call, - STATE(1817), 1, - sym_selector_expression, - STATE(2321), 1, - sym_expression, - STATE(2514), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2585), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57245,18 +57802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57264,7 +57821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57281,51 +57838,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40032] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [40027] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1085), 1, + ACTIONS(1426), 1, sym_identifier, - ACTIONS(1087), 1, + ACTIONS(1494), 1, anon_sym_not, - STATE(1530), 1, + STATE(1198), 1, + sym_selector_expression, + STATE(1389), 1, sym_primary_expression, - STATE(1554), 1, - sym_expression, - STATE(1634), 1, + STATE(1414), 1, sym_call, - STATE(1827), 1, - sym_selector_expression, - STATE(2483), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2585), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57334,18 +57891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1923), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57353,7 +57910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57370,51 +57927,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40147] = 26, - ACTIONS(441), 1, + [40142] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(940), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(1464), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, + STATE(1495), 1, sym_call, - STATE(1398), 1, + STATE(1582), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1830), 1, + sym_selector_expression, + STATE(2537), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2579), 1, sym_expression, - STATE(3223), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57423,18 +57980,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57442,7 +57999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57459,51 +58016,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40262] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [40257] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1497), 1, - sym_identifier, - ACTIONS(1499), 1, - anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(1398), 1, + STATE(1354), 1, sym_primary_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2549), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, + sym_selector_expression, + STATE(2417), 1, sym_expression, - STATE(3223), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57512,18 +58069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57531,7 +58088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57548,17 +58105,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40377] = 5, - ACTIONS(1505), 1, - anon_sym_PIPE, - STATE(551), 1, + [40372] = 4, + STATE(360), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 25, + ACTIONS(1498), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -57571,6 +58126,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, @@ -57582,7 +58138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1503), 33, + ACTIONS(1496), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -57616,51 +58172,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [40450] = 26, - ACTIONS(766), 1, + [40443] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1500), 1, sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, - sym_primary_expression, - STATE(1953), 1, + STATE(1198), 1, sym_selector_expression, - STATE(2453), 1, + STATE(1497), 1, + sym_primary_expression, + STATE(1661), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2532), 1, + STATE(2567), 1, sym_expression, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57669,18 +58225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57688,7 +58244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57705,118 +58261,229 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40565] = 4, - STATE(681), 1, - aux_sym_union_type_repeat1, + [40558] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + anon_sym_LBRACE, + ACTIONS(565), 1, + anon_sym_QMARK_DOT, + ACTIONS(569), 1, + anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(964), 1, + anon_sym_not, + STATE(1335), 1, + sym_primary_expression, + STATE(1369), 1, + sym_expression, + STATE(1414), 1, + sym_call, + STATE(1475), 1, + sym_selector_expression, + STATE(2532), 1, + sym_dotted_name, + STATE(3261), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 26, + STATE(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [40673] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_DOT, + ACTIONS(1018), 1, + anon_sym_lambda, + ACTIONS(1022), 1, + anon_sym_not, + ACTIONS(1032), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1309), 1, anon_sym_LPAREN, + ACTIONS(1311), 1, anon_sym_LBRACK, + ACTIONS(1313), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1319), 1, anon_sym_DQUOTE, + ACTIONS(1321), 1, + sym_float, + STATE(1057), 1, + sym_primary_expression, + STATE(1066), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(1995), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3063), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1123), 2, + sym_binary_operator, + sym_subscript, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1493), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1128), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1030), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [40636] = 26, - ACTIONS(507), 1, + STATE(1121), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1088), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [40788] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(996), 1, sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1761), 1, + sym_expression, + STATE(1791), 1, + sym_call, + STATE(1885), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2471), 1, - sym_expression, - STATE(3179), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57825,18 +58492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57844,7 +58511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57861,51 +58528,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40751] = 26, - ACTIONS(912), 1, + [40903] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1093), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(571), 1, sym_float, - STATE(319), 1, + STATE(1354), 1, sym_primary_expression, - STATE(454), 1, - sym_expression, - STATE(857), 1, + STATE(1414), 1, sym_call, - STATE(879), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2297), 1, + sym_expression, + STATE(2507), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -57914,18 +58581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57933,7 +58600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -57950,125 +58617,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40866] = 11, - ACTIONS(912), 1, + [41018] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(1489), 1, - anon_sym_and, - ACTIONS(1508), 1, - anon_sym_as, - ACTIONS(1510), 1, - anon_sym_if, - ACTIONS(1512), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1455), 24, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, + ACTIONS(557), 1, anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(565), 1, + anon_sym_QMARK_DOT, + ACTIONS(569), 1, anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + STATE(1354), 1, + sym_primary_expression, + STATE(1414), 1, + sym_call, + STATE(1427), 1, + sym_selector_expression, + STATE(2293), 1, + sym_expression, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 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(1449), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1631), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [40951] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [41133] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(964), 1, + anon_sym_not, + STATE(1335), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1364), 1, + sym_expression, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1475), 1, sym_selector_expression, - STATE(2469), 1, - sym_expression, - STATE(2484), 1, + STATE(2532), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58077,18 +58759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58096,7 +58778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58113,51 +58795,135 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41066] = 26, - ACTIONS(441), 1, - anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, + [41248] = 21, + ACTIONS(1502), 1, + anon_sym_LPAREN, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, + anon_sym_QMARK_DOT, + ACTIONS(1514), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(1520), 1, + anon_sym_PIPE, + ACTIONS(1522), 1, + anon_sym_AMP, + ACTIONS(1524), 1, + anon_sym_CARET, + ACTIONS(1530), 1, + anon_sym_is, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(870), 1, + aux_sym_comparison_operator_repeat1, + STATE(941), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1508), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1516), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1506), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1528), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 8, sym_string_start, - ACTIONS(545), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1343), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + sym_integer, sym_identifier, - ACTIONS(547), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [41353] = 26, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(794), 1, sym_float, - STATE(1364), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1782), 1, + sym_expression, + STATE(1791), 1, sym_call, - STATE(1422), 1, + STATE(1885), 1, sym_selector_expression, - STATE(2281), 1, - sym_expression, - STATE(2484), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58166,18 +58932,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58185,7 +58951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58202,51 +58968,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41181] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [41468] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1426), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1347), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, - sym_selector_expression, - STATE(2283), 1, - sym_expression, - STATE(2484), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2585), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58255,18 +59021,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58274,7 +59040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58291,51 +59057,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41296] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [41583] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1327), 1, + ACTIONS(1426), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1346), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1394), 1, - sym_expression, - STATE(1483), 1, - sym_selector_expression, - STATE(2501), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2585), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58344,18 +59110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58363,7 +59129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58380,51 +59146,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41411] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [41698] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1162), 1, - sym_expression, - STATE(1176), 1, + ACTIONS(1426), 1, + sym_identifier, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, + STATE(1344), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2585), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58433,18 +59199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58452,7 +59218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58469,51 +59235,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41526] = 26, - ACTIONS(912), 1, + [41813] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(571), 1, sym_float, - STATE(319), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1426), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1340), 1, sym_primary_expression, - STATE(537), 1, - sym_expression, - STATE(857), 1, + STATE(1414), 1, sym_call, - STATE(879), 1, - sym_selector_expression, - STATE(2487), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2585), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58522,18 +59288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58541,7 +59307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58558,51 +59324,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41641] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [41928] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(1426), 1, sym_identifier, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(1392), 1, + STATE(1337), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2585), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58611,18 +59377,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58630,7 +59396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58647,51 +59413,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41756] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [42043] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(1426), 1, sym_identifier, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(1391), 1, + STATE(1412), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2585), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58700,18 +59466,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58719,7 +59485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58736,51 +59502,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41871] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [42158] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(1426), 1, sym_identifier, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(1389), 1, + STATE(1334), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2585), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58789,18 +59555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58808,7 +59574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58825,51 +59591,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41986] = 26, - ACTIONS(441), 1, + [42273] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1273), 1, + sym_identifier, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1497), 1, - sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, + STATE(1561), 1, sym_call, - STATE(1388), 1, + STATE(1609), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1802), 1, + sym_selector_expression, + STATE(2537), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2588), 1, sym_expression, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58878,18 +59644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58897,7 +59663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -58914,51 +59680,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42101] = 26, - ACTIONS(441), 1, + [42388] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1387), 1, + STATE(1229), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1236), 1, + sym_selector_expression, + STATE(2335), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2547), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -58967,18 +59733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58986,7 +59752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59003,51 +59769,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42216] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [42503] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(928), 1, sym_identifier, - STATE(1176), 1, + ACTIONS(930), 1, + anon_sym_not, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1386), 1, + STATE(2034), 1, sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2580), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59056,18 +59822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59075,7 +59841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59092,51 +59858,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42331] = 26, - ACTIONS(441), 1, + [42618] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1385), 1, + STATE(1229), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1236), 1, + sym_selector_expression, + STATE(2367), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2543), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59145,18 +59911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59164,7 +59930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59181,51 +59947,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42446] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(970), 1, + [42733] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(980), 1, - anon_sym_not, - ACTIONS(990), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(571), 1, sym_float, - STATE(1027), 1, + ACTIONS(1110), 1, + sym_identifier, + ACTIONS(1112), 1, + anon_sym_not, + STATE(1176), 1, + sym_expression, + STATE(1544), 1, sym_primary_expression, - STATE(1063), 1, - sym_call, - STATE(1070), 1, + STATE(1660), 1, sym_selector_expression, - STATE(1970), 1, - sym_expression, - STATE(2504), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59234,18 +60000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59253,7 +60019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59270,51 +60036,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42561] = 26, - ACTIONS(912), 1, + [42848] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1093), 1, + ACTIONS(1273), 1, sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1287), 1, sym_float, - STATE(319), 1, - sym_primary_expression, - STATE(556), 1, - sym_expression, - STATE(857), 1, + STATE(1561), 1, sym_call, - STATE(879), 1, + STATE(1616), 1, + sym_primary_expression, + STATE(1802), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2588), 1, + sym_expression, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1001), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59323,18 +60089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59342,7 +60108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59359,51 +60125,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42676] = 26, - ACTIONS(441), 1, + [42963] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1273), 1, + sym_identifier, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, + STATE(1561), 1, sym_call, - STATE(2001), 1, + STATE(1618), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1802), 1, + sym_selector_expression, + STATE(2537), 1, sym_dotted_name, - STATE(2560), 1, + STATE(2571), 1, sym_expression, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59412,18 +60178,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1854), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59431,7 +60197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59448,51 +60214,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42791] = 26, - ACTIONS(401), 1, + [43078] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2337), 1, - sym_dotted_name, - STATE(2451), 1, + STATE(2391), 1, sym_expression, - STATE(3176), 1, + STATE(2454), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59501,18 +60267,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59520,7 +60286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59537,51 +60303,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42906] = 26, - ACTIONS(912), 1, + [43193] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(571), 1, sym_float, - STATE(319), 1, + ACTIONS(1110), 1, + sym_identifier, + ACTIONS(1112), 1, + anon_sym_not, + STATE(1544), 1, sym_primary_expression, - STATE(415), 1, + STATE(1570), 1, sym_expression, - STATE(857), 1, - sym_call, - STATE(879), 1, + STATE(1660), 1, sym_selector_expression, - STATE(2487), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59590,18 +60356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59609,7 +60375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59626,118 +60392,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43021] = 4, - STATE(356), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1501), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1503), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [43092] = 26, - ACTIONS(970), 1, + [43308] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(990), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1079), 1, - anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(571), 1, sym_float, - STATE(1025), 1, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(964), 1, + anon_sym_not, + STATE(1335), 1, sym_primary_expression, - STATE(1031), 1, + STATE(1363), 1, sym_expression, - STATE(1063), 1, + STATE(1414), 1, sym_call, - STATE(1079), 1, + STATE(1475), 1, sym_selector_expression, - STATE(2480), 1, + STATE(2532), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59746,18 +60445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1116), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59765,7 +60464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59782,51 +60481,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43207] = 26, - ACTIONS(401), 1, + [43423] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2336), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2450), 1, + STATE(2541), 1, sym_expression, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59835,18 +60534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59854,7 +60553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59871,51 +60570,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43322] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [43538] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(886), 1, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(1112), 1, anon_sym_not, - STATE(1369), 1, - sym_call, - STATE(1969), 1, - sym_primary_expression, - STATE(2031), 1, + STATE(1509), 1, sym_expression, - STATE(2045), 1, + STATE(1544), 1, + sym_primary_expression, + STATE(1660), 1, sym_selector_expression, - STATE(2458), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -59924,18 +60623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59943,7 +60642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59960,51 +60659,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43437] = 26, - ACTIONS(507), 1, + [43653] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1415), 1, - sym_expression, - STATE(1473), 1, + STATE(1227), 1, sym_call, - STATE(1476), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2380), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60013,18 +60712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60032,7 +60731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60049,123 +60748,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43552] = 9, - ACTIONS(912), 1, - anon_sym_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK_DOT, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(1489), 1, - anon_sym_and, - ACTIONS(1512), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 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(1461), 29, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [43633] = 26, - ACTIONS(401), 1, + [43768] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2435), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2536), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60174,18 +60801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60193,7 +60820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60210,51 +60837,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43748] = 26, - ACTIONS(912), 1, + [43883] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1093), 1, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1148), 1, anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1243), 1, sym_float, - STATE(319), 1, - sym_primary_expression, - STATE(818), 1, + STATE(430), 1, sym_expression, - STATE(857), 1, + STATE(498), 1, + sym_primary_expression, + STATE(881), 1, sym_call, - STATE(879), 1, + STATE(884), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1001), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60263,18 +60890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60282,7 +60909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60299,51 +60926,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43863] = 26, - ACTIONS(912), 1, + [43998] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(794), 1, sym_float, - STATE(319), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1789), 1, sym_primary_expression, - STATE(414), 1, - sym_expression, - STATE(857), 1, + STATE(1791), 1, sym_call, - STATE(879), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2526), 1, + sym_expression, + STATE(2529), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60352,18 +60979,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60371,7 +60998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60388,118 +61015,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43978] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1514), 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(1516), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + [44113] = 26, + ACTIONS(930), 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, - [44049] = 26, - ACTIONS(912), 1, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1321), 1, sym_float, - STATE(319), 1, + ACTIONS(1462), 1, + sym_identifier, + STATE(1027), 1, sym_primary_expression, - STATE(580), 1, - sym_expression, - STATE(857), 1, - sym_call, - STATE(879), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2487), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2583), 1, + sym_expression, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60508,18 +61068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60527,7 +61087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60544,51 +61104,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44164] = 26, - ACTIONS(946), 1, + [44228] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(952), 1, - anon_sym_lambda, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1303), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(1333), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1518), 1, - anon_sym_not, - STATE(1596), 1, - sym_primary_expression, - STATE(1614), 1, + STATE(1435), 1, sym_call, - STATE(1756), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2496), 1, sym_expression, - STATE(3132), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1963), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1311), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60597,18 +61157,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1936), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60616,7 +61176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60633,51 +61193,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44279] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(970), 1, + [44343] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(980), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(990), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(571), 1, sym_float, - STATE(1027), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1414), 1, sym_call, - STATE(1070), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2021), 1, + STATE(2492), 1, sym_expression, - STATE(2504), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60686,18 +61246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60705,7 +61265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60722,51 +61282,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44394] = 26, - ACTIONS(401), 1, + [44458] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1321), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(1462), 1, + sym_identifier, + STATE(1025), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2435), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2445), 1, + STATE(2583), 1, sym_expression, - STATE(3176), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60775,18 +61335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60794,7 +61354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60811,51 +61371,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44509] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(970), 1, + [44573] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(980), 1, - anon_sym_not, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1317), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(794), 1, sym_float, - STATE(1027), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1042), 1, + STATE(1718), 1, sym_expression, - STATE(1063), 1, + STATE(1791), 1, sym_call, - STATE(1070), 1, + STATE(1885), 1, sym_selector_expression, - STATE(2504), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60864,18 +61424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60883,7 +61443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60900,51 +61460,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44624] = 26, - ACTIONS(507), 1, + [44688] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1018), 1, + anon_sym_lambda, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, + ACTIONS(1462), 1, sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(1055), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2442), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2524), 1, + STATE(2583), 1, sym_expression, - STATE(3179), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -60953,18 +61513,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60972,7 +61532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60989,51 +61549,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44739] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, + [44803] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(932), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1237), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1321), 1, sym_float, - STATE(537), 1, - sym_expression, - STATE(823), 1, + ACTIONS(1462), 1, + sym_identifier, + STATE(1038), 1, sym_primary_expression, - STATE(857), 1, - sym_call, - STATE(898), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2502), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2583), 1, + sym_expression, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61042,18 +61602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61061,7 +61621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61078,51 +61638,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44854] = 26, - ACTIONS(13), 1, + [44918] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1309), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + anon_sym_LBRACK, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(1462), 1, sym_identifier, - STATE(1501), 1, - sym_call, - STATE(1564), 1, + STATE(1024), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2492), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2583), 1, sym_expression, - STATE(3164), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61131,18 +61691,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61150,7 +61710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61167,51 +61727,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44969] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, + [45033] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(932), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1237), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1321), 1, sym_float, - STATE(823), 1, + ACTIONS(1462), 1, + sym_identifier, + STATE(1043), 1, sym_primary_expression, - STATE(857), 1, - sym_call, - STATE(898), 1, + STATE(1078), 1, sym_selector_expression, - STATE(1147), 1, - sym_expression, - STATE(2502), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2583), 1, + sym_expression, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61220,18 +61780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61239,7 +61799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61256,51 +61816,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45084] = 26, - ACTIONS(912), 1, + [45148] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(571), 1, sym_float, - STATE(319), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1426), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1392), 1, sym_primary_expression, - STATE(539), 1, - sym_expression, - STATE(857), 1, + STATE(1414), 1, sym_call, - STATE(879), 1, - sym_selector_expression, - STATE(2487), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2585), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61309,18 +61869,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61328,7 +61888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61345,51 +61905,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45199] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [45263] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(1426), 1, sym_identifier, - STATE(1176), 1, + STATE(1198), 1, sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(1374), 1, + STATE(1333), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2569), 1, sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61398,18 +61958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61417,7 +61977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61434,51 +61994,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45314] = 26, - ACTIONS(441), 1, + [45378] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(1462), 1, sym_identifier, - STATE(1176), 1, + STATE(1050), 1, + sym_primary_expression, + STATE(1078), 1, sym_selector_expression, - STATE(1369), 1, + STATE(1082), 1, sym_call, - STATE(1373), 1, - sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2546), 1, + STATE(2583), 1, sym_expression, - STATE(3223), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61487,18 +62047,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61506,7 +62066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61523,136 +62083,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45429] = 22, - ACTIONS(1255), 1, + [45493] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(541), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1536), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1257), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1265), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, - anon_sym_PIPE, - ACTIONS(1275), 1, - anon_sym_AMP, - ACTIONS(1277), 1, - anon_sym_CARET, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1269), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1271), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1279), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1253), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1520), 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(1522), 20, + ACTIONS(1534), 32, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [45536] = 26, - ACTIONS(13), 1, + [45564] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1309), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + anon_sym_LBRACK, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, - sym_identifier, - STATE(1501), 1, - sym_call, - STATE(1566), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1029), 1, + sym_expression, + STATE(1070), 1, sym_selector_expression, - STATE(2492), 1, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(2554), 1, - sym_expression, - STATE(3164), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61661,18 +62203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61680,7 +62222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61697,136 +62239,229 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45651] = 22, - ACTIONS(1255), 1, + [45679] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_DOT, + ACTIONS(1018), 1, + anon_sym_lambda, + ACTIONS(1022), 1, + anon_sym_not, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1257), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_STAR_STAR, - ACTIONS(1265), 1, + ACTIONS(1313), 1, + anon_sym_LBRACE, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, - anon_sym_PIPE, - ACTIONS(1275), 1, - anon_sym_AMP, - ACTIONS(1277), 1, - anon_sym_CARET, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1319), 1, + anon_sym_DQUOTE, + ACTIONS(1321), 1, + sym_float, + STATE(1057), 1, + sym_primary_expression, + STATE(1066), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2052), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3063), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1269), 2, + STATE(1123), 2, + sym_binary_operator, + sym_subscript, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1271), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1279), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1253), 5, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1128), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1030), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1121), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1088), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [45794] = 26, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1532), 8, + ACTIONS(1018), 1, + anon_sym_lambda, + ACTIONS(1022), 1, + anon_sym_not, + ACTIONS(1032), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1309), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + anon_sym_LBRACK, + ACTIONS(1313), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(1315), 1, + anon_sym_QMARK_DOT, + ACTIONS(1319), 1, anon_sym_DQUOTE, - anon_sym_TILDE, + ACTIONS(1321), 1, sym_float, - ACTIONS(1534), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, + STATE(1057), 1, + sym_primary_expression, + STATE(1066), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2054), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3063), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1123), 2, + sym_binary_operator, + sym_subscript, + STATE(1125), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + STATE(1128), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1030), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [45758] = 26, - ACTIONS(946), 1, + STATE(1121), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1088), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [45909] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1121), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - STATE(1495), 1, - sym_primary_expression, - STATE(1532), 1, - sym_expression, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1830), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2336), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61835,18 +62470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61854,7 +62489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61871,118 +62506,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45873] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1514), 26, - sym__dedent, + [46024] = 26, + ACTIONS(1086), 1, + anon_sym_DOT, + ACTIONS(1092), 1, + anon_sym_lambda, + ACTIONS(1106), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, + ACTIONS(1233), 1, anon_sym_LBRACK, + ACTIONS(1235), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1241), 1, anon_sym_DQUOTE, + ACTIONS(1243), 1, + sym_float, + STATE(327), 1, + sym_expression, + STATE(498), 1, + sym_primary_expression, + STATE(881), 1, + sym_call, + STATE(884), 1, + sym_selector_expression, + STATE(2504), 1, + sym_dotted_name, + STATE(3024), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(910), 2, + sym_in_operation, + sym_not_in_operation, + STATE(940), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1239), 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(1516), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(975), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1104), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [45944] = 26, - ACTIONS(13), 1, + STATE(939), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(937), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [46139] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1032), 1, + sym_string_start, + ACTIONS(1309), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + anon_sym_LBRACK, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1321), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(1462), 1, sym_identifier, - STATE(1501), 1, - sym_call, - STATE(1568), 1, + ACTIONS(1538), 1, + anon_sym_not, + STATE(1061), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2492), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2583), 1, sym_expression, - STATE(3164), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -61991,18 +62648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62010,7 +62667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62027,51 +62684,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46059] = 26, - ACTIONS(441), 1, + [46254] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(1540), 1, sym_identifier, - ACTIONS(940), 1, - anon_sym_not, - STATE(1176), 1, + STATE(747), 1, + sym_primary_expression, + STATE(888), 1, sym_selector_expression, - STATE(1369), 1, + STATE(905), 1, sym_call, - STATE(2001), 1, - sym_primary_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2545), 1, + STATE(2565), 1, sym_expression, - STATE(3223), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62080,18 +62737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62099,7 +62756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62116,51 +62773,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46174] = 26, - ACTIONS(946), 1, + [46369] = 26, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1321), 1, sym_float, - STATE(1495), 1, + ACTIONS(1462), 1, + sym_identifier, + STATE(1061), 1, sym_primary_expression, - STATE(1544), 1, - sym_expression, - STATE(1614), 1, - sym_call, - STATE(1830), 1, + STATE(1078), 1, sym_selector_expression, - STATE(2498), 1, + STATE(1082), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3132), 1, + STATE(2583), 1, + sym_expression, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62169,18 +62826,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1118), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62188,7 +62845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62205,51 +62862,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46289] = 26, - ACTIONS(946), 1, + [46484] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - STATE(1495), 1, - sym_primary_expression, - STATE(1504), 1, - sym_expression, - STATE(1614), 1, + ACTIONS(1418), 1, + sym_identifier, + STATE(1227), 1, sym_call, - STATE(1830), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3132), 1, + STATE(2472), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62258,18 +62915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62277,7 +62934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62294,22 +62951,30 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46404] = 4, - STATE(356), 1, - aux_sym_union_type_repeat1, + [46599] = 10, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1349), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, + anon_sym_QMARK_DOT, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + STATE(952), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 26, + ACTIONS(1544), 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_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -62325,16 +62990,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(1493), 33, + ACTIONS(1542), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -62361,51 +63024,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [46475] = 26, - ACTIONS(13), 1, + [46682] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1189), 1, + ACTIONS(962), 1, sym_identifier, - ACTIONS(1191), 1, + ACTIONS(964), 1, anon_sym_not, - STATE(1501), 1, - sym_call, - STATE(1513), 1, + STATE(1335), 1, sym_primary_expression, - STATE(1602), 1, + STATE(1388), 1, sym_expression, - STATE(1798), 1, + STATE(1414), 1, + sym_call, + STATE(1475), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2532), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62414,18 +63077,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62433,7 +63096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62450,51 +63113,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46590] = 26, - ACTIONS(441), 1, + [46797] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(894), 1, anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, + STATE(1495), 1, sym_call, - STATE(2032), 1, + STATE(1549), 1, sym_primary_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2546), 1, + STATE(1614), 1, sym_expression, - STATE(3223), 1, + STATE(1753), 1, + sym_selector_expression, + STATE(2463), 1, + sym_dotted_name, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62503,18 +63166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62522,7 +63185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62539,185 +63202,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46705] = 4, - ACTIONS(1540), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1536), 25, + [46912] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(555), 1, anon_sym_LPAREN, + ACTIONS(557), 1, anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(569), 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(571), 1, sym_float, - ACTIONS(1538), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(928), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [46776] = 4, - STATE(681), 1, - aux_sym_union_type_repeat1, + ACTIONS(930), 1, + anon_sym_not, + STATE(1198), 1, + sym_selector_expression, + STATE(1414), 1, + sym_call, + STATE(1989), 1, + sym_primary_expression, + STATE(2537), 1, + sym_dotted_name, + STATE(2569), 1, + sym_expression, + STATE(3261), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 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(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 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(1503), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1235), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [46847] = 26, - ACTIONS(507), 1, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [47027] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(948), 1, + anon_sym_not, + ACTIONS(958), 1, + sym_string_start, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(1277), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1417), 1, - sym_expression, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(1551), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1561), 1, + sym_call, + STATE(1842), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2377), 1, + sym_expression, + STATE(2527), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62726,18 +63344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62745,7 +63363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62762,51 +63380,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46962] = 26, - ACTIONS(507), 1, + [47142] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(944), 1, + anon_sym_lambda, + ACTIONS(958), 1, + sym_string_start, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, + STATE(1561), 1, sym_call, - STATE(1476), 1, + STATE(1573), 1, sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2298), 1, + STATE(1632), 1, sym_expression, - STATE(2442), 1, + STATE(1801), 1, + sym_selector_expression, + STATE(2470), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62815,18 +63433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62834,7 +63452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62851,51 +63469,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47077] = 26, - ACTIONS(507), 1, + [47257] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(1143), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1419), 1, - sym_expression, - STATE(1438), 1, - sym_primary_expression, - STATE(1473), 1, + ACTIONS(1546), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1521), 1, + STATE(1477), 1, + sym_primary_expression, + STATE(1520), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2564), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62904,18 +63522,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62923,7 +63541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62940,51 +63558,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47192] = 26, - ACTIONS(441), 1, + [47372] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(940), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1546), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1536), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1435), 1, sym_call, - STATE(2492), 1, + STATE(1447), 1, + sym_primary_expression, + STATE(1520), 1, + sym_selector_expression, + STATE(2537), 1, sym_dotted_name, - STATE(2553), 1, + STATE(2575), 1, sym_expression, - STATE(3223), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -62993,18 +63611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63012,7 +63630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63029,118 +63647,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47307] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1481), 26, - sym__dedent, + [47487] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(938), 1, + anon_sym_DOT, + ACTIONS(944), 1, + anon_sym_lambda, + ACTIONS(948), 1, + anon_sym_not, + ACTIONS(958), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1275), 1, anon_sym_LPAREN, + ACTIONS(1277), 1, anon_sym_LBRACK, + ACTIONS(1279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1285), 1, anon_sym_DQUOTE, + ACTIONS(1287), 1, + sym_float, + STATE(1551), 1, + sym_primary_expression, + STATE(1561), 1, + sym_call, + STATE(1842), 1, + sym_selector_expression, + STATE(2340), 1, + sym_expression, + STATE(2527), 1, + sym_dotted_name, + STATE(3130), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1853), 2, + sym_binary_operator, + sym_subscript, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 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(1483), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1913), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(956), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [47378] = 26, - ACTIONS(968), 1, + STATE(1861), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1862), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [47602] = 26, + ACTIONS(936), 1, sym_identifier, - ACTIONS(970), 1, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(980), 1, + ACTIONS(948), 1, anon_sym_not, - ACTIONS(990), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1287), 1, sym_float, - STATE(1021), 1, - sym_expression, - STATE(1027), 1, + STATE(1551), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1561), 1, sym_call, - STATE(1070), 1, + STATE(1629), 1, + sym_expression, + STATE(1842), 1, sym_selector_expression, - STATE(2504), 1, + STATE(2527), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63149,18 +63789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63168,7 +63808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63185,185 +63825,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47493] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1481), 26, - sym__dedent, + [47717] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(555), 1, anon_sym_LPAREN, + ACTIONS(557), 1, anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(569), 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(571), 1, sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_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(1156), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [47564] = 4, - STATE(356), 1, - aux_sym_union_type_repeat1, + ACTIONS(1158), 1, + anon_sym_not, + STATE(1414), 1, + sym_call, + STATE(1992), 1, + sym_primary_expression, + STATE(2039), 1, + sym_expression, + STATE(2059), 1, + sym_selector_expression, + STATE(2494), 1, + sym_dotted_name, + STATE(3261), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1465), 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(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 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(1467), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2066), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [47635] = 26, - ACTIONS(946), 1, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [47832] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1121), 1, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1123), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1257), 1, sym_float, - STATE(1485), 1, - sym_expression, - STATE(1495), 1, + STATE(704), 1, sym_primary_expression, - STATE(1614), 1, + STATE(905), 1, sym_call, - STATE(1830), 1, + STATE(907), 1, sym_selector_expression, - STATE(2498), 1, + STATE(1163), 1, + sym_expression, + STATE(2517), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, - sym_binary_operator, - sym_subscript, - STATE(1964), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63372,18 +63967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63391,7 +63986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63408,51 +64003,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47750] = 26, - ACTIONS(13), 1, + [47947] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(1501), 1, + STATE(1227), 1, sym_call, - STATE(1571), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2357), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2469), 1, sym_expression, - STATE(3164), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63461,18 +64056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63480,7 +64075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63497,51 +64092,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47865] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, + [48062] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1237), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(571), 1, sym_float, - STATE(823), 1, + ACTIONS(1110), 1, + sym_identifier, + ACTIONS(1112), 1, + anon_sym_not, + STATE(1544), 1, sym_primary_expression, - STATE(857), 1, - sym_call, - STATE(898), 1, - sym_selector_expression, - STATE(1155), 1, + STATE(1560), 1, sym_expression, - STATE(2502), 1, + STATE(1660), 1, + sym_selector_expression, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63550,18 +64145,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63569,7 +64164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63586,51 +64181,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47980] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [48177] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2282), 1, + STATE(2288), 1, sym_expression, - STATE(2484), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63639,18 +64234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63658,7 +64253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63675,51 +64270,135 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48095] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [48292] = 21, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1355), 1, + anon_sym_STAR_STAR, + ACTIONS(1357), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1365), 1, + anon_sym_PIPE, + ACTIONS(1367), 1, + anon_sym_AMP, + ACTIONS(1369), 1, + anon_sym_CARET, + ACTIONS(1377), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1452), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1456), 1, + anon_sym_is, + STATE(952), 1, + sym_argument_list, + STATE(1109), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1353), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1361), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1363), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1371), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1450), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1454), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(537), 1, + anon_sym_TILDE, sym_float, - ACTIONS(539), 1, + ACTIONS(1343), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [48397] = 26, + ACTIONS(409), 1, + anon_sym_DOT, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(972), 1, sym_identifier, - STATE(1473), 1, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_QMARK_DOT, + ACTIONS(1269), 1, + anon_sym_DQUOTE, + ACTIONS(1271), 1, + sym_float, + STATE(1227), 1, sym_call, - STATE(1476), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2296), 1, + STATE(2429), 1, sym_expression, - STATE(2442), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63728,18 +64407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63747,7 +64426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63764,51 +64443,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48210] = 26, - ACTIONS(401), 1, + [48512] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(1110), 1, + sym_identifier, + ACTIONS(1112), 1, + anon_sym_not, + STATE(1510), 1, + sym_expression, + STATE(1544), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1660), 1, sym_selector_expression, - STATE(2417), 1, - sym_expression, - STATE(2435), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63817,18 +64496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63836,7 +64515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63853,51 +64532,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48325] = 26, - ACTIONS(13), 1, + [48627] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, + anon_sym_LPAREN, + ACTIONS(1261), 1, + anon_sym_LBRACK, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, - sym_identifier, - STATE(1501), 1, + STATE(1227), 1, sym_call, - STATE(1575), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2466), 1, sym_expression, - STATE(3164), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63906,18 +64585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63925,7 +64604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63942,51 +64621,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48440] = 26, - ACTIONS(946), 1, + [48742] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(952), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1121), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(1271), 1, sym_float, - STATE(1495), 1, - sym_primary_expression, - STATE(1529), 1, - sym_expression, - STATE(1614), 1, + STATE(1227), 1, sym_call, - STATE(1830), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2432), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -63995,18 +64674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64014,7 +64693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64031,51 +64710,123 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48555] = 26, - ACTIONS(946), 1, + [48857] = 9, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(952), 1, - anon_sym_lambda, - ACTIONS(966), 1, + ACTIONS(1237), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1295), 1, + anon_sym_PLUS, + ACTIONS(1552), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1550), 24, + sym__dedent, sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, + 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(1548), 29, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1303), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [48938] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(571), 1, sym_float, - STATE(1495), 1, + ACTIONS(1110), 1, + sym_identifier, + ACTIONS(1112), 1, + anon_sym_not, + STATE(1544), 1, sym_primary_expression, - STATE(1610), 1, + STATE(1615), 1, sym_expression, - STATE(1614), 1, - sym_call, - STATE(1830), 1, + STATE(1660), 1, sym_selector_expression, - STATE(2498), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3132), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64084,18 +64835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64103,7 +64854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64120,51 +64871,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48670] = 26, - ACTIONS(441), 1, + [49053] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, - sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1537), 1, - sym_primary_expression, - STATE(1634), 1, + STATE(1227), 1, sym_call, - STATE(2492), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, + sym_selector_expression, + STATE(2454), 1, sym_dotted_name, - STATE(2546), 1, + STATE(2465), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64173,18 +64924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64192,7 +64943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64209,51 +64960,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48785] = 26, - ACTIONS(441), 1, + [49168] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(948), 1, + anon_sym_not, + ACTIONS(958), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_not, - STATE(1369), 1, - sym_call, - STATE(1969), 1, + STATE(1551), 1, sym_primary_expression, - STATE(2018), 1, + STATE(1561), 1, + sym_call, + STATE(1625), 1, sym_expression, - STATE(2045), 1, + STATE(1842), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2527), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64262,18 +65013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2052), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64281,7 +65032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64298,51 +65049,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48900] = 26, - ACTIONS(946), 1, + [49283] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(952), 1, - anon_sym_lambda, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, - anon_sym_not, - ACTIONS(1303), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, - anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(53), 1, sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1464), 1, + sym_identifier, STATE(1495), 1, - sym_primary_expression, - STATE(1500), 1, - sym_expression, - STATE(1614), 1, sym_call, + STATE(1539), 1, + sym_primary_expression, STATE(1830), 1, sym_selector_expression, - STATE(2498), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3132), 1, + STATE(2579), 1, + sym_expression, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, - sym_binary_operator, - sym_subscript, - STATE(1964), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64351,18 +65102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1954), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64370,7 +65121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64387,127 +65138,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49015] = 13, - ACTIONS(1255), 1, - anon_sym_LPAREN, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_STAR_STAR, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1269), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1271), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 17, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [49104] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [49398] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, + ACTIONS(1054), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(1056), 1, anon_sym_not, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, + STATE(1587), 1, sym_primary_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2572), 1, + STATE(1661), 1, + sym_call, + STATE(1786), 1, + sym_selector_expression, + STATE(2361), 1, sym_expression, - STATE(3223), 1, + STATE(2531), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64516,18 +65191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64535,7 +65210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64552,51 +65227,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49219] = 26, - ACTIONS(13), 1, + [49513] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(778), 1, + anon_sym_LBRACK, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(996), 1, sym_identifier, - STATE(1501), 1, - sym_call, - STATE(1577), 1, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1717), 1, + sym_expression, + STATE(1791), 1, + sym_call, + STATE(1885), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2554), 1, - sym_expression, - STATE(3164), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64605,18 +65280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64624,7 +65299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64641,51 +65316,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49334] = 26, - ACTIONS(401), 1, + [49628] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(794), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1779), 1, + sym_expression, + STATE(1791), 1, + sym_call, + STATE(1885), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2444), 1, - sym_expression, - STATE(3176), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64694,18 +65369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64713,7 +65388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64730,51 +65405,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49449] = 26, - ACTIONS(401), 1, + [49743] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(53), 1, sym_float, - STATE(1194), 1, - sym_expression, - STATE(1196), 1, - sym_primary_expression, - STATE(1211), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(1241), 1, + STATE(1549), 1, + sym_primary_expression, + STATE(1610), 1, + sym_expression, + STATE(1753), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64783,18 +65458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64802,7 +65477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64819,128 +65494,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49564] = 14, - ACTIONS(1255), 1, - anon_sym_LPAREN, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_STAR_STAR, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1269), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1271), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1279), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 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(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [49655] = 26, - ACTIONS(766), 1, - anon_sym_DOT, + [49858] = 26, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, ACTIONS(786), 1, - anon_sym_DQUOTE, + anon_sym_not, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(976), 1, sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2436), 1, + STATE(2524), 1, sym_expression, - STATE(2453), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -64949,18 +65547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64968,7 +65566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64985,51 +65583,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49770] = 26, - ACTIONS(401), 1, + [49973] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(914), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1257), 1, sym_float, - STATE(1196), 1, + STATE(568), 1, sym_primary_expression, - STATE(1206), 1, + STATE(651), 1, sym_expression, - STATE(1211), 1, - sym_call, - STATE(1241), 1, + STATE(879), 1, sym_selector_expression, - STATE(2507), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65038,18 +65636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65057,7 +65655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65074,51 +65672,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49885] = 26, - ACTIONS(401), 1, + [50088] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1191), 1, + ACTIONS(1054), 1, + sym_identifier, + ACTIONS(1056), 1, + anon_sym_not, + STATE(1168), 1, sym_expression, - STATE(1196), 1, + STATE(1587), 1, sym_primary_expression, - STATE(1211), 1, + STATE(1661), 1, sym_call, - STATE(1241), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2531), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65127,18 +65725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65146,7 +65744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65163,51 +65761,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50000] = 26, - ACTIONS(401), 1, + [50203] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(914), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1257), 1, sym_float, - STATE(1177), 1, + STATE(397), 1, sym_expression, - STATE(1196), 1, + STATE(568), 1, sym_primary_expression, - STATE(1211), 1, - sym_call, - STATE(1241), 1, + STATE(879), 1, sym_selector_expression, - STATE(2507), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65216,18 +65814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65235,7 +65833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65252,51 +65850,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50115] = 26, - ACTIONS(766), 1, + [50318] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(786), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(692), 1, sym_identifier, - STATE(1636), 1, + STATE(1435), 1, sym_call, - STATE(1643), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2453), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2489), 1, + STATE(2481), 1, sym_expression, - STATE(3197), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65305,18 +65903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65324,7 +65922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65341,145 +65939,53 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50230] = 15, - ACTIONS(1255), 1, - anon_sym_LPAREN, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_STAR_STAR, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1277), 1, - anon_sym_CARET, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [50433] = 4, + ACTIONS(1554), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1269), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1271), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1279), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 14, + ACTIONS(1337), 25, 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(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [50323] = 16, - ACTIONS(1255), 1, anon_sym_LPAREN, - ACTIONS(1257), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1265), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1275), 1, - anon_sym_AMP, - ACTIONS(1277), 1, - anon_sym_CARET, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1269), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1271), 2, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1279), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1542), 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(1544), 30, + ACTIONS(1335), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -65489,6 +65995,8 @@ 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, @@ -65498,99 +66006,121 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [50418] = 12, - ACTIONS(1255), 1, + [50504] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, + anon_sym_DOT, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(914), 1, + anon_sym_not, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1257), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_STAR_STAR, - ACTIONS(1265), 1, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1257), 1, + sym_float, + STATE(330), 1, + sym_expression, + STATE(568), 1, + sym_primary_expression, + STATE(879), 1, + sym_selector_expression, + STATE(905), 1, + sym_call, + STATE(2479), 1, + sym_dotted_name, + STATE(3096), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1271), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 19, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(920), 2, + sym_in_operation, + sym_not_in_operation, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 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(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(976), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(922), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [50505] = 4, + STATE(932), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(934), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [50619] = 9, + ACTIONS(904), 1, + anon_sym_DOT, + ACTIONS(1251), 1, + anon_sym_QMARK_DOT, + ACTIONS(1301), 1, + anon_sym_and, + ACTIONS(1303), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(792), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1443), 26, - sym__dedent, + ACTIONS(1550), 24, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -65607,9 +66137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1445), 32, + ACTIONS(1548), 29, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -65628,8 +66157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -65640,51 +66167,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [50576] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [50700] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, - anon_sym_not, - STATE(1327), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1357), 1, - sym_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1483), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2482), 1, + sym_expression, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65693,18 +66220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65712,7 +66239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65729,51 +66256,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50691] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [50815] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(964), 1, + anon_sym_not, + STATE(1335), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1375), 1, + sym_expression, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1475), 1, sym_selector_expression, - STATE(2284), 1, - sym_expression, - STATE(2484), 1, + STATE(2532), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65782,18 +66309,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65801,7 +66328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65818,51 +66345,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50806] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [50930] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1162), 1, - sym_expression, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2296), 1, + sym_expression, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65871,18 +66398,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65890,7 +66417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65907,51 +66434,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50921] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [51045] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(938), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_not, STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(2001), 1, + sym_expression, + STATE(1354), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, + sym_selector_expression, + STATE(2507), 1, sym_dotted_name, - STATE(2562), 1, - sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1357), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -65960,18 +66487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65979,7 +66506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65996,51 +66523,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51036] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [51160] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, + ACTIONS(1054), 1, + sym_identifier, + ACTIONS(1056), 1, + anon_sym_not, + STATE(1176), 1, + sym_expression, + STATE(1587), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1661), 1, sym_call, - STATE(1742), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2364), 1, - sym_expression, - STATE(2470), 1, + STATE(2531), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66049,18 +66576,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66068,7 +66595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66085,197 +66612,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51151] = 10, - ACTIONS(1255), 1, - anon_sym_LPAREN, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_STAR_STAR, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 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(1544), 32, - anon_sym_import, + [51275] = 26, + ACTIONS(409), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + ACTIONS(419), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(427), 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, - [51234] = 10, - ACTIONS(1255), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1257), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, ACTIONS(1263), 1, - anon_sym_STAR_STAR, + anon_sym_LBRACE, ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1269), 1, + anon_sym_DQUOTE, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1418), 1, + sym_identifier, + STATE(1227), 1, + sym_call, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, + sym_selector_expression, + STATE(2331), 1, + sym_dotted_name, + STATE(2500), 1, + sym_expression, + STATE(3180), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 21, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(1355), 2, + sym_binary_operator, + sym_subscript, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 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(1544), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1360), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(437), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [51317] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + STATE(1348), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1339), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [51390] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1028), 1, + ACTIONS(1054), 1, sym_identifier, - ACTIONS(1030), 1, + ACTIONS(1056), 1, anon_sym_not, - STATE(1519), 1, + STATE(1587), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1661), 1, sym_call, - STATE(1817), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2362), 1, + STATE(2339), 1, sym_expression, - STATE(2514), 1, + STATE(2531), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66284,18 +66754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1952), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66303,7 +66773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66320,51 +66790,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51432] = 26, - ACTIONS(507), 1, + [51505] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, + ACTIONS(1110), 1, sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + ACTIONS(1112), 1, + anon_sym_not, + STATE(1544), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1564), 1, + sym_expression, + STATE(1660), 1, sym_selector_expression, - STATE(2442), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(2466), 1, - sym_expression, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66373,18 +66843,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66392,7 +66862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66409,18 +66879,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51547] = 6, - ACTIONS(1546), 1, - anon_sym_DOT, - ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + [51620] = 5, + ACTIONS(1558), 1, + anon_sym_PIPE, + STATE(660), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(655), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1474), 25, + ACTIONS(1385), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -66429,12 +66896,12 @@ 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, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -66446,12 +66913,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1469), 31, + ACTIONS(1383), 33, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -66478,51 +66947,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [51622] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, + [51693] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(922), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1237), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(571), 1, sym_float, - STATE(823), 1, + STATE(1354), 1, sym_primary_expression, - STATE(857), 1, + STATE(1414), 1, sym_call, - STATE(898), 1, + STATE(1427), 1, sym_selector_expression, - STATE(1171), 1, + STATE(2486), 1, sym_expression, - STATE(2502), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3095), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66531,18 +67000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66550,7 +67019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66567,15 +67036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51737] = 4, - STATE(356), 1, - aux_sym_union_type_repeat1, + [51808] = 4, + ACTIONS(1561), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 26, - sym__dedent, + ACTIONS(1392), 25, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -66585,7 +67054,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, @@ -66600,7 +67068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1431), 33, + ACTIONS(1390), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -66624,6 +67092,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, @@ -66634,51 +67103,140 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [51808] = 26, - ACTIONS(401), 1, + [51879] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, + sym_primary_expression, + STATE(1495), 1, + sym_call, + STATE(1642), 1, + sym_selector_expression, + STATE(2485), 1, + sym_expression, + STATE(2552), 1, + sym_dotted_name, + STATE(3186), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1969), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1967), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1973), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1974), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [51994] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1196), 1, + ACTIONS(1054), 1, + sym_identifier, + ACTIONS(1056), 1, + anon_sym_not, + STATE(1587), 1, sym_primary_expression, - STATE(1208), 1, - sym_expression, - STATE(1211), 1, + STATE(1661), 1, sym_call, - STATE(1241), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2358), 1, + sym_expression, + STATE(2531), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66687,18 +67245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66706,7 +67264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66723,51 +67281,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51923] = 26, - ACTIONS(441), 1, - anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(545), 1, + [52109] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - STATE(1364), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1495), 1, sym_call, - STATE(1422), 1, + STATE(1642), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2348), 1, sym_expression, - STATE(2484), 1, + STATE(2552), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66776,18 +67334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66795,7 +67353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66812,51 +67370,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52038] = 26, - ACTIONS(401), 1, + [52224] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1178), 1, - sym_expression, - STATE(1196), 1, - sym_primary_expression, - STATE(1211), 1, + ACTIONS(1418), 1, + sym_identifier, + STATE(1227), 1, sym_call, - STATE(1241), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2324), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2503), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66865,18 +67423,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66884,7 +67442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66901,51 +67459,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52153] = 26, - ACTIONS(401), 1, + [52339] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1192), 1, - sym_expression, - STATE(1196), 1, - sym_primary_expression, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1241), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2389), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -66954,18 +67512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1345), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66973,7 +67531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66990,51 +67548,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52268] = 26, - ACTIONS(441), 1, + [52454] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1422), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2463), 1, - sym_expression, - STATE(2484), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2506), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67043,18 +67601,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67062,7 +67620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67079,120 +67637,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52383] = 6, - ACTIONS(1552), 1, + [52569] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(1555), 1, - anon_sym_QMARK_DOT, - STATE(663), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1438), 25, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(914), 1, + anon_sym_not, + ACTIONS(924), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1245), 1, anon_sym_LPAREN, + ACTIONS(1247), 1, anon_sym_LBRACK, + ACTIONS(1249), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(1251), 1, + anon_sym_QMARK_DOT, + ACTIONS(1255), 1, anon_sym_DQUOTE, + ACTIONS(1257), 1, + sym_float, + STATE(411), 1, + sym_expression, + STATE(568), 1, + sym_primary_expression, + STATE(879), 1, + sym_selector_expression, + STATE(905), 1, + sym_call, + STATE(2479), 1, + sym_dotted_name, + STATE(3096), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(920), 2, + sym_in_operation, + sym_not_in_operation, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 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(1433), 32, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(976), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(922), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [52458] = 26, - ACTIONS(507), 1, + STATE(932), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(934), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [52684] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1425), 1, - sym_identifier, - STATE(1421), 1, - sym_primary_expression, - STATE(1473), 1, + STATE(1227), 1, sym_call, - STATE(1492), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2555), 1, + STATE(2381), 1, sym_expression, - STATE(3179), 1, + STATE(2454), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67201,18 +67779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67220,7 +67798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67237,51 +67815,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52573] = 26, - ACTIONS(507), 1, + [52799] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1425), 1, - sym_identifier, - STATE(1423), 1, - sym_primary_expression, - STATE(1473), 1, + STATE(1227), 1, sym_call, - STATE(1492), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2508), 1, sym_expression, - STATE(3179), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67290,18 +67868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67309,7 +67887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67326,15 +67904,16 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52688] = 5, - ACTIONS(1558), 1, - anon_sym_EQ, - STATE(681), 1, - aux_sym_union_type_repeat1, + [52914] = 5, + ACTIONS(1303), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1399), 26, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1430), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -67344,7 +67923,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, @@ -67361,7 +67939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1397), 32, + ACTIONS(1428), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -67394,51 +67972,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [52761] = 26, - ACTIONS(9), 1, + [52987] = 26, + ACTIONS(936), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(948), 1, + anon_sym_not, + ACTIONS(958), 1, + sym_string_start, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(1277), 1, + anon_sym_LBRACK, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1287), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, + STATE(1551), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1561), 1, sym_call, - STATE(1742), 1, + STATE(1842), 1, sym_selector_expression, - STATE(2360), 1, + STATE(2378), 1, sym_expression, - STATE(2470), 1, + STATE(2527), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67447,18 +68025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67466,7 +68044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67483,51 +68061,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52876] = 26, - ACTIONS(441), 1, + [53102] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(914), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1257), 1, sym_float, - STATE(1364), 1, + STATE(568), 1, sym_primary_expression, - STATE(1369), 1, - sym_call, - STATE(1422), 1, - sym_selector_expression, - STATE(2467), 1, + STATE(696), 1, sym_expression, - STATE(2484), 1, + STATE(879), 1, + sym_selector_expression, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67536,18 +68114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67555,7 +68133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67572,51 +68150,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52991] = 26, - ACTIONS(507), 1, + [53217] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(914), 1, + anon_sym_not, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(1143), 1, - anon_sym_not, - STATE(1415), 1, - sym_expression, - STATE(1438), 1, + STATE(568), 1, sym_primary_expression, - STATE(1473), 1, - sym_call, - STATE(1521), 1, + STATE(734), 1, + sym_expression, + STATE(879), 1, sym_selector_expression, - STATE(2521), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67625,18 +68203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67644,7 +68222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67661,51 +68239,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53106] = 26, - ACTIONS(912), 1, + [53332] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1355), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1500), 1, sym_identifier, - STATE(597), 1, + STATE(1198), 1, + sym_selector_expression, + STATE(1547), 1, sym_primary_expression, - STATE(857), 1, + STATE(1661), 1, sym_call, - STATE(885), 1, - sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2568), 1, + STATE(2569), 1, sym_expression, - STATE(3095), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67714,18 +68292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67733,7 +68311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67750,51 +68328,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53221] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [53447] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1499), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1500), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1546), 1, sym_primary_expression, - STATE(1501), 1, + STATE(1661), 1, sym_call, - STATE(1742), 1, - sym_selector_expression, - STATE(2470), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2539), 1, + STATE(2567), 1, sym_expression, - STATE(3164), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67803,18 +68381,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67822,7 +68400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67839,51 +68417,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53336] = 26, - ACTIONS(912), 1, + [53562] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(940), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1355), 1, - sym_identifier, - STATE(599), 1, - sym_primary_expression, - STATE(857), 1, + STATE(1227), 1, sym_call, - STATE(885), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(2433), 1, sym_expression, - STATE(3095), 1, + STATE(2454), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -67892,18 +68470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67911,7 +68489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67928,136 +68506,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53451] = 22, - ACTIONS(1255), 1, + [53677] = 4, + ACTIONS(1563), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1412), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1257), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1265), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1273), 1, - anon_sym_PIPE, - ACTIONS(1275), 1, - anon_sym_AMP, - ACTIONS(1277), 1, - anon_sym_CARET, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1269), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1271), 2, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1279), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1253), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1560), 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(1562), 20, + ACTIONS(1410), 34, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [53558] = 26, - ACTIONS(507), 1, + [53748] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(1143), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1417), 1, - sym_expression, - STATE(1438), 1, + ACTIONS(1500), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1528), 1, sym_primary_expression, - STATE(1473), 1, + STATE(1661), 1, sym_call, - STATE(1521), 1, - sym_selector_expression, - STATE(2521), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2567), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68066,18 +68626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68085,7 +68645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68102,51 +68662,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53673] = 26, - ACTIONS(13), 1, + [53863] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(778), 1, + anon_sym_LBRACK, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(976), 1, sym_identifier, - STATE(1501), 1, - sym_call, - STATE(1555), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2554), 1, + STATE(2448), 1, sym_expression, - STATE(3164), 1, + STATE(2529), 1, + sym_dotted_name, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(2002), 2, + sym_binary_operator, + sym_subscript, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + ACTIONS(788), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2004), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(792), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1998), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2008), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [53978] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + anon_sym_LBRACE, + ACTIONS(565), 1, + anon_sym_QMARK_DOT, + ACTIONS(569), 1, + anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1500), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1527), 1, + sym_primary_expression, + STATE(1661), 1, + sym_call, + STATE(2537), 1, + sym_dotted_name, + STATE(2567), 1, + sym_expression, + STATE(3261), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68155,18 +68804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68174,7 +68823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68191,51 +68840,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53788] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [54093] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1166), 1, + STATE(1168), 1, sym_expression, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + ACTIONS(567), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1631), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [54208] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + anon_sym_LBRACE, + ACTIONS(565), 1, + anon_sym_QMARK_DOT, + ACTIONS(569), 1, + anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1500), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1526), 1, + sym_primary_expression, + STATE(1661), 1, + sym_call, + STATE(2537), 1, + sym_dotted_name, + STATE(2567), 1, + sym_expression, + STATE(3261), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68244,18 +68982,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68263,7 +69001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68280,51 +69018,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53903] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [54323] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1337), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1500), 1, sym_identifier, - STATE(793), 1, + STATE(1198), 1, + sym_selector_expression, + STATE(1525), 1, sym_primary_expression, - STATE(856), 1, + STATE(1661), 1, sym_call, - STATE(881), 1, - sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2567), 1, sym_expression, - STATE(3037), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68333,18 +69071,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68352,7 +69090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68369,51 +69107,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54018] = 26, - ACTIONS(994), 1, + [54438] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1337), 1, - sym_identifier, - ACTIONS(1564), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(793), 1, + ACTIONS(1500), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1524), 1, sym_primary_expression, - STATE(856), 1, + STATE(1661), 1, sym_call, - STATE(881), 1, - sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2567), 1, sym_expression, - STATE(3037), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68422,18 +69160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68441,7 +69179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68458,51 +69196,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54133] = 26, - ACTIONS(994), 1, + [54553] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1213), 1, - sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1223), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(571), 1, sym_float, - STATE(424), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1500), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1522), 1, sym_primary_expression, - STATE(856), 1, + STATE(1661), 1, sym_call, - STATE(876), 1, - sym_selector_expression, - STATE(1149), 1, - sym_expression, - STATE(2478), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2567), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68511,18 +69249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68530,7 +69268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68547,51 +69285,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54248] = 26, - ACTIONS(994), 1, + [54668] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1213), 1, - sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1223), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(571), 1, sym_float, - STATE(424), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1500), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1521), 1, sym_primary_expression, - STATE(856), 1, + STATE(1661), 1, sym_call, - STATE(876), 1, - sym_selector_expression, - STATE(1148), 1, - sym_expression, - STATE(2478), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2567), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68600,18 +69338,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68619,7 +69357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68636,118 +69374,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54363] = 4, - STATE(551), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1349), 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(1347), 33, - anon_sym_import, + [54783] = 26, + ACTIONS(449), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(457), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [54434] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1141), 1, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(1143), 1, + ACTIONS(1112), 1, anon_sym_not, - STATE(1427), 1, - sym_expression, - STATE(1438), 1, + STATE(1544), 1, sym_primary_expression, - STATE(1473), 1, - sym_call, - STATE(1521), 1, + STATE(1565), 1, + sym_expression, + STATE(1660), 1, sym_selector_expression, - STATE(2521), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68756,18 +69427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68775,7 +69446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68792,51 +69463,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54549] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + [54898] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1004), 1, - anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(571), 1, sym_float, - STATE(517), 1, + ACTIONS(1054), 1, + sym_identifier, + ACTIONS(1056), 1, + anon_sym_not, + STATE(1587), 1, sym_primary_expression, - STATE(811), 1, - sym_expression, - STATE(856), 1, + STATE(1661), 1, sym_call, - STATE(877), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2362), 1, + sym_expression, + STATE(2531), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68845,18 +69516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68864,7 +69535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68881,51 +69552,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54664] = 26, - ACTIONS(507), 1, + [55013] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1141), 1, + ACTIONS(1054), 1, sym_identifier, - ACTIONS(1143), 1, + ACTIONS(1056), 1, anon_sym_not, - STATE(1438), 1, + STATE(1587), 1, sym_primary_expression, - STATE(1470), 1, - sym_expression, - STATE(1473), 1, + STATE(1661), 1, sym_call, - STATE(1521), 1, + STATE(1786), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2354), 1, + sym_expression, + STATE(2531), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -68934,18 +69605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68953,7 +69624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68970,51 +69641,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54779] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [55128] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1337), 1, + ACTIONS(1500), 1, sym_identifier, - STATE(820), 1, + ACTIONS(1565), 1, + anon_sym_not, + STATE(1198), 1, + sym_selector_expression, + STATE(1507), 1, sym_primary_expression, - STATE(856), 1, + STATE(1661), 1, sym_call, - STATE(881), 1, - sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2567), 1, sym_expression, - STATE(3037), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69023,18 +69694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69042,7 +69713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69059,53 +69730,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54894] = 27, - ACTIONS(13), 1, + [55243] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(535), 1, anon_sym_not, - ACTIONS(49), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1566), 1, + ACTIONS(692), 1, sym_identifier, - STATE(1499), 1, - sym_primary_expression, - STATE(1501), 1, + STATE(1435), 1, sym_call, - STATE(2010), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2051), 1, - sym_schema_instantiation, - STATE(2385), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2538), 1, + STATE(2555), 1, sym_expression, - STATE(3164), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69114,18 +69783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1909), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69133,8 +69802,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 15, + STATE(1747), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69149,51 +69819,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55011] = 26, - ACTIONS(507), 1, + [55358] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1425), 1, - sym_identifier, - STATE(1424), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1473), 1, + STATE(1414), 1, sym_call, - STATE(1492), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2507), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2556), 1, sym_expression, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69202,18 +69872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69221,7 +69891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69238,51 +69908,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55126] = 26, - ACTIONS(507), 1, + [55473] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(1143), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1414), 1, - sym_expression, - STATE(1438), 1, + ACTIONS(1500), 1, + sym_identifier, + STATE(1198), 1, + sym_selector_expression, + STATE(1507), 1, sym_primary_expression, - STATE(1473), 1, + STATE(1661), 1, sym_call, - STATE(1521), 1, - sym_selector_expression, - STATE(2521), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2567), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69291,18 +69961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69310,7 +69980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69327,51 +69997,125 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55241] = 26, - ACTIONS(507), 1, + [55588] = 11, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1251), 1, + anon_sym_QMARK_DOT, + ACTIONS(1301), 1, + anon_sym_and, + ACTIONS(1303), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_or, + ACTIONS(1571), 1, + anon_sym_as, + ACTIONS(1573), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1567), 24, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(517), 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(1569), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_else, anon_sym_lambda, - ACTIONS(519), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [55673] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1425), 1, + ACTIONS(962), 1, sym_identifier, - STATE(1428), 1, + ACTIONS(964), 1, + anon_sym_not, + STATE(1335), 1, sym_primary_expression, - STATE(1473), 1, + STATE(1350), 1, + sym_expression, + STATE(1414), 1, sym_call, - STATE(1492), 1, + STATE(1475), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2532), 1, sym_dotted_name, - STATE(2557), 1, - sym_expression, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69380,18 +70124,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69399,7 +70143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69416,51 +70160,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55356] = 26, - ACTIONS(507), 1, + [55788] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1141), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1143), 1, - anon_sym_not, - STATE(1438), 1, - sym_primary_expression, - STATE(1469), 1, - sym_expression, - STATE(1473), 1, + STATE(1435), 1, sym_call, - STATE(1521), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2467), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69469,18 +70213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69488,7 +70232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69505,51 +70249,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55471] = 26, - ACTIONS(507), 1, + [55903] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1141), 1, + ACTIONS(928), 1, sym_identifier, - ACTIONS(1143), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1435), 1, - sym_expression, - STATE(1438), 1, - sym_primary_expression, - STATE(1473), 1, - sym_call, - STATE(1521), 1, + STATE(1198), 1, sym_selector_expression, - STATE(2521), 1, + STATE(1414), 1, + sym_call, + STATE(2034), 1, + sym_primary_expression, + STATE(2537), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2577), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69558,18 +70302,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69577,7 +70321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69594,51 +70338,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55586] = 26, - ACTIONS(507), 1, + [56018] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1425), 1, + ACTIONS(928), 1, sym_identifier, - STATE(1429), 1, - sym_primary_expression, - STATE(1473), 1, - sym_call, - STATE(1492), 1, + ACTIONS(930), 1, + anon_sym_not, + STATE(1198), 1, sym_selector_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(2034), 1, + sym_primary_expression, + STATE(2537), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2562), 1, sym_expression, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1408), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69647,18 +70391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1235), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69666,7 +70410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69683,51 +70427,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55701] = 26, - ACTIONS(507), 1, + [56133] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1425), 1, + ACTIONS(1464), 1, sym_identifier, - STATE(1430), 1, - sym_primary_expression, - STATE(1473), 1, + STATE(1495), 1, sym_call, - STATE(1492), 1, + STATE(1543), 1, + sym_primary_expression, + STATE(1830), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2579), 1, sym_expression, - STATE(3179), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69736,18 +70480,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69755,7 +70499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69772,51 +70516,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55816] = 26, - ACTIONS(441), 1, + [56248] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(1464), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1515), 1, - sym_primary_expression, - STATE(1634), 1, + ACTIONS(1575), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(2492), 1, + STATE(1519), 1, + sym_primary_expression, + STATE(1830), 1, + sym_selector_expression, + STATE(2537), 1, sym_dotted_name, - STATE(2553), 1, + STATE(2579), 1, sym_expression, - STATE(3223), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69825,18 +70569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69844,7 +70588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69861,51 +70605,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55931] = 26, - ACTIONS(401), 1, + [56363] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(794), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1702), 1, + sym_expression, + STATE(1791), 1, + sym_call, + STATE(1885), 1, sym_selector_expression, - STATE(2330), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2485), 1, - sym_expression, - STATE(3176), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -69914,18 +70658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69933,7 +70677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69950,51 +70694,135 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56046] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [56478] = 21, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1514), 1, + anon_sym_not, + ACTIONS(1520), 1, + anon_sym_PIPE, + ACTIONS(1522), 1, + anon_sym_AMP, + ACTIONS(1524), 1, + anon_sym_CARET, + ACTIONS(1530), 1, + anon_sym_is, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(1132), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1508), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1516), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1506), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1528), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(537), 1, + anon_sym_TILDE, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(940), 1, + ACTIONS(1343), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [56583] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(1425), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, sym_identifier, - STATE(1431), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + anon_sym_LBRACE, + ACTIONS(565), 1, + anon_sym_QMARK_DOT, + ACTIONS(569), 1, + anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + STATE(1354), 1, sym_primary_expression, - STATE(1473), 1, + STATE(1414), 1, sym_call, - STATE(1492), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2507), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2522), 1, sym_expression, - STATE(3179), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70003,18 +70831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70022,7 +70850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70039,51 +70867,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56161] = 26, - ACTIONS(507), 1, + [56698] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1425), 1, + ACTIONS(1546), 1, sym_identifier, - STATE(1432), 1, - sym_primary_expression, - STATE(1473), 1, + STATE(1435), 1, sym_call, - STATE(1492), 1, + STATE(1445), 1, + sym_primary_expression, + STATE(1520), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2575), 1, sym_expression, - STATE(3179), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70092,18 +70920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70111,7 +70939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70128,51 +70956,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56276] = 26, - ACTIONS(507), 1, + [56813] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1425), 1, + ACTIONS(1546), 1, sym_identifier, - STATE(1434), 1, - sym_primary_expression, - STATE(1473), 1, + STATE(1435), 1, sym_call, - STATE(1492), 1, + STATE(1443), 1, + sym_primary_expression, + STATE(1520), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2575), 1, sym_expression, - STATE(3179), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70181,18 +71009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70200,7 +71028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70217,51 +71045,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56391] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [56928] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1223), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, - anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1337), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1464), 1, sym_identifier, - STATE(821), 1, - sym_primary_expression, - STATE(856), 1, + STATE(1495), 1, sym_call, - STATE(881), 1, + STATE(1538), 1, + sym_primary_expression, + STATE(1830), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2579), 1, sym_expression, - STATE(3037), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70270,18 +71098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70289,7 +71117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70306,51 +71134,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56506] = 26, - ACTIONS(401), 1, + [57043] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(545), 1, sym_float, - STATE(1211), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1546), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1213), 1, + STATE(1442), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1520), 1, sym_selector_expression, - STATE(2328), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2488), 1, + STATE(2575), 1, sym_expression, - STATE(3176), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1732), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70359,18 +71187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70378,7 +71206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70395,51 +71223,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56621] = 26, - ACTIONS(401), 1, + [57158] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(53), 1, sym_float, - STATE(1211), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1464), 1, + sym_identifier, + STATE(1495), 1, sym_call, - STATE(1213), 1, + STATE(1537), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1830), 1, sym_selector_expression, - STATE(2382), 1, - sym_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2579), 1, + sym_expression, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70448,18 +71276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70467,7 +71295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70484,7 +71312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56736] = 26, + [57273] = 26, ACTIONS(13), 1, anon_sym_DOT, ACTIONS(19), 1, @@ -70503,29 +71331,29 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, - sym_identifier, - ACTIONS(1568), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1501), 1, + ACTIONS(1464), 1, + sym_identifier, + STATE(1495), 1, sym_call, - STATE(1622), 1, + STATE(1536), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1830), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2579), 1, sym_expression, - STATE(3164), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, ACTIONS(47), 3, @@ -70537,7 +71365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -70548,7 +71376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70556,7 +71384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70573,51 +71401,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56851] = 26, - ACTIONS(766), 1, + [57388] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1163), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1636), 1, - sym_call, - STATE(1647), 1, + ACTIONS(1546), 1, + sym_identifier, + STATE(1418), 1, sym_primary_expression, - STATE(1786), 1, - sym_expression, - STATE(1846), 1, + STATE(1435), 1, + sym_call, + STATE(1520), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2575), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70626,18 +71454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70645,7 +71473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70662,51 +71490,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56966] = 26, - ACTIONS(401), 1, + [57503] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(53), 1, sym_float, - STATE(1211), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1464), 1, + sym_identifier, + STATE(1495), 1, sym_call, - STATE(1213), 1, + STATE(1535), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1830), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2491), 1, + STATE(2579), 1, sym_expression, - STATE(3176), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70715,18 +71543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70734,7 +71562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70751,51 +71579,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57081] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [57618] = 4, + STATE(848), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1434), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1432), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(519), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [57689] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(1143), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, anon_sym_not, - STATE(1438), 1, - sym_primary_expression, - STATE(1442), 1, - sym_expression, - STATE(1473), 1, + ACTIONS(1464), 1, + sym_identifier, + STATE(1495), 1, sym_call, - STATE(1521), 1, + STATE(1534), 1, + sym_primary_expression, + STATE(1830), 1, sym_selector_expression, - STATE(2521), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2579), 1, + sym_expression, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70804,18 +71699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1644), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70823,7 +71718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70840,51 +71735,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57196] = 26, - ACTIONS(766), 1, + [57804] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1163), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1636), 1, - sym_call, - STATE(1647), 1, + ACTIONS(1546), 1, + sym_identifier, + STATE(1426), 1, sym_primary_expression, - STATE(1802), 1, - sym_expression, - STATE(1846), 1, + STATE(1435), 1, + sym_call, + STATE(1520), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2575), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70893,18 +71788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70912,7 +71807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70929,51 +71824,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57311] = 26, - ACTIONS(766), 1, + [57919] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1163), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1636), 1, + ACTIONS(1546), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1647), 1, + STATE(1441), 1, sym_primary_expression, - STATE(1689), 1, - sym_expression, - STATE(1846), 1, + STATE(1520), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2575), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -70982,18 +71877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71001,7 +71896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71018,51 +71913,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57426] = 26, - ACTIONS(507), 1, + [58034] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(1473), 1, + STATE(1227), 1, sym_call, - STATE(1476), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2302), 1, - sym_expression, - STATE(2442), 1, + STATE(2342), 1, sym_dotted_name, - STATE(3179), 1, + STATE(2447), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71071,18 +71966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71090,7 +71985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71107,51 +72002,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57541] = 26, - ACTIONS(13), 1, + [58149] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1395), 1, + ACTIONS(1546), 1, sym_identifier, - STATE(1501), 1, + STATE(1435), 1, sym_call, - STATE(1622), 1, + STATE(1481), 1, sym_primary_expression, - STATE(1816), 1, + STATE(1520), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2575), 1, sym_expression, - STATE(3164), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71160,18 +72055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1887), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71179,7 +72074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71196,51 +72091,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57656] = 26, - ACTIONS(507), 1, + [58264] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(688), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, sym_identifier, - STATE(1473), 1, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(1476), 1, + STATE(1531), 1, + sym_expression, + STATE(1549), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1753), 1, sym_selector_expression, - STATE(2304), 1, - sym_expression, - STATE(2442), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71249,18 +72144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71268,7 +72163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71285,51 +72180,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57771] = 26, - ACTIONS(401), 1, + [58379] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1243), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(431), 1, + sym_expression, + STATE(498), 1, sym_primary_expression, - STATE(1282), 1, + STATE(881), 1, + sym_call, + STATE(884), 1, sym_selector_expression, - STATE(2380), 1, - sym_expression, - STATE(2435), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(940), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71338,18 +72233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71357,7 +72252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71374,51 +72269,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57886] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, + [58494] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1438), 26, sym_string_start, - ACTIONS(1223), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1235), 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(1337), 1, + ACTIONS(1436), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [58565] = 26, + ACTIONS(9), 1, sym_identifier, - STATE(822), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(856), 1, + STATE(1495), 1, sym_call, - STATE(881), 1, + STATE(1642), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2561), 1, + STATE(2350), 1, sym_expression, - STATE(3037), 1, + STATE(2552), 1, + sym_dotted_name, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + sym_line_continuation, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71427,18 +72389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71446,7 +72408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71463,51 +72425,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58001] = 26, - ACTIONS(766), 1, + [58680] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(1062), 1, sym_identifier, - ACTIONS(1163), 1, + ACTIONS(1070), 1, anon_sym_not, - STATE(1636), 1, - sym_call, - STATE(1647), 1, + STATE(1432), 1, sym_primary_expression, - STATE(1709), 1, + STATE(1435), 1, + sym_call, + STATE(1478), 1, sym_expression, - STATE(1846), 1, + STATE(1579), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2455), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71516,18 +72478,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1759), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71535,7 +72497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71552,51 +72514,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58116] = 26, - ACTIONS(401), 1, + [58795] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(914), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1257), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(568), 1, sym_primary_expression, - STATE(1282), 1, + STATE(722), 1, + sym_expression, + STATE(879), 1, sym_selector_expression, - STATE(2435), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(2493), 1, - sym_expression, - STATE(3176), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71605,18 +72567,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71624,7 +72586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71641,51 +72603,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58231] = 26, - ACTIONS(912), 1, + [58910] = 4, + STATE(848), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1442), 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(1440), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(918), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(940), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1237), 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, + [58981] = 26, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(1355), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - STATE(631), 1, - sym_primary_expression, - STATE(857), 1, + STATE(1435), 1, sym_call, - STATE(885), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(2310), 1, sym_expression, - STATE(3095), 1, + STATE(2464), 1, + sym_dotted_name, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71694,18 +72723,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71713,7 +72742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71730,51 +72759,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58346] = 26, - ACTIONS(912), 1, + [59096] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(1355), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - STATE(636), 1, - sym_primary_expression, - STATE(857), 1, + STATE(1435), 1, sym_call, - STATE(885), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(2299), 1, sym_expression, - STATE(3095), 1, + STATE(2464), 1, + sym_dotted_name, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71783,18 +72812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71802,7 +72831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71819,51 +72848,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58461] = 26, - ACTIONS(912), 1, + [59211] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(1355), 1, - sym_identifier, - STATE(642), 1, + STATE(498), 1, sym_primary_expression, - STATE(857), 1, + STATE(742), 1, + sym_expression, + STATE(881), 1, sym_call, - STATE(885), 1, + STATE(884), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2504), 1, sym_dotted_name, - STATE(2563), 1, - sym_expression, - STATE(3095), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + STATE(940), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71872,18 +72901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71891,7 +72920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71908,51 +72937,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58576] = 26, - ACTIONS(766), 1, + [59326] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + ACTIONS(1106), 1, + sym_string_start, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1163), 1, - anon_sym_not, - STATE(1636), 1, - sym_call, - STATE(1647), 1, - sym_primary_expression, - STATE(1765), 1, + STATE(472), 1, sym_expression, - STATE(1846), 1, + STATE(498), 1, + sym_primary_expression, + STATE(881), 1, + sym_call, + STATE(884), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2504), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -71961,18 +72990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71980,7 +73009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71997,51 +73026,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58691] = 26, - ACTIONS(766), 1, + [59441] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1163), 1, - anon_sym_not, - STATE(1636), 1, - sym_call, - STATE(1647), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1714), 1, - sym_expression, - STATE(1846), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2515), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72050,18 +73079,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72069,7 +73098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72086,51 +73115,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58806] = 26, - ACTIONS(912), 1, + [59556] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1446), 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(1444), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(918), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59627] = 26, + ACTIONS(904), 1, + anon_sym_DOT, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(1355), 1, - sym_identifier, - STATE(643), 1, + STATE(704), 1, sym_primary_expression, - STATE(857), 1, + STATE(722), 1, + sym_expression, + STATE(905), 1, sym_call, - STATE(885), 1, + STATE(907), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2517), 1, sym_dotted_name, - STATE(2563), 1, - sym_expression, - STATE(3095), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72139,18 +73235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72158,7 +73254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72175,51 +73271,187 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58921] = 26, - ACTIONS(912), 1, + [59742] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1446), 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(1444), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(918), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(932), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59813] = 6, + ACTIONS(1301), 1, + anon_sym_and, + ACTIONS(1303), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1333), 25, sym_string_start, - ACTIONS(940), 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(1331), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1237), 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, + [59888] = 26, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(1355), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1546), 1, sym_identifier, - STATE(644), 1, + ACTIONS(1577), 1, + anon_sym_not, + STATE(1428), 1, sym_primary_expression, - STATE(857), 1, + STATE(1435), 1, sym_call, - STATE(885), 1, + STATE(1520), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2563), 1, + STATE(2575), 1, sym_expression, - STATE(3095), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + STATE(1732), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72228,18 +73460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72247,7 +73479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72264,51 +73496,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59036] = 26, - ACTIONS(766), 1, + [60003] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1163), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1636), 1, - sym_call, - STATE(1647), 1, + ACTIONS(1546), 1, + sym_identifier, + STATE(1428), 1, sym_primary_expression, - STATE(1652), 1, - sym_expression, - STATE(1846), 1, + STATE(1435), 1, + sym_call, + STATE(1520), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2575), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72317,18 +73549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72336,7 +73568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72353,51 +73585,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59151] = 26, - ACTIONS(912), 1, + [60118] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(918), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(932), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(1355), 1, - sym_identifier, - STATE(651), 1, + STATE(704), 1, sym_primary_expression, - STATE(857), 1, + STATE(905), 1, sym_call, - STATE(885), 1, + STATE(907), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(1169), 1, sym_expression, - STATE(3095), 1, + STATE(2517), 1, + sym_dotted_name, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72406,18 +73638,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72425,7 +73657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72442,51 +73674,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59266] = 26, - ACTIONS(912), 1, + [60233] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1355), 1, - sym_identifier, - STATE(652), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(857), 1, + STATE(1495), 1, sym_call, - STATE(885), 1, + STATE(1642), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(2332), 1, sym_expression, - STATE(3095), 1, + STATE(2552), 1, + sym_dotted_name, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72495,18 +73727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72514,7 +73746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72531,51 +73763,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59381] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [60348] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1337), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(825), 1, - sym_primary_expression, - STATE(856), 1, + STATE(1227), 1, sym_call, - STATE(881), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2346), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2487), 1, sym_expression, - STATE(3037), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72584,18 +73816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72603,7 +73835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72620,14 +73852,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59496] = 4, + [60463] = 4, + STATE(848), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(655), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1353), 26, + ACTIONS(1337), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -72654,13 +73885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1351), 32, + ACTIONS(1335), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -72687,140 +73919,125 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [59567] = 26, - ACTIONS(912), 1, + [60534] = 11, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1093), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_not, ACTIONS(1237), 1, - anon_sym_LPAREN, - ACTIONS(1239), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LBRACE, - ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, - anon_sym_DQUOTE, - ACTIONS(1249), 1, - sym_float, - STATE(319), 1, - sym_primary_expression, - STATE(854), 1, - sym_expression, - STATE(857), 1, - sym_call, - STATE(879), 1, - sym_selector_expression, - STATE(2487), 1, - sym_dotted_name, - STATE(3095), 1, - sym_quant_op, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1295), 1, + anon_sym_PLUS, + ACTIONS(1552), 1, + anon_sym_or, + ACTIONS(1579), 1, + anon_sym_as, + ACTIONS(1581), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1245), 3, - anon_sym_PLUS, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1567), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1569), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(983), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(930), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(940), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [59682] = 26, - ACTIONS(766), 1, + [60619] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(774), 1, - anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(786), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1494), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1495), 1, + sym_call, + STATE(1642), 1, sym_selector_expression, - STATE(2453), 1, - sym_dotted_name, - STATE(2503), 1, + STATE(2449), 1, sym_expression, - STATE(3197), 1, + STATE(2552), 1, + sym_dotted_name, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72829,18 +74046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72848,7 +74065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72865,51 +74082,53 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59797] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, + [60734] = 27, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1237), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, - anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(53), 1, sym_float, - STATE(823), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(1583), 1, + sym_identifier, + STATE(1494), 1, sym_primary_expression, - STATE(857), 1, + STATE(1495), 1, sym_call, - STATE(898), 1, + STATE(1997), 1, sym_selector_expression, - STATE(1145), 1, - sym_expression, - STATE(2502), 1, + STATE(2058), 1, + sym_schema_instantiation, + STATE(2430), 1, sym_dotted_name, - STATE(3095), 1, + STATE(2460), 1, + sym_expression, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1001), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(1245), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -72918,18 +74137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, + STATE(1967), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72937,9 +74156,8 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1974), 15, sym_schema_expr, - sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72954,51 +74172,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59912] = 26, - ACTIONS(507), 1, + [60851] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1092), 1, + anon_sym_lambda, + ACTIONS(1106), 1, + sym_string_start, + ACTIONS(1146), 1, + sym_identifier, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1243), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(442), 1, + sym_expression, + STATE(498), 1, sym_primary_expression, - STATE(1572), 1, + STATE(881), 1, + sym_call, + STATE(884), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2504), 1, sym_dotted_name, - STATE(2540), 1, - sym_expression, - STATE(3179), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(940), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73007,18 +74225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73026,7 +74244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73043,51 +74261,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60027] = 26, - ACTIONS(441), 1, + [60966] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, - anon_sym_not, - STATE(1166), 1, - sym_expression, - STATE(1327), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1483), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2405), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73096,18 +74314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73115,7 +74333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73132,140 +74350,124 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60142] = 26, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, - anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(922), 1, - anon_sym_not, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1237), 1, + [61081] = 10, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, - anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, - anon_sym_DQUOTE, - ACTIONS(1249), 1, - sym_float, - STATE(823), 1, - sym_primary_expression, - STATE(857), 1, - sym_call, - STATE(898), 1, - sym_selector_expression, - STATE(1157), 1, - sym_expression, - STATE(2502), 1, - sym_dotted_name, - STATE(3095), 1, - sym_quant_op, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(914), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1001), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1245), 3, + ACTIONS(1544), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1542), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1002), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(930), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(918), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(940), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [60257] = 26, - ACTIONS(441), 1, + [61164] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1422), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2541), 1, + STATE(2477), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73274,18 +74476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73293,7 +74495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73310,51 +74512,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60372] = 26, - ACTIONS(441), 1, + [61279] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1173), 1, + ACTIONS(1305), 1, sym_identifier, - ACTIONS(1175), 1, - anon_sym_not, - STATE(1162), 1, - sym_expression, - STATE(1327), 1, + STATE(1225), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1483), 1, + STATE(1311), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2568), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73363,18 +74565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1336), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73382,7 +74584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73399,51 +74601,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60487] = 26, - ACTIONS(441), 1, + [61394] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, - anon_sym_not, - STATE(1327), 1, - sym_primary_expression, - STATE(1329), 1, - sym_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1483), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2280), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73452,18 +74654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73471,7 +74673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73488,51 +74690,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60602] = 26, - ACTIONS(441), 1, + [61509] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(1173), 1, + ACTIONS(1540), 1, sym_identifier, - ACTIONS(1175), 1, - anon_sym_not, - STATE(1327), 1, + STATE(839), 1, sym_primary_expression, - STATE(1342), 1, - sym_expression, - STATE(1369), 1, - sym_call, - STATE(1483), 1, + STATE(888), 1, sym_selector_expression, - STATE(2501), 1, + STATE(905), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2565), 1, + sym_expression, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73541,18 +74743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73560,7 +74762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73577,51 +74779,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60717] = 26, - ACTIONS(401), 1, + [61624] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(964), 1, + anon_sym_not, + STATE(1335), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1387), 1, + sym_expression, + STATE(1414), 1, + sym_call, + STATE(1475), 1, sym_selector_expression, - STATE(2314), 1, + STATE(2532), 1, sym_dotted_name, - STATE(2523), 1, - sym_expression, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73630,18 +74832,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73649,7 +74851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73666,51 +74868,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60832] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [61739] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(1337), 1, + ACTIONS(1540), 1, sym_identifier, - STATE(826), 1, + ACTIONS(1585), 1, + anon_sym_not, + STATE(839), 1, sym_primary_expression, - STATE(856), 1, - sym_call, - STATE(881), 1, + STATE(888), 1, sym_selector_expression, - STATE(2492), 1, + STATE(905), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2565), 1, sym_expression, - STATE(3037), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73719,18 +74921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73738,7 +74940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73755,51 +74957,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60947] = 26, - ACTIONS(441), 1, + [61854] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, - anon_sym_not, - STATE(1327), 1, - sym_primary_expression, - STATE(1366), 1, - sym_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1483), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2406), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73808,18 +75010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73827,7 +75029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73844,51 +75046,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61062] = 26, - ACTIONS(441), 1, + [61969] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1460), 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(1458), 32, + anon_sym_import, anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [62040] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(1173), 1, + ACTIONS(962), 1, sym_identifier, - ACTIONS(1175), 1, + ACTIONS(964), 1, anon_sym_not, - STATE(1327), 1, + STATE(1335), 1, sym_primary_expression, - STATE(1343), 1, - sym_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1483), 1, + STATE(1475), 1, sym_selector_expression, - STATE(2501), 1, + STATE(1856), 1, + sym_expression, + STATE(2532), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73897,18 +75166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73916,7 +75185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73933,51 +75202,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61177] = 26, - ACTIONS(441), 1, + [62155] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(1173), 1, - sym_identifier, - ACTIONS(1175), 1, - anon_sym_not, - STATE(1327), 1, + STATE(704), 1, sym_primary_expression, - STATE(1328), 1, + STATE(734), 1, sym_expression, - STATE(1369), 1, + STATE(905), 1, sym_call, - STATE(1483), 1, + STATE(907), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2517), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -73986,18 +75255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1560), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74005,7 +75274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74022,51 +75291,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61292] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [62270] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1223), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(1337), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1587), 1, sym_identifier, - STATE(827), 1, - sym_primary_expression, - STATE(856), 1, + STATE(1791), 1, sym_call, - STATE(881), 1, + STATE(1843), 1, + sym_primary_expression, + STATE(1937), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2570), 1, sym_expression, - STATE(3037), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + STATE(2002), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74075,18 +75344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74094,7 +75363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74111,51 +75380,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61407] = 26, - ACTIONS(507), 1, + [62385] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1425), 1, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1570), 1, + ACTIONS(1589), 1, anon_sym_not, - STATE(1455), 1, - sym_primary_expression, - STATE(1473), 1, + STATE(1791), 1, sym_call, - STATE(1492), 1, + STATE(1843), 1, + sym_primary_expression, + STATE(1937), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2570), 1, sym_expression, - STATE(3179), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74164,18 +75433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74183,7 +75452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74200,51 +75469,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61522] = 26, - ACTIONS(507), 1, + [62500] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1425), 1, - sym_identifier, - STATE(1455), 1, + STATE(704), 1, sym_primary_expression, - STATE(1473), 1, + STATE(905), 1, sym_call, - STATE(1492), 1, + STATE(907), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2557), 1, + STATE(1158), 1, sym_expression, - STATE(3179), 1, + STATE(2517), 1, + sym_dotted_name, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1759), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74253,18 +75522,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74272,7 +75541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74289,51 +75558,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61637] = 26, - ACTIONS(441), 1, + [62615] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(914), 1, + anon_sym_not, + ACTIONS(924), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, - sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1516), 1, + STATE(568), 1, sym_primary_expression, - STATE(1634), 1, + STATE(735), 1, + sym_expression, + STATE(879), 1, + sym_selector_expression, + STATE(905), 1, sym_call, - STATE(2492), 1, + STATE(2479), 1, sym_dotted_name, - STATE(2553), 1, - sym_expression, - STATE(3223), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74342,18 +75611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74361,7 +75630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74378,51 +75647,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61752] = 26, - ACTIONS(441), 1, + [62730] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1422), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2508), 1, + STATE(2476), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74431,18 +75700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74450,7 +75719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74467,51 +75736,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61867] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [62845] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(962), 1, sym_identifier, + ACTIONS(964), 1, + anon_sym_not, STATE(1176), 1, - sym_selector_expression, - STATE(1517), 1, + sym_expression, + STATE(1335), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1414), 1, sym_call, - STATE(2492), 1, + STATE(1475), 1, + sym_selector_expression, + STATE(2532), 1, sym_dotted_name, - STATE(2553), 1, - sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74520,18 +75789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74539,7 +75808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74556,51 +75825,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61982] = 26, - ACTIONS(766), 1, - anon_sym_DOT, + [62960] = 26, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, ACTIONS(786), 1, - anon_sym_DQUOTE, + anon_sym_not, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1447), 1, + ACTIONS(976), 1, sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1770), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2564), 1, + STATE(2462), 1, sym_expression, - STATE(3197), 1, + STATE(2529), 1, + sym_dotted_name, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74609,18 +75878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74628,7 +75897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74645,51 +75914,136 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62097] = 26, - ACTIONS(766), 1, + [63075] = 22, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1502), 1, + anon_sym_LPAREN, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, + anon_sym_QMARK_DOT, + ACTIONS(1520), 1, + anon_sym_PIPE, + ACTIONS(1522), 1, + anon_sym_AMP, + ACTIONS(1524), 1, + anon_sym_CARET, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1508), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1516), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1351), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1373), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1345), 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(1341), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [63182] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1447), 1, - sym_identifier, - ACTIONS(1572), 1, - anon_sym_not, - STATE(1636), 1, - sym_call, - STATE(1770), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2507), 1, sym_dotted_name, - STATE(2564), 1, + STATE(2519), 1, sym_expression, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74698,18 +76052,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74717,7 +76071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74734,51 +76088,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62212] = 26, - ACTIONS(441), 1, + [63297] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1518), 1, + STATE(1789), 1, sym_primary_expression, - STATE(1634), 1, + STATE(1791), 1, sym_call, - STATE(2492), 1, - sym_dotted_name, - STATE(2553), 1, + STATE(1889), 1, + sym_selector_expression, + STATE(2408), 1, sym_expression, - STATE(3223), 1, + STATE(2529), 1, + sym_dotted_name, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1331), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74787,18 +76141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74806,7 +76160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74823,51 +76177,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62327] = 26, - ACTIONS(401), 1, + [63412] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(794), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1789), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2399), 1, + STATE(2398), 1, sym_expression, - STATE(2435), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74876,18 +76230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74895,7 +76249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74912,51 +76266,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62442] = 26, - ACTIONS(401), 1, + [63527] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(794), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(996), 1, + sym_identifier, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1716), 1, + sym_expression, + STATE(1791), 1, + sym_call, + STATE(1885), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2500), 1, - sym_expression, - STATE(3176), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -74965,18 +76319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74984,7 +76338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75001,140 +76355,136 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62557] = 26, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, + [63642] = 22, + ACTIONS(1359), 1, anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, - anon_sym_DQUOTE, - ACTIONS(1301), 1, - sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, - sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2402), 1, - sym_expression, - STATE(2435), 1, - sym_dotted_name, - STATE(3176), 1, - sym_quant_op, + ACTIONS(1520), 1, + anon_sym_PIPE, + ACTIONS(1522), 1, + anon_sym_AMP, + ACTIONS(1524), 1, + anon_sym_CARET, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1508), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1516), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1518), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1351), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1373), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1381), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(27), 4, + sym_float, + ACTIONS(1379), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1375), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [62672] = 26, - ACTIONS(13), 1, + [63749] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1189), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1191), 1, - anon_sym_not, - STATE(1501), 1, + STATE(1435), 1, sym_call, - STATE(1513), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1520), 1, - sym_expression, - STATE(1798), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2464), 1, sym_dotted_name, - STATE(3164), 1, + STATE(2528), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75143,18 +76493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75162,7 +76512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75179,51 +76529,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62787] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [63864] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1223), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(1337), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1587), 1, sym_identifier, - STATE(828), 1, - sym_primary_expression, - STATE(856), 1, + STATE(1791), 1, sym_call, - STATE(881), 1, + STATE(1834), 1, + sym_primary_expression, + STATE(1937), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2561), 1, + STATE(2570), 1, sym_expression, - STATE(3037), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + STATE(2002), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75232,18 +76582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75251,7 +76601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75268,51 +76618,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62902] = 26, - ACTIONS(401), 1, + [63979] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(794), 1, sym_float, - STATE(1211), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1587), 1, + sym_identifier, + STATE(1791), 1, sym_call, - STATE(1213), 1, + STATE(1832), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1937), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2494), 1, + STATE(2570), 1, sym_expression, - STATE(3176), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(2002), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75321,18 +76671,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75340,7 +76690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75357,51 +76707,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63017] = 26, - ACTIONS(766), 1, - anon_sym_DOT, + [64094] = 26, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, - anon_sym_DQUOTE, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1587), 1, sym_identifier, - STATE(1636), 1, + STATE(1791), 1, sym_call, - STATE(1643), 1, + STATE(1828), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1937), 1, sym_selector_expression, - STATE(2413), 1, - sym_expression, - STATE(2453), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2570), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75410,18 +76760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75429,7 +76779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75446,51 +76796,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63132] = 26, - ACTIONS(766), 1, - anon_sym_DOT, + [64209] = 26, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, - anon_sym_DQUOTE, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1587), 1, sym_identifier, - STATE(1636), 1, + STATE(1791), 1, sym_call, - STATE(1643), 1, + STATE(1817), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1937), 1, sym_selector_expression, - STATE(2416), 1, - sym_expression, - STATE(2453), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2570), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75499,18 +76849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75518,7 +76868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75535,51 +76885,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63247] = 26, - ACTIONS(766), 1, - anon_sym_DOT, + [64324] = 26, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_DQUOTE, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1163), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1636), 1, + ACTIONS(1587), 1, + sym_identifier, + STATE(1791), 1, sym_call, - STATE(1647), 1, + STATE(1816), 1, sym_primary_expression, - STATE(1777), 1, - sym_expression, - STATE(1846), 1, + STATE(1937), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2570), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75588,18 +76938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75607,7 +76957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75624,51 +76974,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63362] = 26, - ACTIONS(441), 1, + [64439] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(794), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1587), 1, + sym_identifier, + STATE(1791), 1, sym_call, - STATE(1422), 1, + STATE(1810), 1, + sym_primary_expression, + STATE(1937), 1, sym_selector_expression, - STATE(2432), 1, - sym_expression, - STATE(2484), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2570), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75677,18 +77027,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75696,7 +77046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75713,51 +77063,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63477] = 26, - ACTIONS(401), 1, + [64554] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(794), 1, sym_float, - STATE(1211), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1587), 1, + sym_identifier, + STATE(1791), 1, sym_call, - STATE(1213), 1, + STATE(1809), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1937), 1, sym_selector_expression, - STATE(2358), 1, - sym_expression, - STATE(2435), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2570), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(2002), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75766,18 +77116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75785,7 +77135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75802,51 +77152,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63592] = 26, - ACTIONS(766), 1, + [64669] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1447), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1745), 1, + STATE(704), 1, sym_primary_expression, - STATE(1950), 1, + STATE(905), 1, + sym_call, + STATE(907), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2564), 1, + STATE(1156), 1, sym_expression, - STATE(3197), 1, + STATE(2517), 1, + sym_dotted_name, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75855,18 +77205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75874,7 +77224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75891,51 +77241,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63707] = 26, - ACTIONS(766), 1, + [64784] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1447), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1791), 1, + STATE(704), 1, sym_primary_expression, - STATE(1950), 1, + STATE(905), 1, + sym_call, + STATE(907), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2564), 1, + STATE(1157), 1, sym_expression, - STATE(3197), 1, + STATE(2517), 1, + sym_dotted_name, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -75944,18 +77294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75963,7 +77313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75980,51 +77330,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63822] = 26, - ACTIONS(766), 1, + [64899] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(774), 1, - anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1447), 1, + ACTIONS(1464), 1, sym_identifier, - STATE(1636), 1, + STATE(1495), 1, sym_call, - STATE(1805), 1, + STATE(1519), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1830), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2564), 1, + STATE(2579), 1, sym_expression, - STATE(3197), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76033,18 +77383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1916), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76052,7 +77402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76069,51 +77419,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63937] = 26, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + [65014] = 4, + STATE(848), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1385), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(790), 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(792), 1, - sym_string_start, - ACTIONS(940), 1, + ACTIONS(1383), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1447), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1819), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [65085] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + anon_sym_LBRACE, + ACTIONS(565), 1, + anon_sym_QMARK_DOT, + ACTIONS(569), 1, + anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + STATE(1354), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2507), 1, sym_dotted_name, - STATE(2564), 1, + STATE(2534), 1, sym_expression, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76122,18 +77539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76141,7 +77558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76158,51 +77575,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64052] = 26, - ACTIONS(766), 1, + [65200] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1447), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(1636), 1, + STATE(1227), 1, sym_call, - STATE(1820), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2374), 1, sym_dotted_name, - STATE(2564), 1, + STATE(2546), 1, sym_expression, - STATE(3197), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76211,18 +77628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76230,7 +77647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76247,51 +77664,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64167] = 26, - ACTIONS(766), 1, + [65315] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1447), 1, + ACTIONS(1418), 1, sym_identifier, - STATE(1636), 1, + STATE(1227), 1, sym_call, - STATE(1821), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2333), 1, sym_dotted_name, - STATE(2564), 1, + STATE(2545), 1, sym_expression, - STATE(3197), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76300,18 +77717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76319,7 +77736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76336,51 +77753,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64282] = 26, - ACTIONS(766), 1, + [65430] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1447), 1, - sym_identifier, - STATE(1636), 1, + STATE(1227), 1, sym_call, - STATE(1829), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2564), 1, + STATE(2435), 1, sym_expression, - STATE(3197), 1, + STATE(2454), 1, + sym_dotted_name, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76389,18 +77806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76408,7 +77825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76425,51 +77842,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64397] = 26, - ACTIONS(441), 1, + [65545] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1422), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2473), 1, - sym_expression, - STATE(2484), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2540), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76478,18 +77895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76497,7 +77914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76514,51 +77931,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64512] = 26, - ACTIONS(507), 1, + [65660] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, + STATE(1227), 1, sym_call, - STATE(1476), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2439), 1, + STATE(2437), 1, sym_expression, - STATE(2442), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3179), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76567,18 +77984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76586,7 +78003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76603,51 +78020,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64627] = 26, - ACTIONS(441), 1, + [65775] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(914), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1257), 1, sym_float, - STATE(1364), 1, + STATE(342), 1, + sym_expression, + STATE(568), 1, sym_primary_expression, - STATE(1369), 1, - sym_call, - STATE(1422), 1, + STATE(879), 1, sym_selector_expression, - STATE(2440), 1, - sym_expression, - STATE(2484), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76656,18 +78073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76675,7 +78092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76692,118 +78109,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64742] = 4, - ACTIONS(1574), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1341), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1343), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [64813] = 26, - ACTIONS(13), 1, + [65890] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1189), 1, - sym_identifier, - ACTIONS(1191), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1501), 1, + ACTIONS(1546), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1513), 1, + STATE(1485), 1, sym_primary_expression, - STATE(1534), 1, - sym_expression, - STATE(1798), 1, + STATE(1520), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3164), 1, + STATE(2575), 1, + sym_expression, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76812,18 +78162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1805), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76831,7 +78181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76848,51 +78198,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64928] = 26, - ACTIONS(13), 1, + [66005] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(525), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(547), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1189), 1, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1191), 1, - anon_sym_not, - STATE(1491), 1, - sym_expression, - STATE(1501), 1, + STATE(1435), 1, sym_call, - STATE(1513), 1, + STATE(1488), 1, sym_primary_expression, - STATE(1798), 1, + STATE(1601), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2319), 1, + sym_expression, + STATE(2464), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76901,18 +78251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76920,7 +78270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76937,51 +78287,118 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65043] = 26, - ACTIONS(401), 1, + [66120] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(821), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1536), 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(1534), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [66191] = 26, + ACTIONS(409), 1, + anon_sym_DOT, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2324), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2452), 1, + STATE(2539), 1, sym_expression, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -76990,18 +78407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77009,7 +78426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77026,51 +78443,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65158] = 26, - ACTIONS(944), 1, - sym_identifier, - ACTIONS(946), 1, + [66306] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(952), 1, - anon_sym_lambda, - ACTIONS(956), 1, - anon_sym_not, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1303), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1305), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1307), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1309), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1313), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1315), 1, + ACTIONS(794), 1, sym_float, - STATE(1614), 1, - sym_call, - STATE(1615), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1789), 1, sym_primary_expression, - STATE(1632), 1, + STATE(1791), 1, + sym_call, + STATE(1889), 1, sym_selector_expression, - STATE(2338), 1, - sym_expression, - STATE(2531), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3132), 1, + STATE(2530), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1963), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1964), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1311), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77079,18 +78496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1941), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(964), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1959), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77098,7 +78515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1958), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77115,51 +78532,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65273] = 26, - ACTIONS(401), 1, + [66421] = 26, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1092), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(1287), 1, + ACTIONS(1146), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1148), 1, + anon_sym_not, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1243), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(326), 1, + sym_expression, + STATE(498), 1, sym_primary_expression, - STATE(1282), 1, + STATE(881), 1, + sym_call, + STATE(884), 1, sym_selector_expression, - STATE(2331), 1, + STATE(2504), 1, sym_dotted_name, - STATE(2455), 1, - sym_expression, - STATE(3176), 1, + STATE(3024), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(910), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(940), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1239), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77168,18 +78585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(975), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1104), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(939), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77187,7 +78604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(937), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77204,51 +78621,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65388] = 26, - ACTIONS(912), 1, + [66536] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(1237), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(545), 1, sym_float, - ACTIONS(1355), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, sym_identifier, - ACTIONS(1576), 1, - anon_sym_not, - STATE(673), 1, - sym_primary_expression, - STATE(857), 1, + STATE(1435), 1, sym_call, - STATE(885), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2464), 1, sym_dotted_name, - STATE(2563), 1, + STATE(2512), 1, sym_expression, - STATE(3095), 1, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1737), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77257,18 +78674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77276,7 +78693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77293,51 +78710,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65503] = 26, - ACTIONS(401), 1, + [66651] = 26, + ACTIONS(1012), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1018), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1120), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1122), 1, + anon_sym_not, + ACTIONS(1309), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1321), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2419), 1, + STATE(1031), 1, sym_expression, - STATE(2435), 1, + STATE(1070), 1, + sym_selector_expression, + STATE(1082), 1, + sym_call, + STATE(2493), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3063), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1123), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1125), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1317), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77346,18 +78763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1107), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1030), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1121), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77365,7 +78782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1088), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77382,51 +78799,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65618] = 26, - ACTIONS(401), 1, + [66766] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1257), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(1540), 1, + sym_identifier, + STATE(819), 1, sym_primary_expression, - STATE(1282), 1, + STATE(888), 1, sym_selector_expression, - STATE(2370), 1, - sym_expression, - STATE(2435), 1, + STATE(905), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3176), 1, + STATE(2565), 1, + sym_expression, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77435,18 +78852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77454,7 +78871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77471,51 +78888,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65733] = 26, - ACTIONS(441), 1, + [66881] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(794), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1587), 1, + sym_identifier, + STATE(1791), 1, sym_call, - STATE(1422), 1, + STATE(1794), 1, + sym_primary_expression, + STATE(1937), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2534), 1, + STATE(2570), 1, sym_expression, - STATE(3223), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77524,18 +78941,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77543,7 +78960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77560,51 +78977,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65848] = 26, - ACTIONS(13), 1, + [66996] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(778), 1, + anon_sym_LBRACK, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1189), 1, - sym_identifier, - ACTIONS(1191), 1, + ACTIONS(930), 1, anon_sym_not, - STATE(1501), 1, + ACTIONS(1587), 1, + sym_identifier, + STATE(1791), 1, sym_call, - STATE(1513), 1, + STATE(1793), 1, sym_primary_expression, - STATE(1559), 1, - sym_expression, - STATE(1798), 1, + STATE(1937), 1, sym_selector_expression, - STATE(2490), 1, + STATE(2537), 1, sym_dotted_name, - STATE(3164), 1, + STATE(2574), 1, + sym_expression, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(1940), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77613,18 +79030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77632,7 +79049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77649,51 +79066,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65963] = 26, - ACTIONS(401), 1, + [67111] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2435), 1, - sym_dotted_name, - STATE(2459), 1, + STATE(2400), 1, sym_expression, - STATE(3176), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77702,18 +79119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77721,7 +79138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77738,51 +79155,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66078] = 26, - ACTIONS(401), 1, + [67226] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1271), 1, sym_float, - STATE(1211), 1, + STATE(1227), 1, sym_call, - STATE(1213), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2326), 1, sym_expression, - STATE(2435), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77791,18 +79208,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77810,7 +79227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77827,51 +79244,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66193] = 26, - ACTIONS(401), 1, + [67341] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2507), 1, sym_dotted_name, - STATE(2474), 1, + STATE(2510), 1, sym_expression, - STATE(3176), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77880,18 +79297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77899,7 +79316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77916,51 +79333,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66308] = 26, - ACTIONS(766), 1, + [67456] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(704), 1, sym_primary_expression, - STATE(1953), 1, + STATE(905), 1, + sym_call, + STATE(907), 1, sym_selector_expression, - STATE(2453), 1, - sym_dotted_name, - STATE(2517), 1, + STATE(1160), 1, sym_expression, - STATE(3197), 1, + STATE(2517), 1, + sym_dotted_name, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -77969,18 +79386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77988,7 +79405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78005,51 +79422,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66423] = 26, - ACTIONS(507), 1, + [67571] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1572), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2442), 1, - sym_dotted_name, - STATE(2536), 1, + STATE(2501), 1, sym_expression, - STATE(3179), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(529), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -78058,18 +79475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78077,7 +79494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1763), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78094,51 +79511,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66538] = 26, - ACTIONS(968), 1, - sym_identifier, - ACTIONS(970), 1, + [67686] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(976), 1, - anon_sym_lambda, - ACTIONS(980), 1, - anon_sym_not, - ACTIONS(990), 1, - sym_string_start, - ACTIONS(1317), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(794), 1, sym_float, - STATE(1027), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1789), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1791), 1, sym_call, - STATE(1070), 1, + STATE(1889), 1, sym_selector_expression, - STATE(1989), 1, + STATE(2393), 1, sym_expression, - STATE(2504), 1, + STATE(2529), 1, sym_dotted_name, - STATE(3064), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -78147,18 +79564,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78166,7 +79583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78183,51 +79600,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66653] = 26, - ACTIONS(766), 1, - anon_sym_DOT, + [67801] = 26, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_DQUOTE, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(940), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1447), 1, + ACTIONS(1587), 1, sym_identifier, - STATE(1636), 1, + STATE(1791), 1, sym_call, - STATE(1825), 1, + STATE(1803), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1937), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2537), 1, sym_dotted_name, - STATE(2564), 1, + STATE(2570), 1, sym_expression, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -78236,18 +79653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78255,7 +79672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78272,51 +79689,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66768] = 26, - ACTIONS(766), 1, + [67916] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1447), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1823), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1950), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2507), 1, sym_dotted_name, - STATE(2556), 1, + STATE(2511), 1, sym_expression, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -78325,18 +79742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2029), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78344,7 +79761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78361,51 +79778,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66883] = 26, - ACTIONS(441), 1, + [68031] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + ACTIONS(1418), 1, + sym_identifier, + STATE(1227), 1, sym_call, - STATE(1422), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2365), 1, sym_dotted_name, - STATE(2542), 1, + STATE(2483), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -78414,18 +79831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78433,7 +79850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78450,51 +79867,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66998] = 26, - ACTIONS(441), 1, + [68146] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1257), 1, sym_float, - STATE(1364), 1, + ACTIONS(1540), 1, + sym_identifier, + STATE(818), 1, sym_primary_expression, - STATE(1369), 1, - sym_call, - STATE(1422), 1, + STATE(888), 1, sym_selector_expression, - STATE(2484), 1, + STATE(905), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2519), 1, + STATE(2565), 1, sym_expression, - STATE(3223), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -78503,18 +79920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78522,7 +79939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78539,75 +79956,60 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67113] = 22, - ACTIONS(1371), 1, + [68261] = 13, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, + ACTIONS(1510), 1, anon_sym_STAR_STAR, - ACTIONS(1377), 1, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, + ACTIONS(1532), 1, anon_sym_QMARK_LBRACK, - ACTIONS(1413), 1, - anon_sym_PIPE, - ACTIONS(1415), 1, - anon_sym_AMP, - ACTIONS(1417), 1, - anon_sym_CARET, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - STATE(906), 1, + STATE(941), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 2, + ACTIONS(1508), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1409), 2, + ACTIONS(1516), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, + ACTIONS(1518), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1253), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1560), 8, - sym__dedent, + ACTIONS(1398), 17, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(1562), 20, + ACTIONS(1396), 30, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -78618,235 +80020,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [67220] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [68350] = 14, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(688), 1, - sym_identifier, - STATE(1473), 1, - sym_call, - STATE(1476), 1, - sym_primary_expression, - STATE(1572), 1, - sym_selector_expression, - STATE(2389), 1, - sym_expression, - STATE(2442), 1, - sym_dotted_name, - STATE(3179), 1, - sym_quant_op, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1758), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1759), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(529), 3, + ACTIONS(1508), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1516), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1518), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1757), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1761), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1763), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [67335] = 26, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + [68441] = 15, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, - anon_sym_DQUOTE, - ACTIONS(1301), 1, - sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, - sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2340), 1, - sym_dotted_name, - STATE(2537), 1, - sym_expression, - STATE(3176), 1, - sym_quant_op, + ACTIONS(1524), 1, + anon_sym_CARET, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1508), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1516), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1518), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1375), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [67450] = 26, - ACTIONS(13), 1, + [68534] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1189), 1, + ACTIONS(1110), 1, sym_identifier, - ACTIONS(1191), 1, + ACTIONS(1112), 1, anon_sym_not, - STATE(1501), 1, - sym_call, - STATE(1513), 1, + STATE(1544), 1, sym_primary_expression, - STATE(1588), 1, + STATE(1558), 1, sym_expression, - STATE(1798), 1, + STATE(1660), 1, sym_selector_expression, - STATE(2490), 1, + STATE(1661), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3164), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1400), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -78855,18 +80240,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, + STATE(1924), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78874,7 +80259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1960), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78891,229 +80276,205 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67565] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [68649] = 16, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1189), 1, - sym_identifier, - ACTIONS(1191), 1, - anon_sym_not, - STATE(1501), 1, - sym_call, - STATE(1513), 1, - sym_primary_expression, - STATE(1558), 1, - sym_expression, - STATE(1798), 1, - sym_selector_expression, - STATE(2490), 1, - sym_dotted_name, - STATE(3164), 1, - sym_quant_op, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, + anon_sym_QMARK_DOT, + ACTIONS(1522), 1, + anon_sym_AMP, + ACTIONS(1524), 1, + anon_sym_CARET, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(1508), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1516), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1518), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1526), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1960), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [67680] = 26, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1213), 1, - sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1223), 1, + [68744] = 12, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, - anon_sym_DQUOTE, - ACTIONS(1235), 1, - sym_float, - STATE(424), 1, - sym_primary_expression, - STATE(856), 1, - sym_call, - STATE(876), 1, - sym_selector_expression, - STATE(1158), 1, - sym_expression, - STATE(2478), 1, - sym_dotted_name, - STATE(3037), 1, - sym_quant_op, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1231), 3, + ACTIONS(1508), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1518), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1012), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(975), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [67795] = 26, - ACTIONS(401), 1, + [68831] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1257), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + ACTIONS(1540), 1, + sym_identifier, + STATE(816), 1, sym_primary_expression, - STATE(1282), 1, + STATE(888), 1, sym_selector_expression, - STATE(2344), 1, + STATE(905), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(2535), 1, + STATE(2565), 1, sym_expression, - STATE(3176), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -79122,18 +80483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79141,7 +80502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79158,229 +80519,197 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67910] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [68946] = 10, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1189), 1, - sym_identifier, - ACTIONS(1191), 1, - anon_sym_not, - STATE(1501), 1, - sym_call, - STATE(1503), 1, - sym_expression, - STATE(1513), 1, - sym_primary_expression, - STATE(1798), 1, - sym_selector_expression, - STATE(2490), 1, - sym_dotted_name, - STATE(3164), 1, - sym_quant_op, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, + anon_sym_QMARK_DOT, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1913), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1940), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(1398), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1852), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1932), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1960), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [68025] = 26, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + [69029] = 10, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1510), 1, + anon_sym_STAR_STAR, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, - anon_sym_DQUOTE, - ACTIONS(1301), 1, - sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, - sym_primary_expression, - STATE(1282), 1, - sym_selector_expression, - STATE(2377), 1, - sym_expression, - STATE(2435), 1, - sym_dotted_name, - STATE(3176), 1, - sym_quant_op, + ACTIONS(1532), 1, + anon_sym_QMARK_LBRACK, + STATE(941), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1398), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1396), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1375), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [68140] = 26, - ACTIONS(401), 1, + [69112] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(571), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2435), 1, - sym_dotted_name, - STATE(2533), 1, + STATE(2495), 1, sym_expression, - STATE(3176), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1272), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -79389,18 +80718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79408,7 +80737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79425,51 +80754,120 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68255] = 26, - ACTIONS(968), 1, + [69227] = 6, + ACTIONS(1591), 1, + anon_sym_DOT, + ACTIONS(1594), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(821), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1473), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1468), 31, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(970), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [69302] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(976), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(980), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(990), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1317), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1321), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1323), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1327), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1329), 1, + ACTIONS(1271), 1, sym_float, - STATE(1027), 1, - sym_primary_expression, - STATE(1063), 1, + ACTIONS(1418), 1, + sym_identifier, + STATE(1227), 1, sym_call, - STATE(1070), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(1974), 1, - sym_expression, - STATE(2504), 1, + STATE(2371), 1, sym_dotted_name, - STATE(3064), 1, + STATE(2478), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1100), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1108), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1325), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -79478,18 +80876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(988), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1140), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79497,7 +80895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1139), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79514,51 +80912,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68370] = 26, - ACTIONS(401), 1, + [69417] = 26, + ACTIONS(902), 1, + sym_identifier, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(914), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1257), 1, sym_float, - STATE(1211), 1, - sym_call, - STATE(1213), 1, + STATE(329), 1, + sym_expression, + STATE(568), 1, sym_primary_expression, - STATE(1282), 1, + STATE(879), 1, sym_selector_expression, - STATE(2368), 1, - sym_expression, - STATE(2435), 1, + STATE(905), 1, + sym_call, + STATE(2479), 1, sym_dotted_name, - STATE(3176), 1, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, - sym_binary_operator, - sym_subscript, - STATE(1379), 2, + STATE(920), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -79567,18 +80965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(932), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79586,7 +80984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79603,51 +81001,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68485] = 26, - ACTIONS(912), 1, + [69532] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(918), 1, - anon_sym_lambda, - ACTIONS(932), 1, - sym_string_start, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1237), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1239), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1241), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(1243), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(794), 1, sym_float, - ACTIONS(1355), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, sym_identifier, - STATE(673), 1, + STATE(1789), 1, sym_primary_expression, - STATE(857), 1, + STATE(1791), 1, sym_call, - STATE(885), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2492), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(2446), 1, sym_expression, - STATE(3095), 1, + STATE(2529), 1, + sym_dotted_name, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1001), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(2003), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1245), 3, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -79656,18 +81054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(952), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(930), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79675,7 +81073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(940), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79692,51 +81090,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68600] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [69647] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(1497), 1, + ACTIONS(962), 1, sym_identifier, - STATE(1176), 1, - sym_selector_expression, - STATE(1369), 1, - sym_call, - STATE(1396), 1, + ACTIONS(964), 1, + anon_sym_not, + STATE(1168), 1, + sym_expression, + STATE(1335), 1, sym_primary_expression, - STATE(2492), 1, + STATE(1414), 1, + sym_call, + STATE(1475), 1, + sym_selector_expression, + STATE(2532), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -79745,18 +81143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1227), 4, + STATE(1599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79764,7 +81162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79781,51 +81179,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68715] = 26, - ACTIONS(441), 1, + [69762] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1422), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2280), 1, + STATE(2384), 1, sym_expression, - STATE(2484), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -79834,18 +81232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79853,7 +81251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79870,51 +81268,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68830] = 26, - ACTIONS(401), 1, + [69877] = 26, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(958), 1, sym_string_start, - ACTIONS(894), 1, + ACTIONS(1042), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1044), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1291), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1299), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1301), 1, + ACTIONS(1287), 1, sym_float, - STATE(1211), 1, + STATE(1559), 1, + sym_expression, + STATE(1561), 1, sym_call, - STATE(1213), 1, + STATE(1573), 1, sym_primary_expression, - STATE(1282), 1, + STATE(1801), 1, sym_selector_expression, - STATE(2435), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2530), 1, - sym_expression, - STATE(3176), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1378), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - STATE(1379), 2, + STATE(1908), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1297), 3, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -79923,18 +81321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1381), 4, + STATE(1897), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79942,7 +81340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1375), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79959,262 +81357,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68945] = 6, - ACTIONS(1427), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1387), 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(1389), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [69020] = 8, - ACTIONS(1387), 1, - anon_sym_QMARK_DOT, - ACTIONS(1427), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + [69992] = 26, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1580), 24, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(19), 1, 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(1578), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, + ACTIONS(23), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [69099] = 8, - ACTIONS(1427), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1387), 12, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(25), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(43), 1, anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(53), 1, sym_float, - ACTIONS(1580), 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(1389), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [69178] = 26, - ACTIONS(441), 1, - anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(1422), 1, + STATE(1496), 1, + sym_expression, + STATE(1549), 1, + sym_primary_expression, + STATE(1753), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2463), 1, sym_dotted_name, - STATE(2522), 1, - sym_expression, - STATE(3223), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1253), 2, + STATE(1970), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -80223,18 +81410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80242,7 +81429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80259,51 +81446,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69293] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [70107] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1223), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, - anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1337), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, sym_identifier, - STATE(836), 1, - sym_primary_expression, - STATE(856), 1, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, sym_call, - STATE(881), 1, + STATE(1549), 1, + sym_primary_expression, + STATE(1600), 1, + sym_expression, + STATE(1753), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2463), 1, sym_dotted_name, - STATE(2561), 1, - sym_expression, - STATE(3037), 1, + STATE(3186), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, - sym_binary_operator, - sym_subscript, - STATE(1226), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -80312,18 +81499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1973), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80331,7 +81518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1974), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80348,51 +81535,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69408] = 26, - ACTIONS(766), 1, + [70222] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(419), 1, + anon_sym_lambda, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, + STATE(1227), 1, sym_call, - STATE(1643), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1953), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2373), 1, + STATE(2403), 1, sym_expression, - STATE(2453), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -80401,18 +81588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80420,7 +81607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80437,51 +81624,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69523] = 26, - ACTIONS(940), 1, - anon_sym_not, - ACTIONS(994), 1, + [70337] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(1134), 1, + sym_identifier, + ACTIONS(1136), 1, + anon_sym_not, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1337), 1, - sym_identifier, - STATE(837), 1, + STATE(1182), 1, sym_primary_expression, - STATE(856), 1, + STATE(1193), 1, + sym_expression, + STATE(1227), 1, sym_call, - STATE(881), 1, + STATE(1315), 1, sym_selector_expression, - STATE(2492), 1, + STATE(2452), 1, sym_dotted_name, - STATE(2550), 1, - sym_expression, - STATE(3037), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(957), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - STATE(1226), 2, + STATE(1359), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1231), 3, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -80490,18 +81677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(960), 4, + STATE(1400), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80509,7 +81696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80526,18 +81713,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69638] = 6, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(1489), 1, - anon_sym_and, + [70452] = 6, + ACTIONS(1597), 1, + anon_sym_DOT, + ACTIONS(1600), 1, + anon_sym_QMARK_DOT, + STATE(832), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1387), 25, + ACTIONS(1483), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -80546,7 +81732,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, anon_sym_PERCENT, @@ -80563,13 +81749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1389), 31, + ACTIONS(1478), 32, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -80584,6 +81770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -80595,51 +81782,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [69713] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [70527] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2477), 1, + STATE(2490), 1, sym_expression, - STATE(2484), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -80648,18 +81835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80667,7 +81854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80684,101 +81871,113 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69828] = 8, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(1387), 1, - anon_sym_QMARK_DOT, - ACTIONS(1489), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + [70642] = 26, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1580), 24, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(19), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_not, + STATE(1495), 1, + sym_call, + STATE(1549), 1, + sym_primary_expression, + STATE(1571), 1, + sym_expression, + STATE(1753), 1, + sym_selector_expression, + STATE(2463), 1, + sym_dotted_name, + STATE(3186), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1969), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1970), 2, + sym_binary_operator, + sym_subscript, + 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(1578), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1956), 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, - [69907] = 10, - ACTIONS(1255), 1, - anon_sym_LPAREN, - ACTIONS(1257), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_STAR_STAR, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + STATE(1973), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1974), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [70757] = 5, + ACTIONS(1603), 1, + anon_sym_EQ, + STATE(848), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1369), 21, + ACTIONS(1490), 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, @@ -80794,8 +81993,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(1367), 32, + ACTIONS(1488), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -80828,277 +82028,329 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [69990] = 10, - ACTIONS(1371), 1, + [70830] = 26, + ACTIONS(515), 1, + anon_sym_DOT, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(539), 1, + anon_sym_DQUOTE, + ACTIONS(545), 1, + sym_float, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(1062), 1, + sym_identifier, + ACTIONS(1070), 1, + anon_sym_not, + STATE(1432), 1, + sym_primary_expression, + STATE(1435), 1, + sym_call, + STATE(1491), 1, + sym_expression, + STATE(1579), 1, + sym_selector_expression, + STATE(2455), 1, + sym_dotted_name, + STATE(3198), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 21, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(1732), 2, + sym_binary_operator, + sym_subscript, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 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(1544), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1759), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(543), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [70073] = 10, - ACTIONS(1371), 1, + STATE(1743), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1747), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [70945] = 26, + ACTIONS(904), 1, + anon_sym_DOT, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1257), 1, + sym_float, + ACTIONS(1540), 1, + sym_identifier, + STATE(765), 1, + sym_primary_expression, + STATE(888), 1, + sym_selector_expression, + STATE(905), 1, + sym_call, + STATE(2537), 1, + sym_dotted_name, + STATE(2581), 1, + sym_expression, + STATE(3096), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 21, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 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(1544), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(938), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(922), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [70156] = 12, - ACTIONS(1371), 1, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(934), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71060] = 26, + ACTIONS(904), 1, + anon_sym_DOT, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1257), 1, + sym_float, + ACTIONS(1540), 1, + sym_identifier, + STATE(770), 1, + sym_primary_expression, + STATE(888), 1, + sym_selector_expression, + STATE(905), 1, + sym_call, + STATE(2537), 1, + sym_dotted_name, + STATE(2565), 1, + sym_expression, + STATE(3096), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1411), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 19, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 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(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(938), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(922), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [70243] = 21, - ACTIONS(1255), 1, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(934), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71175] = 22, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1502), 1, anon_sym_LPAREN, - ACTIONS(1257), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1510), 1, anon_sym_STAR_STAR, - ACTIONS(1265), 1, + ACTIONS(1512), 1, anon_sym_QMARK_DOT, - ACTIONS(1267), 1, - anon_sym_not, - ACTIONS(1273), 1, + ACTIONS(1520), 1, anon_sym_PIPE, - ACTIONS(1275), 1, + ACTIONS(1522), 1, anon_sym_AMP, - ACTIONS(1277), 1, + ACTIONS(1524), 1, anon_sym_CARET, - ACTIONS(1283), 1, - anon_sym_is, - ACTIONS(1285), 1, + ACTIONS(1532), 1, anon_sym_QMARK_LBRACK, - STATE(915), 1, + STATE(941), 1, sym_argument_list, - STATE(1104), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 2, + ACTIONS(1508), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1269), 2, + ACTIONS(1516), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1271), 2, + ACTIONS(1518), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1279), 2, + ACTIONS(1526), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1259), 3, + ACTIONS(1351), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1281), 4, + ACTIONS(1373), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1251), 8, + ACTIONS(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1406), 8, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -81107,12 +82359,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(1253), 25, + ACTIONS(1404), 20, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -81125,59 +82374,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [70348] = 26, - ACTIONS(441), 1, + [71282] = 26, + ACTIONS(515), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(517), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(525), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(533), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(535), 1, + anon_sym_not, + ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(545), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + ACTIONS(547), 1, + sym_string_start, + ACTIONS(692), 1, + sym_identifier, + STATE(1435), 1, sym_call, - STATE(1422), 1, + STATE(1488), 1, + sym_primary_expression, + STATE(1601), 1, sym_selector_expression, - STATE(2484), 1, - sym_dotted_name, - STATE(2516), 1, + STATE(2385), 1, sym_expression, - STATE(3223), 1, + STATE(2464), 1, + sym_dotted_name, + STATE(3198), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1732), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1737), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(537), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -81186,18 +82433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1735), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(543), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1743), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81205,7 +82452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1747), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81222,361 +82469,318 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70463] = 16, - ACTIONS(1371), 1, + [71397] = 26, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, - anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1415), 1, - anon_sym_AMP, - ACTIONS(1417), 1, - anon_sym_CARET, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1411), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(784), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, 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(794), 1, sym_float, - ACTIONS(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(996), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [70558] = 15, - ACTIONS(1371), 1, - anon_sym_LPAREN, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, - anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1417), 1, - anon_sym_CARET, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, + sym_primary_expression, + STATE(1784), 1, + sym_expression, + STATE(1791), 1, + sym_call, + STATE(1885), 1, + sym_selector_expression, + STATE(2468), 1, + sym_dotted_name, + STATE(3226), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1409), 2, + STATE(2002), 2, + sym_binary_operator, + sym_subscript, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 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(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1996), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(792), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [70651] = 14, - ACTIONS(1371), 1, + STATE(1998), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2008), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71512] = 26, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, + anon_sym_LBRACE, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1789), 1, + sym_primary_expression, + STATE(1791), 1, + sym_call, + STATE(1889), 1, + sym_selector_expression, + STATE(2419), 1, + sym_expression, + STATE(2529), 1, + sym_dotted_name, + STATE(3226), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1409), 2, + STATE(2002), 2, + sym_binary_operator, + sym_subscript, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 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(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2004), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(792), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [70742] = 13, - ACTIONS(1371), 1, + STATE(1998), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2008), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71627] = 26, + ACTIONS(770), 1, + anon_sym_DOT, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, + anon_sym_LBRACE, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, + sym_float, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1782), 1, + sym_expression, + STATE(1789), 1, + sym_primary_expression, + STATE(1791), 1, + sym_call, + STATE(1889), 1, + sym_selector_expression, + STATE(2529), 1, + sym_dotted_name, + STATE(3226), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1409), 2, + STATE(2002), 2, + sym_binary_operator, + sym_subscript, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 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(1544), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2004), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(792), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [70831] = 26, - ACTIONS(994), 1, + STATE(1998), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2008), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71742] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(910), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(924), 1, sym_string_start, - ACTIONS(1213), 1, - sym_identifier, - ACTIONS(1215), 1, + ACTIONS(930), 1, anon_sym_not, - ACTIONS(1223), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1257), 1, sym_float, - STATE(424), 1, + ACTIONS(1540), 1, + sym_identifier, + STATE(815), 1, sym_primary_expression, - STATE(856), 1, - sym_call, - STATE(876), 1, + STATE(888), 1, sym_selector_expression, - STATE(1151), 1, - sym_expression, - STATE(2478), 1, + STATE(905), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2565), 1, + sym_expression, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -81585,18 +82789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81604,7 +82808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81621,118 +82825,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70946] = 4, - ACTIONS(1582), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1536), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1538), 34, - anon_sym_import, + [71857] = 26, + ACTIONS(409), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(419), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(427), 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, - sym_integer, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(972), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [71017] = 26, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1163), 1, - anon_sym_not, - STATE(1636), 1, + STATE(1227), 1, sym_call, - STATE(1647), 1, + STATE(1229), 1, sym_primary_expression, - STATE(1804), 1, - sym_expression, - STATE(1846), 1, + STATE(1236), 1, sym_selector_expression, - STATE(2525), 1, + STATE(2454), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2474), 1, + sym_expression, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -81741,18 +82878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2013), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81760,7 +82897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81777,51 +82914,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71132] = 26, - ACTIONS(766), 1, + [71972] = 26, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(1249), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(1257), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1540), 1, sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(813), 1, sym_primary_expression, - STATE(1953), 1, + STATE(888), 1, sym_selector_expression, - STATE(2401), 1, - sym_expression, - STATE(2453), 1, + STATE(905), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3197), 1, + STATE(2565), 1, + sym_expression, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -81830,18 +82967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81849,7 +82986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81866,51 +83003,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71247] = 26, - ACTIONS(766), 1, - anon_sym_DOT, + [72087] = 26, ACTIONS(770), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(776), 1, + ACTIONS(780), 1, anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, - anon_sym_DQUOTE, ACTIONS(790), 1, + anon_sym_DQUOTE, + ACTIONS(794), 1, sym_float, - ACTIONS(792), 1, + ACTIONS(796), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(996), 1, sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + ACTIONS(998), 1, + anon_sym_not, + STATE(1667), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1791), 1, + sym_call, + STATE(1823), 1, sym_expression, - STATE(1953), 1, + STATE(1885), 1, sym_selector_expression, - STATE(2453), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -81919,18 +83056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1996), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81938,7 +83075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81955,17 +83092,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71362] = 5, - ACTIONS(1584), 1, - anon_sym_PIPE, - STATE(834), 1, + [72202] = 4, + STATE(660), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 25, - sym__dedent, + ACTIONS(1498), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -81978,6 +83113,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, @@ -81989,7 +83125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1503), 33, + ACTIONS(1496), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -82023,51 +83159,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [71435] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [72273] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, STATE(2484), 1, - sym_dotted_name, - STATE(2510), 1, sym_expression, - STATE(3223), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -82076,18 +83212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82095,7 +83231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82112,221 +83248,318 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71550] = 22, - ACTIONS(1371), 1, + [72388] = 26, + ACTIONS(904), 1, + anon_sym_DOT, + ACTIONS(910), 1, + anon_sym_lambda, + ACTIONS(924), 1, + sym_string_start, + ACTIONS(930), 1, + anon_sym_not, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, + ACTIONS(1249), 1, + anon_sym_LBRACE, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1413), 1, - anon_sym_PIPE, - ACTIONS(1415), 1, - anon_sym_AMP, - ACTIONS(1417), 1, - anon_sym_CARET, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1255), 1, + anon_sym_DQUOTE, + ACTIONS(1257), 1, + sym_float, + ACTIONS(1540), 1, + sym_identifier, + STATE(812), 1, + sym_primary_expression, + STATE(888), 1, + sym_selector_expression, + STATE(905), 1, + sym_call, + STATE(2537), 1, + sym_dotted_name, + STATE(2565), 1, + sym_expression, + STATE(3096), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1409), 2, + STATE(929), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1253), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1532), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1534), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + STATE(938), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(922), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [71657] = 22, - ACTIONS(1371), 1, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(934), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [72503] = 26, + ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1373), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1375), 1, - anon_sym_STAR_STAR, - ACTIONS(1377), 1, + ACTIONS(559), 1, + anon_sym_LBRACE, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1379), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1413), 1, - anon_sym_PIPE, - ACTIONS(1415), 1, - anon_sym_AMP, - ACTIONS(1417), 1, - anon_sym_CARET, - ACTIONS(1526), 1, + ACTIONS(569), 1, + anon_sym_DQUOTE, + ACTIONS(571), 1, + sym_float, + ACTIONS(962), 1, + sym_identifier, + ACTIONS(964), 1, anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - STATE(906), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + STATE(1335), 1, + sym_primary_expression, + STATE(1390), 1, + sym_expression, + STATE(1414), 1, + sym_call, + STATE(1475), 1, + sym_selector_expression, + STATE(2532), 1, + sym_dotted_name, + STATE(3261), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1409), 2, + STATE(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1411), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1253), 5, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [72618] = 26, + ACTIONS(449), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1520), 8, - sym__dedent, + ACTIONS(457), 1, + anon_sym_lambda, + ACTIONS(463), 1, + anon_sym_not, + ACTIONS(475), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(565), 1, + anon_sym_QMARK_DOT, + ACTIONS(569), 1, anon_sym_DQUOTE, - anon_sym_TILDE, + ACTIONS(571), 1, sym_float, - ACTIONS(1522), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, + STATE(1354), 1, + sym_primary_expression, + STATE(1414), 1, + sym_call, + STATE(1427), 1, + sym_selector_expression, + STATE(2475), 1, + sym_expression, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1271), 2, + sym_binary_operator, + sym_subscript, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + STATE(1631), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(473), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [71764] = 26, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(994), 1, + STATE(1266), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1264), 16, + sym_schema_expr, + sym_schema_instantiation, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [72733] = 26, + ACTIONS(449), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(1004), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(1223), 1, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(571), 1, sym_float, - STATE(517), 1, + STATE(1354), 1, sym_primary_expression, - STATE(845), 1, - sym_expression, - STATE(856), 1, + STATE(1414), 1, sym_call, - STATE(877), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2461), 1, + sym_expression, + STATE(2507), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -82335,18 +83568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(987), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82354,7 +83587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82371,51 +83604,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71879] = 26, - ACTIONS(994), 1, + [72848] = 26, + ACTIONS(936), 1, + sym_identifier, + ACTIONS(938), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(944), 1, anon_sym_lambda, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1213), 1, - sym_identifier, - ACTIONS(1215), 1, + ACTIONS(948), 1, anon_sym_not, - ACTIONS(1223), 1, + ACTIONS(958), 1, + sym_string_start, + ACTIONS(1275), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1281), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1287), 1, sym_float, - STATE(424), 1, + STATE(1551), 1, sym_primary_expression, - STATE(856), 1, + STATE(1561), 1, sym_call, - STATE(876), 1, + STATE(1842), 1, sym_selector_expression, - STATE(1154), 1, + STATE(2352), 1, sym_expression, - STATE(2478), 1, + STATE(2527), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3130), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1853), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1908), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1283), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -82424,18 +83657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1913), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(956), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1861), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82443,7 +83676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1862), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82460,51 +83693,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71994] = 26, - ACTIONS(994), 1, + [72963] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(1000), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(1014), 1, + ACTIONS(427), 1, + anon_sym_not, + ACTIONS(439), 1, sym_string_start, - ACTIONS(1213), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1223), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(1225), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1227), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, + ACTIONS(1271), 1, sym_float, - STATE(424), 1, - sym_primary_expression, - STATE(615), 1, - sym_expression, - STATE(856), 1, + STATE(1227), 1, sym_call, - STATE(876), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2478), 1, + STATE(2395), 1, + sym_expression, + STATE(2454), 1, sym_dotted_name, - STATE(3037), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -82513,18 +83746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82532,7 +83765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82549,51 +83782,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72109] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [73078] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2479), 1, + STATE(2453), 1, sym_expression, - STATE(2484), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -82602,18 +83835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82621,7 +83854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82638,51 +83871,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72224] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [73193] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2482), 1, - sym_expression, - STATE(2484), 1, + STATE(2507), 1, sym_dotted_name, - STATE(3223), 1, + STATE(2542), 1, + sym_expression, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -82691,18 +83924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82710,7 +83943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82727,254 +83960,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72339] = 4, - STATE(441), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1589), 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(1587), 33, - anon_sym_import, + [73308] = 26, + ACTIONS(904), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(910), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [72410] = 4, - ACTIONS(1591), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1491), 25, - sym__dedent, + ACTIONS(924), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1493), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(930), 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [72481] = 6, - ACTIONS(1427), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1485), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(1245), 1, anon_sym_LPAREN, + ACTIONS(1247), 1, anon_sym_LBRACK, + ACTIONS(1249), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, + ACTIONS(1255), 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(1257), 1, sym_float, - ACTIONS(1487), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [72556] = 26, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1000), 1, - anon_sym_lambda, - ACTIONS(1014), 1, - sym_string_start, - ACTIONS(1213), 1, + ACTIONS(1540), 1, sym_identifier, - ACTIONS(1215), 1, - anon_sym_not, - ACTIONS(1223), 1, - anon_sym_LPAREN, - ACTIONS(1225), 1, - anon_sym_LBRACK, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(1229), 1, - anon_sym_QMARK_DOT, - ACTIONS(1233), 1, - anon_sym_DQUOTE, - ACTIONS(1235), 1, - sym_float, - STATE(424), 1, + STATE(811), 1, sym_primary_expression, - STATE(645), 1, - sym_expression, - STATE(856), 1, - sym_call, - STATE(876), 1, + STATE(888), 1, sym_selector_expression, - STATE(2478), 1, + STATE(905), 1, + sym_call, + STATE(2537), 1, sym_dotted_name, - STATE(3037), 1, + STATE(2565), 1, + sym_expression, + STATE(3096), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(956), 2, - sym_in_operation, - sym_not_in_operation, - STATE(957), 2, + STATE(929), 2, sym_binary_operator, sym_subscript, - ACTIONS(1231), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1253), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -82983,18 +84013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(938), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1012), 5, + ACTIONS(922), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(974), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83002,7 +84032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(975), 16, + STATE(934), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83019,51 +84049,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72671] = 26, - ACTIONS(441), 1, + [73423] = 26, + ACTIONS(409), 1, anon_sym_DOT, - ACTIONS(449), 1, + ACTIONS(419), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(427), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(439), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1259), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1265), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1271), 1, sym_float, - STATE(1364), 1, - sym_primary_expression, - STATE(1369), 1, + STATE(1227), 1, sym_call, - STATE(1422), 1, + STATE(1229), 1, + sym_primary_expression, + STATE(1236), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2454), 1, sym_dotted_name, - STATE(2486), 1, + STATE(2473), 1, sym_expression, - STATE(3223), 1, + STATE(3180), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1355), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1359), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1267), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -83072,18 +84102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1360), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(437), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1348), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83091,7 +84121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1339), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83108,51 +84138,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72786] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [73538] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2484), 1, - sym_dotted_name, - STATE(2496), 1, + STATE(2450), 1, sym_expression, - STATE(3223), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -83161,18 +84191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83180,7 +84210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83197,51 +84227,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72901] = 26, - ACTIONS(441), 1, + [73653] = 26, + ACTIONS(770), 1, anon_sym_DOT, - ACTIONS(449), 1, - anon_sym_lambda, - ACTIONS(455), 1, - anon_sym_not, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(780), 1, + anon_sym_lambda, + ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(784), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(786), 1, + anon_sym_not, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(794), 1, sym_float, - STATE(1364), 1, + ACTIONS(796), 1, + sym_string_start, + ACTIONS(976), 1, + sym_identifier, + STATE(1761), 1, + sym_expression, + STATE(1789), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1791), 1, sym_call, - STATE(1422), 1, + STATE(1889), 1, sym_selector_expression, - STATE(2484), 1, + STATE(2529), 1, sym_dotted_name, - STATE(2499), 1, - sym_expression, - STATE(3223), 1, + STATE(3226), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(2002), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(2003), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(788), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -83250,18 +84280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(2004), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(792), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1998), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83269,7 +84299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(2008), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83286,118 +84316,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73016] = 4, - STATE(843), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1595), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1593), 33, - anon_sym_import, + [73768] = 26, + ACTIONS(449), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(457), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(463), 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(475), 1, + sym_string_start, + ACTIONS(553), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [73087] = 26, - ACTIONS(766), 1, - anon_sym_DOT, - ACTIONS(770), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(774), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(776), 1, - anon_sym_lambda, - ACTIONS(778), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(780), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(782), 1, - anon_sym_not, - ACTIONS(786), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(790), 1, + ACTIONS(571), 1, sym_float, - ACTIONS(792), 1, - sym_string_start, - ACTIONS(1201), 1, - sym_identifier, - STATE(1636), 1, - sym_call, - STATE(1643), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1786), 1, - sym_expression, - STATE(1953), 1, + STATE(1414), 1, + sym_call, + STATE(1427), 1, sym_selector_expression, - STATE(2453), 1, + STATE(2451), 1, + sym_expression, + STATE(2507), 1, sym_dotted_name, - STATE(3197), 1, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2000), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2015), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(784), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -83406,18 +84369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1999), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(788), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(2006), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83425,7 +84388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2007), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83442,51 +84405,51 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73202] = 26, - ACTIONS(441), 1, - anon_sym_DOT, + [73883] = 26, ACTIONS(449), 1, + anon_sym_DOT, + ACTIONS(457), 1, anon_sym_lambda, - ACTIONS(455), 1, + ACTIONS(463), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(553), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(565), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(571), 1, sym_float, - STATE(1364), 1, + STATE(1354), 1, sym_primary_expression, - STATE(1369), 1, + STATE(1414), 1, sym_call, - STATE(1422), 1, + STATE(1427), 1, sym_selector_expression, - STATE(2484), 1, - sym_dotted_name, - STATE(2505), 1, + STATE(2456), 1, sym_expression, - STATE(3223), 1, + STATE(2507), 1, + sym_dotted_name, + STATE(3261), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1226), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1253), 2, + STATE(1271), 2, sym_binary_operator, sym_subscript, - ACTIONS(559), 3, + STATE(1272), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(567), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, @@ -83495,18 +84458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1509), 4, + STATE(1631), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(465), 5, + ACTIONS(473), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1250), 7, + STATE(1266), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83514,7 +84477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1284), 16, + STATE(1264), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83531,151 +84494,11 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73317] = 4, - STATE(855), 1, - aux_sym_dotted_name_repeat1, + [73998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 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(1593), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [73388] = 8, - ACTIONS(1385), 1, - anon_sym_PLUS, - ACTIONS(1489), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1387), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1580), 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(1389), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [73467] = 4, - STATE(663), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1589), 26, + ACTIONS(1605), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -83702,7 +84525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1587), 33, + ACTIONS(1607), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83736,13 +84559,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [73538] = 4, - STATE(907), 1, - sym_dictionary, + [74066] = 4, + STATE(880), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1611), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -83769,7 +84592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1609), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83802,13 +84625,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [73608] = 4, - STATE(917), 1, - sym_dictionary, + [74136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1613), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -83835,13 +84656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1615), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83868,11 +84690,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [73678] = 3, + [74204] = 4, + STATE(880), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1603), 26, + ACTIONS(1611), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -83899,14 +84723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 33, + ACTIONS(1609), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83933,13 +84756,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [73746] = 3, + [74274] = 4, + STATE(880), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 26, + ACTIONS(1611), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83964,14 +84789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1607), 33, + ACTIONS(1609), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -83998,7 +84822,9 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [73814] = 3, + [74344] = 4, + STATE(880), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -84029,14 +84855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1609), 33, + ACTIONS(1609), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84063,13 +84888,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [73882] = 3, + [74414] = 4, + STATE(878), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1438), 26, - sym__dedent, + ACTIONS(1611), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84094,14 +84921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1433), 33, + ACTIONS(1609), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84128,13 +84954,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [73950] = 3, + [74484] = 4, + STATE(878), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 26, - sym__dedent, + ACTIONS(1611), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84159,14 +84987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1613), 33, + ACTIONS(1609), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84193,13 +85020,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74018] = 3, + [74554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 26, - sym__dedent, + ACTIONS(1617), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84224,7 +85051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1617), 33, + ACTIONS(1619), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -84258,13 +85085,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74086] = 3, + [74622] = 4, + STATE(878), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 26, - sym__dedent, + ACTIONS(1611), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84289,14 +85118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1621), 33, + ACTIONS(1609), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84323,11 +85151,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74154] = 3, + [74692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 26, + ACTIONS(1483), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -84354,7 +85182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1627), 33, + ACTIONS(1478), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -84388,13 +85216,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74222] = 3, + [74760] = 4, + STATE(878), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 26, - sym__dedent, + ACTIONS(1611), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84419,14 +85249,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1627), 33, + ACTIONS(1609), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84453,13 +85282,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74290] = 3, + [74830] = 4, + ACTIONS(1603), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 26, - sym__dedent, + ACTIONS(1490), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84484,14 +85315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1607), 33, + ACTIONS(1488), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84518,11 +85348,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74358] = 3, + [74900] = 4, + STATE(848), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 26, + ACTIONS(1621), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -84549,14 +85381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1621), 33, + ACTIONS(1623), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84583,11 +85414,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74426] = 3, + [74970] = 8, + ACTIONS(1632), 1, + anon_sym_not, + ACTIONS(1638), 1, + anon_sym_is, + STATE(878), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 26, + ACTIONS(1629), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1635), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1625), 22, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -84608,22 +85454,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1617), 33, + ACTIONS(1627), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -84635,26 +85475,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74494] = 4, - STATE(900), 1, + [75048] = 4, + STATE(871), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, + ACTIONS(1641), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -84681,7 +85517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1631), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -84714,15 +85550,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74564] = 4, - STATE(900), 1, + [75118] = 8, + ACTIONS(1648), 1, + anon_sym_not, + ACTIONS(1654), 1, + anon_sym_is, + STATE(880), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, + ACTIONS(1645), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1651), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1625), 22, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84741,13 +85590,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(1631), 32, + ACTIONS(1627), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -84755,7 +85600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -84767,26 +85611,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74634] = 3, + [75196] = 4, + STATE(953), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 26, + ACTIONS(1641), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84811,14 +85653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1613), 33, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84845,15 +85686,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74702] = 4, - STATE(900), 1, - aux_sym_comparison_operator_repeat1, + [75266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, + ACTIONS(1605), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84878,13 +85717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1631), 32, + ACTIONS(1607), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84911,15 +85751,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74772] = 4, - STATE(900), 1, - aux_sym_comparison_operator_repeat1, + [75334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, + ACTIONS(1659), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -84944,13 +85782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1631), 32, + ACTIONS(1657), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -84977,13 +85816,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74842] = 4, - ACTIONS(1401), 1, - anon_sym_EQ, + [75402] = 4, + STATE(867), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1399), 26, + ACTIONS(1641), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85010,7 +85849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1397), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -85043,13 +85882,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74912] = 4, - STATE(1092), 1, + [75472] = 4, + STATE(2267), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1641), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85076,7 +85915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -85109,13 +85948,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74982] = 4, - STATE(888), 1, - aux_sym_comparison_operator_repeat1, + [75542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1663), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85142,13 +85979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1661), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85175,13 +86013,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75052] = 4, - STATE(356), 1, - aux_sym_union_type_repeat1, + [75610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 26, + ACTIONS(1667), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85208,13 +86044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1633), 32, + ACTIONS(1665), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85241,13 +86078,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75122] = 4, - STATE(873), 1, + [75678] = 4, + STATE(2267), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1641), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -85274,7 +86111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -85307,13 +86144,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75192] = 3, + [75748] = 4, + STATE(560), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 26, + ACTIONS(1621), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -85338,14 +86177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1639), 33, + ACTIONS(1623), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85372,15 +86210,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75260] = 4, - STATE(2256), 1, - aux_sym_comparison_operator_repeat1, + [75818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, - sym__dedent, + ACTIONS(1667), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -85405,13 +86241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1665), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85438,11 +86275,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75330] = 3, + [75886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 26, + ACTIONS(1663), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -85469,7 +86306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1643), 33, + ACTIONS(1661), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -85503,11 +86340,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75398] = 3, + [75954] = 4, + ACTIONS(1492), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 26, + ACTIONS(1490), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85534,14 +86373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1645), 33, + ACTIONS(1488), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85568,11 +86406,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75466] = 3, + [76024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 26, + ACTIONS(1483), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85599,7 +86437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1649), 33, + ACTIONS(1478), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -85633,15 +86471,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75534] = 4, - STATE(2256), 1, - aux_sym_comparison_operator_repeat1, + [76092] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1617), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -85666,13 +86502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1619), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85699,13 +86536,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75604] = 4, - STATE(892), 1, - aux_sym_comparison_operator_repeat1, + [76160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, + ACTIONS(1613), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85732,13 +86567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1631), 32, + ACTIONS(1615), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85765,13 +86601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75674] = 4, - STATE(892), 1, - aux_sym_comparison_operator_repeat1, + [76228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, + ACTIONS(1671), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85798,13 +86632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1631), 32, + ACTIONS(1669), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85831,13 +86666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75744] = 4, - STATE(892), 1, - aux_sym_comparison_operator_repeat1, + [76296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, + ACTIONS(1675), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85864,13 +86697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1631), 32, + ACTIONS(1673), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85897,15 +86731,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75814] = 4, - STATE(892), 1, - aux_sym_comparison_operator_repeat1, + [76364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, - sym__dedent, + ACTIONS(1671), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -85930,13 +86762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1631), 32, + ACTIONS(1669), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -85963,11 +86796,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75884] = 3, + [76432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 26, + ACTIONS(1679), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85994,7 +86827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1639), 33, + ACTIONS(1677), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86028,13 +86861,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75952] = 3, + [76500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 26, - sym__dedent, + ACTIONS(1675), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86059,7 +86892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1643), 33, + ACTIONS(1673), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86093,28 +86926,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76020] = 8, - ACTIONS(1660), 1, - anon_sym_not, - ACTIONS(1666), 1, - anon_sym_is, - STATE(892), 1, - aux_sym_comparison_operator_repeat1, + [76568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1663), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 22, - sym__dedent, + ACTIONS(1679), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86133,16 +86951,22 @@ 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(1653), 27, + ACTIONS(1677), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -86154,22 +86978,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76098] = 3, + [76636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 26, + ACTIONS(1683), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86194,7 +87022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1649), 33, + ACTIONS(1681), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86228,11 +87056,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76166] = 3, + [76704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 26, + ACTIONS(1683), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86259,7 +87087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1609), 33, + ACTIONS(1681), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86293,13 +87121,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76234] = 3, + [76772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1603), 26, + ACTIONS(1687), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86324,7 +87152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 33, + ACTIONS(1685), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86358,13 +87186,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76302] = 4, - ACTIONS(1558), 1, - anon_sym_EQ, + [76840] = 4, + STATE(943), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1399), 26, + ACTIONS(1641), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86391,7 +87219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1397), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86424,13 +87252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76372] = 4, - STATE(681), 1, - aux_sym_union_type_repeat1, + [76910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 26, + ACTIONS(1687), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86457,13 +87283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1633), 32, + ACTIONS(1685), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -86490,13 +87317,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76442] = 4, - STATE(1124), 1, + [76978] = 4, + STATE(1089), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1641), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86523,7 +87350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86556,13 +87383,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76512] = 3, + [77048] = 4, + STATE(1108), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1438), 26, + ACTIONS(1641), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86587,14 +87416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1433), 33, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -86621,26 +87449,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76580] = 8, - ACTIONS(1672), 1, - anon_sym_not, - ACTIONS(1678), 1, - anon_sym_is, - STATE(900), 1, - aux_sym_comparison_operator_repeat1, + [77118] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1675), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 22, + ACTIONS(1659), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86661,16 +87474,22 @@ 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(1653), 27, + ACTIONS(1657), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -86682,22 +87501,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76658] = 3, + [77186] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 26, + ACTIONS(1691), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86722,14 +87545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1645), 33, + ACTIONS(1689), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -86756,13 +87578,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76726] = 3, + [77253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 26, - sym__dedent, + ACTIONS(1693), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86787,7 +87609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1681), 32, + ACTIONS(1695), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86820,13 +87642,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76793] = 3, + [77320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 26, - sym__dedent, + ACTIONS(1697), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86851,7 +87673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1685), 32, + ACTIONS(1699), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86884,11 +87706,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76860] = 3, + [77387] = 5, + ACTIONS(1701), 1, + anon_sym_in, + ACTIONS(1703), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 26, + ACTIONS(1641), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86915,7 +87741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1691), 32, + ACTIONS(1643), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86923,7 +87749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -86935,7 +87760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -86948,11 +87772,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76927] = 3, + [77458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1693), 26, + ACTIONS(1705), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86979,7 +87803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1695), 32, + ACTIONS(1707), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87012,13 +87836,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76994] = 3, + [77525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 26, - sym__dedent, + ACTIONS(1709), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87043,7 +87867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1697), 32, + ACTIONS(1711), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87076,13 +87900,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77061] = 3, + [77592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 26, - sym__dedent, + ACTIONS(1713), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87107,7 +87931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1701), 32, + ACTIONS(1715), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87140,13 +87964,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77128] = 3, + [77659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 26, - sym__dedent, + ACTIONS(1717), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87171,7 +87995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1705), 32, + ACTIONS(1719), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87204,11 +88028,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77195] = 3, + [77726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1709), 26, + ACTIONS(1717), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87235,7 +88059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1711), 32, + ACTIONS(1719), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87268,13 +88092,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77262] = 3, + [77793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 26, - sym__dedent, + ACTIONS(1721), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87299,7 +88123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1713), 32, + ACTIONS(1723), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87332,13 +88156,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77329] = 3, + [77860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 26, - sym__dedent, + ACTIONS(1691), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87363,7 +88187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1717), 32, + ACTIONS(1689), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87396,13 +88220,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77396] = 3, + [77927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 26, - sym__dedent, + ACTIONS(1725), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87427,7 +88251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1721), 32, + ACTIONS(1727), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87460,13 +88284,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77463] = 3, + [77994] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 26, - sym__dedent, + ACTIONS(1729), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87491,7 +88315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1725), 32, + ACTIONS(1731), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87524,7 +88348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77530] = 3, + [78061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -87588,11 +88412,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77597] = 3, + [78128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 26, + ACTIONS(1733), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87619,7 +88443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1697), 32, + ACTIONS(1735), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87652,11 +88476,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77664] = 3, + [78195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 26, + ACTIONS(1737), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87683,7 +88507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1735), 32, + ACTIONS(1739), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87716,11 +88540,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77731] = 3, + [78262] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 26, + ACTIONS(1741), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87747,7 +88571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1701), 32, + ACTIONS(1743), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87780,11 +88604,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77798] = 3, + [78329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1251), 26, + ACTIONS(1745), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87811,7 +88635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1253), 32, + ACTIONS(1747), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87844,11 +88668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77865] = 3, + [78396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 26, + ACTIONS(1749), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87875,7 +88699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1705), 32, + ACTIONS(1751), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87908,11 +88732,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77932] = 3, + [78463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 26, + ACTIONS(1641), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87939,7 +88763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1713), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87972,11 +88796,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77999] = 3, + [78530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 26, + ACTIONS(1753), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88003,7 +88827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1717), 32, + ACTIONS(1755), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88036,11 +88860,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78066] = 3, + [78597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 26, + ACTIONS(1757), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88067,7 +88891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1739), 32, + ACTIONS(1759), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88100,11 +88924,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78133] = 3, + [78664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 26, + ACTIONS(1448), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88131,7 +88955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1743), 32, + ACTIONS(1343), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88164,11 +88988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78200] = 3, + [78731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 26, + ACTIONS(1761), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88195,7 +89019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1721), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88228,11 +89052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78267] = 3, + [78798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 26, + ACTIONS(1641), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88259,7 +89083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1725), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88292,11 +89116,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78334] = 3, + [78865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 26, + ACTIONS(1765), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88323,7 +89147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1747), 32, + ACTIONS(1767), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88356,11 +89180,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78401] = 3, + [78932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1749), 26, + ACTIONS(1769), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88387,7 +89211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1751), 32, + ACTIONS(1771), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88420,13 +89244,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78468] = 3, + [78999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1753), 26, + ACTIONS(1641), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88451,7 +89275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1755), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88484,11 +89308,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78535] = 3, + [79066] = 5, + ACTIONS(1773), 1, + anon_sym_in, + ACTIONS(1775), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 26, + ACTIONS(1641), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88515,7 +89343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1759), 32, + ACTIONS(1643), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88523,7 +89351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -88535,7 +89362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -88548,11 +89374,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78602] = 3, + [79137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1753), 26, + ACTIONS(1448), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -88579,7 +89405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1755), 32, + ACTIONS(1343), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88612,11 +89438,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78669] = 3, + [79204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1709), 26, + ACTIONS(1641), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -88643,7 +89469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1711), 32, + ACTIONS(1643), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88676,13 +89502,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78736] = 3, + [79271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 26, - sym__dedent, + ACTIONS(1777), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88707,7 +89533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1691), 32, + ACTIONS(1779), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88740,11 +89566,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78803] = 3, + [79338] = 5, + ACTIONS(1781), 1, + anon_sym_in, + ACTIONS(1783), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1693), 26, + ACTIONS(1641), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -88771,7 +89601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1695), 32, + ACTIONS(1643), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88779,7 +89609,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -88791,7 +89620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -88804,13 +89632,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78870] = 3, + [79409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 26, - sym__dedent, + ACTIONS(1785), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88835,7 +89663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1735), 32, + ACTIONS(1787), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88868,11 +89696,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78937] = 3, + [79476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 26, + ACTIONS(1791), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -88899,7 +89727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1739), 32, + ACTIONS(1789), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88932,11 +89760,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79004] = 3, + [79543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 26, + ACTIONS(1795), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -88963,7 +89791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1743), 32, + ACTIONS(1793), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88996,13 +89824,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79071] = 3, + [79610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 26, - sym__dedent, + ACTIONS(1795), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -89027,7 +89855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1747), 32, + ACTIONS(1793), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89060,11 +89888,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79138] = 3, + [79677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1749), 26, + ACTIONS(1799), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -89091,7 +89919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1751), 32, + ACTIONS(1797), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89124,13 +89952,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79205] = 3, + [79744] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 26, - sym__dedent, + ACTIONS(1799), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -89155,7 +89983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1761), 32, + ACTIONS(1797), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89188,11 +90016,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79272] = 3, + [79811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1801), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -89219,7 +90047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1803), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89252,11 +90080,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79339] = 3, + [79878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 26, + ACTIONS(1805), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -89283,7 +90111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1767), 32, + ACTIONS(1807), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89316,11 +90144,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79406] = 3, + [79945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 26, + ACTIONS(1811), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -89347,7 +90175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1769), 32, + ACTIONS(1809), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89380,11 +90208,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79473] = 3, + [80012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 26, + ACTIONS(1777), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -89411,7 +90239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1759), 32, + ACTIONS(1779), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89444,13 +90272,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79540] = 3, + [80079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 26, + ACTIONS(1785), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -89475,7 +90303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1775), 32, + ACTIONS(1787), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89508,13 +90336,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79607] = 3, + [80146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 26, - sym__dedent, + ACTIONS(1813), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -89539,7 +90367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1777), 32, + ACTIONS(1815), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89572,11 +90400,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79674] = 3, + [80213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 26, + ACTIONS(1819), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -89603,7 +90431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1781), 32, + ACTIONS(1817), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89636,13 +90464,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79741] = 3, + [80280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 26, + ACTIONS(1823), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -89667,7 +90495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1681), 32, + ACTIONS(1821), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89700,11 +90528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79808] = 3, + [80347] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 26, + ACTIONS(1827), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -89731,7 +90559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1681), 32, + ACTIONS(1825), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89764,11 +90592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79875] = 3, + [80414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 26, + ACTIONS(1831), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -89795,7 +90623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1775), 32, + ACTIONS(1829), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89828,11 +90656,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79942] = 3, + [80481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 26, + ACTIONS(1835), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -89859,7 +90687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1781), 32, + ACTIONS(1833), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89892,13 +90720,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80009] = 3, + [80548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 26, - sym__dedent, + ACTIONS(1837), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -89923,7 +90751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1767), 32, + ACTIONS(1839), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89956,17 +90784,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80076] = 5, - ACTIONS(1785), 1, - anon_sym_in, - ACTIONS(1787), 1, - anon_sym_not, + [80615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1843), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -89991,7 +90815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 30, + ACTIONS(1841), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89999,6 +90823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -90010,6 +90835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -90022,13 +90848,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80147] = 3, + [80682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1791), 26, - sym__dedent, + ACTIONS(1811), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90053,7 +90879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1789), 32, + ACTIONS(1809), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90086,15 +90912,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80214] = 5, - ACTIONS(1793), 1, - anon_sym_in, - ACTIONS(1795), 1, - anon_sym_not, + [80749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1847), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -90121,7 +90943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 30, + ACTIONS(1845), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90129,6 +90951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -90140,6 +90963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -90152,11 +90976,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80285] = 3, + [80816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 26, + ACTIONS(1849), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -90183,7 +91007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1799), 32, + ACTIONS(1851), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90216,13 +91040,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80352] = 3, + [80883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 26, - sym__dedent, + ACTIONS(1791), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90247,7 +91071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1731), 32, + ACTIONS(1789), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90280,13 +91104,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80419] = 3, + [80950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, - sym__dedent, + ACTIONS(1853), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90311,7 +91135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1855), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90344,13 +91168,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80486] = 3, + [81017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 26, + ACTIONS(1859), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90375,7 +91199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1761), 32, + ACTIONS(1857), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90408,13 +91232,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80553] = 3, + [81084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 26, + ACTIONS(1863), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90439,7 +91263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1685), 32, + ACTIONS(1861), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90472,15 +91296,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80620] = 5, - ACTIONS(1785), 1, - anon_sym_in, - ACTIONS(1787), 1, - anon_sym_not, + [81151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1799), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -90507,7 +91327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 30, + ACTIONS(1797), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90515,6 +91335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -90526,6 +91347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -90538,13 +91360,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80691] = 3, + [81218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 26, + ACTIONS(1867), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90569,7 +91391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1681), 32, + ACTIONS(1865), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90602,13 +91424,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80758] = 3, + [81285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 26, + ACTIONS(1871), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90633,7 +91455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1803), 32, + ACTIONS(1869), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90666,13 +91488,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80825] = 3, + [81352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 26, + ACTIONS(1875), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90697,7 +91519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1807), 32, + ACTIONS(1873), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90730,11 +91552,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80892] = 3, + [81419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 26, + ACTIONS(1879), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -90761,7 +91583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1809), 32, + ACTIONS(1877), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90794,11 +91616,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80959] = 3, + [81486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 26, + ACTIONS(1853), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -90825,7 +91647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1813), 32, + ACTIONS(1855), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90858,11 +91680,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81026] = 3, + [81553] = 5, + ACTIONS(1781), 1, + anon_sym_in, + ACTIONS(1881), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 26, + ACTIONS(1641), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -90889,7 +91715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1813), 32, + ACTIONS(1643), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90897,7 +91723,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -90909,7 +91734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -90922,13 +91746,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81093] = 3, + [81624] = 5, + ACTIONS(1701), 1, + anon_sym_in, + ACTIONS(1883), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1819), 26, - sym__dedent, + ACTIONS(1641), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90953,7 +91781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1817), 32, + ACTIONS(1643), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -90961,7 +91789,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -90973,7 +91800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -90986,13 +91812,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81160] = 3, + [81695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1823), 26, - sym__dedent, + ACTIONS(1879), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91017,7 +91843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1821), 32, + ACTIONS(1877), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91050,11 +91876,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81227] = 3, + [81762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 26, + ACTIONS(1819), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -91081,7 +91907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1827), 32, + ACTIONS(1817), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91114,11 +91940,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81294] = 3, + [81829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 26, + ACTIONS(1875), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -91145,7 +91971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1831), 32, + ACTIONS(1873), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91178,13 +92004,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81361] = 3, + [81896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 26, + ACTIONS(1693), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91209,7 +92035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1835), 32, + ACTIONS(1695), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91242,11 +92068,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81428] = 3, + [81963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 26, + ACTIONS(1823), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -91273,7 +92099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1769), 32, + ACTIONS(1821), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91306,11 +92132,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81495] = 3, + [82030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 26, + ACTIONS(1849), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -91337,7 +92163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1837), 32, + ACTIONS(1851), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91370,13 +92196,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81562] = 3, + [82097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1251), 26, - sym__dedent, + ACTIONS(1871), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91401,7 +92227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1253), 32, + ACTIONS(1869), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91434,11 +92260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81629] = 3, + [82164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1837), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -91465,7 +92291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1839), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91498,13 +92324,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81696] = 3, + [82231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 26, + ACTIONS(1813), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91529,7 +92355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1777), 32, + ACTIONS(1815), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91562,13 +92388,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81763] = 3, + [82298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 26, + ACTIONS(1805), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91593,7 +92419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1781), 32, + ACTIONS(1807), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91626,13 +92452,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81830] = 3, + [82365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 26, + ACTIONS(1801), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91657,7 +92483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1781), 32, + ACTIONS(1803), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91690,13 +92516,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81897] = 3, + [82432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1791), 26, + ACTIONS(1697), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91721,7 +92547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1789), 32, + ACTIONS(1699), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91754,11 +92580,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81964] = 3, + [82499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 26, + ACTIONS(1867), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -91785,7 +92611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1843), 32, + ACTIONS(1865), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91818,11 +92644,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82031] = 3, + [82566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 26, + ACTIONS(1705), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -91849,7 +92675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1845), 32, + ACTIONS(1707), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91882,11 +92708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82098] = 3, + [82633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 26, + ACTIONS(1709), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -91913,7 +92739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1849), 32, + ACTIONS(1711), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -91946,77 +92772,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82165] = 5, - ACTIONS(1853), 1, - anon_sym_in, - ACTIONS(1855), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1599), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1597), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82236] = 3, + [82700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 26, + ACTIONS(1713), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -92043,7 +92803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1857), 32, + ACTIONS(1715), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92076,11 +92836,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82303] = 3, + [82767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 26, + ACTIONS(1717), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -92107,7 +92867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1861), 32, + ACTIONS(1719), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92140,11 +92900,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82370] = 3, + [82834] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 26, + ACTIONS(1717), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -92171,7 +92931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1865), 32, + ACTIONS(1719), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92204,15 +92964,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82437] = 5, - ACTIONS(1793), 1, - anon_sym_in, - ACTIONS(1869), 1, - anon_sym_not, + [82901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1721), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -92239,7 +92995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 30, + ACTIONS(1723), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92247,6 +93003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -92258,6 +93015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -92270,11 +93028,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82508] = 3, + [82968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 26, + ACTIONS(1827), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -92301,7 +93059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1873), 32, + ACTIONS(1825), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92334,13 +93092,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82575] = 3, + [83035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 26, + ACTIONS(1725), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92365,7 +93123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1809), 32, + ACTIONS(1727), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92398,13 +93156,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82642] = 3, + [83102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 26, + ACTIONS(1729), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92429,7 +93187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1813), 32, + ACTIONS(1731), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92462,13 +93220,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82709] = 3, + [83169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 26, + ACTIONS(1729), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92493,7 +93251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1813), 32, + ACTIONS(1731), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92526,13 +93284,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82776] = 3, + [83236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1819), 26, + ACTIONS(1733), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92557,7 +93315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1817), 32, + ACTIONS(1735), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92590,13 +93348,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82843] = 3, + [83303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 26, + ACTIONS(1737), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92621,7 +93379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1865), 32, + ACTIONS(1739), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92654,13 +93412,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82910] = 3, + [83370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 26, + ACTIONS(1741), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92685,7 +93443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1861), 32, + ACTIONS(1743), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92718,13 +93476,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82977] = 3, + [83437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 26, + ACTIONS(1745), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92749,7 +93507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1857), 32, + ACTIONS(1747), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92782,11 +93540,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83044] = 3, + [83504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 26, + ACTIONS(1749), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -92813,7 +93571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1799), 32, + ACTIONS(1751), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92846,13 +93604,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83111] = 3, + [83571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1823), 26, + ACTIONS(1753), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92877,7 +93635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1821), 32, + ACTIONS(1755), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92910,11 +93668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83178] = 3, + [83638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 26, + ACTIONS(1757), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -92941,7 +93699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1873), 32, + ACTIONS(1759), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -92974,11 +93732,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83245] = 3, + [83705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 26, + ACTIONS(1761), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -93005,7 +93763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1843), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93038,13 +93796,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83312] = 3, + [83772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 26, + ACTIONS(1765), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -93069,7 +93827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1837), 32, + ACTIONS(1767), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93102,13 +93860,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83379] = 3, + [83839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1769), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -93133,7 +93891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 32, + ACTIONS(1771), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93166,17 +93924,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83446] = 5, - ACTIONS(1853), 1, + [83906] = 5, + ACTIONS(1773), 1, anon_sym_in, - ACTIONS(1875), 1, + ACTIONS(1775), 1, anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1641), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -93201,7 +93959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1597), 30, + ACTIONS(1643), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93232,13 +93990,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83517] = 3, + [83977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 26, - sym__dedent, + ACTIONS(1799), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -93263,7 +94021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1803), 32, + ACTIONS(1797), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93296,11 +94054,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83584] = 3, + [84044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 26, + ACTIONS(1863), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -93327,7 +94085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1845), 32, + ACTIONS(1861), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93360,11 +94118,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83651] = 3, + [84111] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 26, + ACTIONS(1859), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -93391,7 +94149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1849), 32, + ACTIONS(1857), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93424,13 +94182,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83718] = 3, + [84178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 26, - sym__dedent, + ACTIONS(1847), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -93455,7 +94213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1807), 32, + ACTIONS(1845), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93488,13 +94246,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83785] = 3, + [84245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 26, - sym__dedent, + ACTIONS(1843), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -93519,7 +94277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1835), 32, + ACTIONS(1841), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93552,13 +94310,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83852] = 3, + [84312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 26, - sym__dedent, + ACTIONS(1835), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -93583,7 +94341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1831), 32, + ACTIONS(1833), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93616,13 +94374,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83919] = 3, + [84379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 26, - sym__dedent, + ACTIONS(1831), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -93647,7 +94405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1827), 32, + ACTIONS(1829), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -93680,85 +94438,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83986] = 8, - ACTIONS(1877), 1, - sym_isMutableFlag, - ACTIONS(1879), 1, - anon_sym_QMARK_COLON, - STATE(1130), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2258), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(748), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [84058] = 8, - ACTIONS(1877), 1, + [84446] = 8, + ACTIONS(1885), 1, sym_isMutableFlag, - ACTIONS(1879), 1, + ACTIONS(1887), 1, anon_sym_QMARK_COLON, - STATE(1064), 1, + STATE(1086), 1, aux_sym_comparison_operator_repeat1, - STATE(1130), 1, + STATE(1146), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 23, + ACTIONS(750), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93808,21 +94502,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [84130] = 8, - ACTIONS(1877), 1, + [84518] = 8, + ACTIONS(1885), 1, sym_isMutableFlag, - ACTIONS(1879), 1, + ACTIONS(1887), 1, anon_sym_QMARK_COLON, - STATE(1130), 1, + STATE(1146), 1, sym_dict_expr, - STATE(1204), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, + STATE(2272), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 23, + ACTIONS(750), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93872,25 +94566,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [84202] = 11, - ACTIONS(1593), 1, + [84590] = 11, + ACTIONS(1327), 1, anon_sym_EQ, - ACTIONS(1881), 1, + ACTIONS(1889), 1, anon_sym_LBRACE, - ACTIONS(1883), 1, + ACTIONS(1891), 1, sym_isMutableFlag, - ACTIONS(1885), 1, + ACTIONS(1893), 1, anon_sym_QMARK_COLON, - STATE(1901), 1, + STATE(1942), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - STATE(2223), 1, + STATE(2246), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 13, + ACTIONS(1329), 13, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -93904,7 +94598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(746), 14, + ACTIONS(750), 14, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS, @@ -93939,46 +94633,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [84280] = 10, + [84668] = 8, + ACTIONS(1885), 1, + sym_isMutableFlag, ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_STAR_STAR, - ACTIONS(1893), 1, - anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, - STATE(1118), 1, - sym_argument_list, - STATE(2254), 1, + anon_sym_QMARK_COLON, + STATE(1146), 1, + sym_dict_expr, + STATE(1203), 1, aux_sym_comparison_operator_repeat1, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 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(1544), 23, + ACTIONS(750), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94002,47 +94671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84353] = 11, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(1323), 1, - anon_sym_QMARK_DOT, - ACTIONS(1897), 1, - anon_sym_as, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1901), 1, - anon_sym_and, - ACTIONS(1903), 1, - anon_sym_or, - ACTIONS(1905), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1449), 18, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1455), 23, + ACTIONS(748), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94050,6 +94679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -94066,42 +94697,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [84428] = 4, - ACTIONS(1907), 1, - anon_sym_DASH_GT, + [84740] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1536), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_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(1538), 25, + STATE(1044), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1534), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -94112,7 +94718,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, @@ -94123,257 +94728,138 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84489] = 14, - ACTIONS(1887), 1, + ACTIONS(1536), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(1893), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, - STATE(1118), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1909), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1911), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1913), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1915), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 14, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1544), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84570] = 15, - ACTIONS(1887), 1, + [84801] = 21, + ACTIONS(1895), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_STAR_STAR, - ACTIONS(1893), 1, + ACTIONS(1905), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, + ACTIONS(1907), 1, + anon_sym_not, + ACTIONS(1913), 1, + anon_sym_PIPE, + ACTIONS(1915), 1, + anon_sym_AMP, ACTIONS(1917), 1, anon_sym_CARET, - STATE(1118), 1, - sym_argument_list, - STATE(2254), 1, + ACTIONS(1923), 1, + anon_sym_is, + ACTIONS(1925), 1, + anon_sym_QMARK_LBRACK, + STATE(1083), 1, aux_sym_comparison_operator_repeat1, + STATE(1120), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1911), 2, + ACTIONS(1909), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1913), 2, + ACTIONS(1911), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1915), 2, + ACTIONS(1919), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1542), 13, + ACTIONS(1899), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1921), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 7, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, sym_float, - ACTIONS(1544), 21, + ACTIONS(1343), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [84653] = 16, - ACTIONS(1887), 1, + [84896] = 12, + ACTIONS(1895), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_STAR_STAR, - ACTIONS(1893), 1, + ACTIONS(1905), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, + ACTIONS(1925), 1, anon_sym_QMARK_LBRACK, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1919), 1, - anon_sym_AMP, - STATE(1118), 1, + STATE(1120), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1911), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1913), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1915), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 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(1544), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84738] = 6, - ACTIONS(1921), 1, - anon_sym_DOT, - ACTIONS(1924), 1, - anon_sym_QMARK_DOT, - STATE(1020), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1433), 23, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1438), 24, + ACTIONS(1398), 18, sym_string_start, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -94384,16 +94870,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, - [84803] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 23, + ACTIONS(1396), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94403,11 +94881,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, @@ -94417,111 +94893,64 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1443), 25, - sym_string_start, - anon_sym_COMMA, + [84973] = 14, + ACTIONS(1895), 1, anon_sym_LPAREN, + ACTIONS(1897), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1903), 1, anon_sym_STAR_STAR, + ACTIONS(1905), 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(1925), 1, anon_sym_QMARK_LBRACK, - sym_float, - [84864] = 4, - ACTIONS(1927), 1, - anon_sym_DASH_GT, + STATE(1120), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1341), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(1901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1909), 2, anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_DASH, + ACTIONS(1911), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1919), 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(1343), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84925] = 4, - STATE(1036), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1347), 24, + ACTIONS(1398), 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(1396), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -94531,39 +94960,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1349), 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, - [84986] = 4, - STATE(1023), 1, + [85054] = 4, + STATE(1063), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 24, + ACTIONS(1383), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94588,7 +94991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1501), 25, + ACTIONS(1385), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94614,91 +95017,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [85047] = 21, - ACTIONS(1887), 1, + [85115] = 13, + ACTIONS(1895), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_STAR_STAR, - ACTIONS(1893), 1, + ACTIONS(1905), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, + ACTIONS(1925), 1, anon_sym_QMARK_LBRACK, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1919), 1, - anon_sym_AMP, - ACTIONS(1931), 1, - anon_sym_not, - ACTIONS(1933), 1, - anon_sym_PIPE, - ACTIONS(1937), 1, - anon_sym_is, - STATE(1074), 1, - aux_sym_comparison_operator_repeat1, - STATE(1118), 1, + STATE(1120), 1, sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1911), 2, + ACTIONS(1909), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1913), 2, + ACTIONS(1911), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1915), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1929), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1935), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 7, + ACTIONS(1398), 16, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(1253), 16, + ACTIONS(1396), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [85142] = 4, + [85194] = 11, + ACTIONS(1012), 1, + anon_sym_DOT, + ACTIONS(1315), 1, + anon_sym_QMARK_DOT, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1931), 1, + anon_sym_and, + ACTIONS(1933), 1, + anon_sym_or, + ACTIONS(1935), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1516), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1569), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -94707,8 +95113,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, @@ -94719,7 +95123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1514), 25, + ACTIONS(1567), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94727,8 +95131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -94745,64 +95147,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [85203] = 21, - ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_STAR_STAR, - ACTIONS(1893), 1, - anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1919), 1, - anon_sym_AMP, + [85269] = 8, ACTIONS(1931), 1, - anon_sym_not, - ACTIONS(1933), 1, - anon_sym_PIPE, - ACTIONS(1937), 1, - anon_sym_is, - STATE(1118), 1, - sym_argument_list, - STATE(1201), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_and, + ACTIONS(1935), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 2, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1297), 6, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1911), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1913), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1915), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1929), 3, - anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1935), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 7, + anon_sym_is, + ACTIONS(1291), 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(1253), 16, + ACTIONS(1299), 12, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + ACTIONS(1289), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94811,7 +95200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_and, + anon_sym_not, anon_sym_or, sym_integer, sym_identifier, @@ -94819,17 +95208,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85298] = 4, - STATE(1023), 1, - aux_sym_union_type_repeat1, + [85338] = 8, + ACTIONS(1291), 1, + anon_sym_QMARK_DOT, + ACTIONS(1931), 1, + anon_sym_and, + ACTIONS(1935), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 24, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 4, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, + anon_sym_or, + ACTIONS(1297), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -94838,8 +95235,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, @@ -94850,7 +95245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1465), 25, + ACTIONS(1299), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94858,8 +95253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -94876,25 +95269,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [85359] = 8, - ACTIONS(1387), 1, - anon_sym_QMARK_DOT, - ACTIONS(1901), 1, + [85407] = 6, + ACTIONS(1931), 1, anon_sym_and, - ACTIONS(1905), 1, + ACTIONS(1935), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + ACTIONS(1289), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_or, - ACTIONS(1578), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -94903,6 +95292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -94913,7 +95303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1580), 23, + ACTIONS(1291), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94921,6 +95311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -94937,50 +95328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [85428] = 12, - ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_STAR_STAR, - ACTIONS(1893), 1, - anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, - STATE(1118), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [85472] = 5, + ACTIONS(1935), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1913), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 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(1544), 21, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1428), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94990,9 +95347,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, @@ -95002,18 +95361,43 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85505] = 6, - ACTIONS(1901), 1, + ACTIONS(1430), 24, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [85535] = 6, + ACTIONS(1931), 1, anon_sym_and, - ACTIONS(1905), 1, + ACTIONS(1935), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1487), 22, + ACTIONS(1331), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95036,7 +95420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1485), 24, + ACTIONS(1333), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95061,15 +95445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [85570] = 5, - ACTIONS(1939), 1, - anon_sym_EQ, - STATE(1023), 1, - aux_sym_union_type_repeat1, + [85600] = 5, + ACTIONS(1935), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 23, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95093,7 +95478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1399), 25, + ACTIONS(1291), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95102,7 +95487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -95119,13 +95503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [85633] = 4, - ACTIONS(1941), 1, + [85663] = 4, + ACTIONS(1937), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 24, + ACTIONS(1392), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95150,7 +95534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1493), 25, + ACTIONS(1390), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95176,16 +95560,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85694] = 5, - ACTIONS(1905), 1, + [85724] = 5, + ACTIONS(1935), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1393), 23, + ACTIONS(1424), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95209,7 +95593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1391), 24, + ACTIONS(1422), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95234,49 +95618,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [85757] = 4, - STATE(1023), 1, - aux_sym_union_type_repeat1, + [85787] = 5, + STATE(1037), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 24, + ACTIONS(1939), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_QMARK_DOT, + ACTIONS(1478), 15, 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(1491), 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, @@ -95284,62 +95641,101 @@ 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(1483), 32, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_is, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_QMARK_LBRACK, - sym_float, - [85818] = 5, - ACTIONS(1943), 1, - anon_sym_PIPE, - STATE(1036), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1501), 24, - sym_string_start, - anon_sym_COMMA, + [85850] = 16, + ACTIONS(1895), 1, anon_sym_LPAREN, + ACTIONS(1897), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1903), 1, anon_sym_STAR_STAR, + ACTIONS(1905), 1, anon_sym_QMARK_DOT, + ACTIONS(1915), 1, + anon_sym_AMP, + ACTIONS(1917), 1, + anon_sym_CARET, + ACTIONS(1925), 1, + anon_sym_QMARK_LBRACK, + STATE(1120), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1909), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1911), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1919), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1398), 12, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PIPE, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1503), 24, + ACTIONS(1396), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -95349,19 +95745,92 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85881] = 5, + [85935] = 22, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1895), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1903), 1, + anon_sym_STAR_STAR, ACTIONS(1905), 1, + anon_sym_QMARK_DOT, + ACTIONS(1913), 1, + anon_sym_PIPE, + ACTIONS(1915), 1, + anon_sym_AMP, + ACTIONS(1917), 1, + anon_sym_CARET, + ACTIONS(1925), 1, + anon_sym_QMARK_LBRACK, + STATE(1120), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1909), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1911), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1919), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1351), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1373), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1345), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1341), 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, + [86032] = 4, + STATE(1063), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 23, + ACTIONS(1432), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95382,7 +95851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1387), 24, + ACTIONS(1434), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95391,6 +95860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -95407,38 +95877,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [85944] = 8, - ACTIONS(1901), 1, - anon_sym_and, + [86093] = 10, + ACTIONS(1895), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1903), 1, + anon_sym_STAR_STAR, ACTIONS(1905), 1, - anon_sym_PLUS, + anon_sym_QMARK_DOT, + ACTIONS(1925), 1, + anon_sym_QMARK_LBRACK, + STATE(1120), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1387), 12, + ACTIONS(1544), 20, sym_string_start, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1580), 12, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -95446,41 +95910,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(1389), 16, + sym_float, + ACTIONS(1542), 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, - [86013] = 5, - ACTIONS(1905), 1, - anon_sym_PLUS, + [86166] = 4, + STATE(1054), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1383), 23, + ACTIONS(1327), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95501,7 +95971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1381), 24, + ACTIONS(1329), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95510,6 +95980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -95526,25 +95997,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86076] = 10, - ACTIONS(1887), 1, + [86227] = 10, + ACTIONS(1895), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_STAR_STAR, - ACTIONS(1893), 1, + ACTIONS(1905), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, + ACTIONS(1925), 1, anon_sym_QMARK_LBRACK, - STATE(1118), 1, + STATE(1120), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1369), 20, + ACTIONS(1398), 20, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, @@ -95565,8 +96036,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1367), 23, + ACTIONS(1396), 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, + [86300] = 6, + ACTIONS(1942), 1, anon_sym_DOT, + ACTIONS(1945), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1044), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1468), 22, anon_sym_as, anon_sym_if, anon_sym_lambda, @@ -95589,89 +96094,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86149] = 22, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - ACTIONS(1887), 1, + ACTIONS(1473), 24, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(1893), 1, - anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1919), 1, - anon_sym_AMP, - ACTIONS(1933), 1, - anon_sym_PIPE, - STATE(1118), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1909), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1911), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1913), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1915), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1253), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1532), 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(1534), 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, - [86246] = 4, + [86365] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1483), 23, + ACTIONS(1436), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95695,7 +96150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1481), 25, + ACTIONS(1438), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95721,29 +96176,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86307] = 10, - ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_STAR_STAR, - ACTIONS(1893), 1, + [86426] = 6, + ACTIONS(1948), 1, + anon_sym_DOT, + ACTIONS(1951), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, - STATE(1118), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + STATE(1046), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 20, + ACTIONS(1478), 23, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1483), 24, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -95759,8 +96233,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(1544), 23, + [86491] = 5, + ACTIONS(1954), 1, + anon_sym_EQ, + STATE(1063), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1488), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95784,13 +96267,39 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86380] = 4, - STATE(1023), 1, + ACTIONS(1490), 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, + [86554] = 4, + STATE(1063), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1431), 24, + ACTIONS(1440), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95815,7 +96324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1429), 25, + ACTIONS(1442), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95841,62 +96350,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86441] = 22, - ACTIONS(1526), 1, + [86615] = 22, + ACTIONS(1359), 1, anon_sym_not, - ACTIONS(1530), 1, + ACTIONS(1375), 1, anon_sym_is, - ACTIONS(1887), 1, + ACTIONS(1895), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_STAR_STAR, - ACTIONS(1893), 1, + ACTIONS(1905), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, + ACTIONS(1913), 1, + anon_sym_PIPE, + ACTIONS(1915), 1, + anon_sym_AMP, ACTIONS(1917), 1, anon_sym_CARET, - ACTIONS(1919), 1, - anon_sym_AMP, - ACTIONS(1933), 1, - anon_sym_PIPE, - STATE(1118), 1, + ACTIONS(1925), 1, + anon_sym_QMARK_LBRACK, + STATE(1120), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1911), 2, + ACTIONS(1909), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1913), 2, + ACTIONS(1911), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1915), 2, + ACTIONS(1919), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1524), 3, + ACTIONS(1351), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1528), 4, + ACTIONS(1373), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1253), 5, + ACTIONS(1343), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(1520), 7, + ACTIONS(1381), 7, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, @@ -95904,7 +96413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(1522), 11, + ACTIONS(1379), 11, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -95916,39 +96425,88 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86538] = 13, - ACTIONS(1887), 1, + [86712] = 10, + ACTIONS(1895), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_STAR_STAR, - ACTIONS(1893), 1, + ACTIONS(1905), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, + ACTIONS(1925), 1, anon_sym_QMARK_LBRACK, - STATE(1118), 1, + STATE(1120), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1911), 2, + ACTIONS(1398), 20, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1913), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1542), 16, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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(1396), 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, + [86785] = 4, + ACTIONS(1956), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1412), 24, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -95959,20 +96517,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(1544), 21, + ACTIONS(1410), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -95982,15 +96545,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86617] = 4, + [86846] = 9, + ACTIONS(1012), 1, + anon_sym_DOT, + ACTIONS(1315), 1, + anon_sym_QMARK_DOT, + ACTIONS(1931), 1, + anon_sym_and, + ACTIONS(1933), 1, + anon_sym_or, + ACTIONS(1935), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1483), 23, - anon_sym_DOT, + ACTIONS(1548), 20, anon_sym_as, anon_sym_if, anon_sym_lambda, @@ -96001,8 +96573,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, @@ -96013,7 +96583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1481), 25, + ACTIONS(1550), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96021,8 +96591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -96039,41 +96607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86678] = 6, - ACTIONS(1901), 1, - anon_sym_and, - ACTIONS(1905), 1, - anon_sym_PLUS, + [86917] = 4, + ACTIONS(1958), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 22, - 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_or, - 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(1387), 24, + ACTIONS(1337), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96082,8 +96622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -96098,20 +96638,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86743] = 6, - ACTIONS(1946), 1, + ACTIONS(1335), 25, anon_sym_DOT, - ACTIONS(1949), 1, - anon_sym_QMARK_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [86978] = 4, + STATE(1046), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1049), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1469), 22, + ACTIONS(1323), 24, + anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96132,7 +96695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1474), 24, + ACTIONS(1325), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96140,6 +96703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -96157,150 +96721,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86808] = 22, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - ACTIONS(1887), 1, + [87039] = 15, + ACTIONS(1895), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_STAR_STAR, - ACTIONS(1893), 1, + ACTIONS(1905), 1, anon_sym_QMARK_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK_LBRACK, ACTIONS(1917), 1, anon_sym_CARET, - ACTIONS(1919), 1, - anon_sym_AMP, - ACTIONS(1933), 1, - anon_sym_PIPE, - STATE(1118), 1, + ACTIONS(1925), 1, + anon_sym_QMARK_LBRACK, + STATE(1120), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1911), 2, + ACTIONS(1909), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1913), 2, + ACTIONS(1911), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1915), 2, + ACTIONS(1919), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1524), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1253), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1560), 7, + ACTIONS(1398), 13, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(1562), 11, + ACTIONS(1396), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [86905] = 5, - STATE(1051), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1952), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1433), 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(1438), 32, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_LBRACK, - [86968] = 4, - STATE(1055), 1, - aux_sym_dotted_name_repeat1, + [87122] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 24, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96321,7 +96820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1595), 25, + ACTIONS(1446), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96347,76 +96846,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87029] = 9, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(1323), 1, - anon_sym_QMARK_DOT, - ACTIONS(1901), 1, - anon_sym_and, + [87183] = 21, + ACTIONS(1895), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + anon_sym_LBRACK, ACTIONS(1903), 1, - anon_sym_or, + anon_sym_STAR_STAR, ACTIONS(1905), 1, - anon_sym_PLUS, + anon_sym_QMARK_DOT, + ACTIONS(1907), 1, + anon_sym_not, + ACTIONS(1913), 1, + anon_sym_PIPE, + ACTIONS(1915), 1, + anon_sym_AMP, + ACTIONS(1917), 1, + anon_sym_CARET, + ACTIONS(1923), 1, + anon_sym_is, + ACTIONS(1925), 1, + anon_sym_QMARK_LBRACK, + STATE(1120), 1, + sym_argument_list, + STATE(1200), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1461), 20, + ACTIONS(1901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1909), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1911), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1919), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1899), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1921), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1343), 16, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_not, - 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(1463), 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, - [87100] = 4, + [87278] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1049), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1351), 23, + ACTIONS(1458), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96440,7 +96951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1353), 25, + ACTIONS(1460), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96466,13 +96977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87161] = 4, - STATE(1020), 1, - aux_sym_dotted_name_repeat1, + [87339] = 5, + ACTIONS(1960), 1, + anon_sym_PIPE, + STATE(1059), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 24, + ACTIONS(1383), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96497,7 +97010,63 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1589), 25, + ACTIONS(1385), 24, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [87402] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 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(1446), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96523,11 +97092,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87222] = 3, + [87463] = 22, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1895), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1903), 1, + anon_sym_STAR_STAR, + ACTIONS(1905), 1, + anon_sym_QMARK_DOT, + ACTIONS(1913), 1, + anon_sym_PIPE, + ACTIONS(1915), 1, + anon_sym_AMP, + ACTIONS(1917), 1, + anon_sym_CARET, + ACTIONS(1925), 1, + anon_sym_QMARK_LBRACK, + STATE(1120), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1901), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1909), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1911), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1919), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1351), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1373), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1406), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1404), 11, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [87560] = 4, + STATE(1063), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 24, + ACTIONS(1335), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96552,7 +97198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1651), 25, + ACTIONS(1337), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96578,11 +97224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87280] = 3, + [87621] = 4, + STATE(1059), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 24, + ACTIONS(1496), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96607,7 +97255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1619), 25, + ACTIONS(1498), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96633,11 +97281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87338] = 3, + [87682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 24, + ACTIONS(1657), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96662,7 +97310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1647), 25, + ACTIONS(1659), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96688,15 +97336,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87396] = 3, + [87740] = 8, + ACTIONS(1966), 1, + anon_sym_not, + ACTIONS(1972), 1, + anon_sym_is, + STATE(1065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 24, + ACTIONS(1963), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1969), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 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(1625), 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, + [87808] = 4, + STATE(1201), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96717,7 +97426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1615), 25, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96743,11 +97452,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87454] = 3, + [87868] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1478), 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(1483), 34, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_LBRACK, + [87926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 24, + ACTIONS(1478), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96772,7 +97536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1603), 25, + ACTIONS(1483), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96798,11 +97562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87512] = 3, + [87984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 24, + ACTIONS(1685), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96827,7 +97591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1641), 25, + ACTIONS(1687), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96853,15 +97617,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87570] = 3, + [88042] = 4, + STATE(1084), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 24, + ACTIONS(1643), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96882,7 +97647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1611), 25, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96908,16 +97673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87628] = 4, - STATE(1113), 1, - sym_dictionary, + [88102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 23, + ACTIONS(1607), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96938,7 +97702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1605), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96964,13 +97728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87688] = 4, - STATE(1078), 1, - aux_sym_comparison_operator_repeat1, + [88160] = 4, + ACTIONS(1954), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 23, + ACTIONS(1488), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96994,7 +97758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1629), 25, + ACTIONS(1490), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97020,15 +97784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87748] = 3, + [88220] = 4, + STATE(1063), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 24, + ACTIONS(1623), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97049,7 +97814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1623), 25, + ACTIONS(1621), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97075,11 +97840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87806] = 3, + [88280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 24, + ACTIONS(1681), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97104,7 +97869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1605), 25, + ACTIONS(1683), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97130,16 +97895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87864] = 4, - STATE(1078), 1, - aux_sym_comparison_operator_repeat1, + [88338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 23, + ACTIONS(1677), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97160,7 +97924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1629), 25, + ACTIONS(1679), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97186,16 +97950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87924] = 4, - STATE(2256), 1, - aux_sym_comparison_operator_repeat1, + [88396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 23, + ACTIONS(1673), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97216,7 +97979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1675), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97242,11 +98005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87984] = 3, + [88454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 24, + ACTIONS(1669), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97271,7 +98034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1625), 25, + ACTIONS(1671), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97297,13 +98060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88042] = 4, - STATE(1202), 1, + [88512] = 4, + STATE(2267), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 23, + ACTIONS(1643), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97327,7 +98090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97353,11 +98116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88102] = 3, + [88572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 24, + ACTIONS(1665), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97382,7 +98145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1637), 25, + ACTIONS(1667), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97408,16 +98171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88160] = 4, - ACTIONS(1939), 1, - anon_sym_EQ, + [88630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 23, + ACTIONS(1661), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97438,7 +98200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1399), 25, + ACTIONS(1663), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97464,16 +98226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88220] = 4, - STATE(1023), 1, - aux_sym_union_type_repeat1, + [88688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 23, + ACTIONS(1619), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97494,7 +98255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1635), 25, + ACTIONS(1617), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97520,13 +98281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88280] = 4, - STATE(1078), 1, - aux_sym_comparison_operator_repeat1, + [88746] = 4, + STATE(1117), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 23, + ACTIONS(1643), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97550,7 +98311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1629), 25, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97576,15 +98337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88340] = 3, + [88806] = 4, + STATE(1065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1433), 24, + ACTIONS(1609), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97605,7 +98367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1438), 25, + ACTIONS(1611), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97631,13 +98393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88398] = 4, - STATE(1078), 1, + [88866] = 4, + STATE(1065), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 23, + ACTIONS(1609), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97661,7 +98423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1629), 25, + ACTIONS(1611), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97687,17 +98449,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88458] = 3, + [88926] = 4, + STATE(1065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1433), 15, - anon_sym_EQ, + ACTIONS(1609), 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(1611), 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, @@ -97705,82 +98498,153 @@ 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(1438), 34, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [88986] = 4, + STATE(1065), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 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(1611), 25, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_QMARK_LBRACK, - [88516] = 8, - ACTIONS(1958), 1, - anon_sym_not, - ACTIONS(1964), 1, - anon_sym_is, - STATE(1078), 1, - aux_sym_comparison_operator_repeat1, + sym_float, + [89046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1955), 3, + ACTIONS(1615), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1961), 4, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1613), 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, - ACTIONS(1653), 18, + anon_sym_QMARK_LBRACK, + sym_float, + [89104] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 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(1655), 21, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97800,15 +98664,75 @@ 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, - [88584] = 4, - STATE(1076), 1, + [89161] = 7, + ACTIONS(1530), 1, + anon_sym_is, + STATE(878), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 23, + ACTIONS(1506), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1528), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1609), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [89226] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1797), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97832,7 +98756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1799), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97858,11 +98782,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88644] = 3, + [89283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 23, + ACTIONS(1829), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97886,7 +98810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1737), 25, + ACTIONS(1831), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97912,11 +98836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88701] = 3, + [89340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 23, + ACTIONS(1865), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97940,7 +98864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1819), 25, + ACTIONS(1867), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97966,11 +98890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88758] = 3, + [89397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 23, + ACTIONS(1869), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97994,7 +98918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1783), 25, + ACTIONS(1871), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98020,11 +98944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88815] = 3, + [89454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 23, + ACTIONS(1825), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98048,7 +98972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1779), 25, + ACTIONS(1827), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98074,24 +98998,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88872] = 5, - ACTIONS(1967), 1, - anon_sym_in, - ACTIONS(1969), 1, - anon_sym_not, + [89511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 21, + ACTIONS(1873), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -98104,7 +99026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1875), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98130,11 +99052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88933] = 3, + [89568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 23, + ACTIONS(1877), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98158,7 +99080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1771), 25, + ACTIONS(1879), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98184,11 +99106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88990] = 3, + [89625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 23, + ACTIONS(1821), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98212,7 +99134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1757), 25, + ACTIONS(1823), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98238,11 +99160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89047] = 3, + [89682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 23, + ACTIONS(1855), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98266,7 +99188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1723), 25, + ACTIONS(1853), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98292,11 +99214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89104] = 3, + [89739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 23, + ACTIONS(1817), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98320,7 +99242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1763), 25, + ACTIONS(1819), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98346,11 +99268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89161] = 3, + [89796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 23, + ACTIONS(1695), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98374,7 +99296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1749), 25, + ACTIONS(1693), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98400,11 +99322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89218] = 3, + [89853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 23, + ACTIONS(1851), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98428,7 +99350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1745), 25, + ACTIONS(1849), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98454,11 +99376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89275] = 3, + [89910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 23, + ACTIONS(1833), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98482,7 +99404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1741), 25, + ACTIONS(1835), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98508,24 +99430,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89332] = 7, - ACTIONS(1423), 1, + [89967] = 7, + ACTIONS(1456), 1, anon_sym_is, - STATE(892), 1, + STATE(880), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 3, + ACTIONS(1450), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 4, + ACTIONS(1454), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 13, + ACTIONS(1611), 13, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -98539,7 +99461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1631), 26, + ACTIONS(1609), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -98566,11 +99488,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [89397] = 3, + [90032] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 23, + ACTIONS(1857), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98594,7 +99516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1733), 25, + ACTIONS(1859), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98620,119 +99542,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89454] = 3, + [90089] = 7, + ACTIONS(1456), 1, + anon_sym_is, + STATE(880), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + ACTIONS(1450), 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(1693), 25, + ACTIONS(1454), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 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, - [89511] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1691), 23, + ACTIONS(1609), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1689), 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, - [89568] = 3, + [90154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 23, + ACTIONS(1845), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98756,7 +99628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1833), 25, + ACTIONS(1847), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98782,22 +99654,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89625] = 3, + [90211] = 5, + ACTIONS(1975), 1, + anon_sym_in, + ACTIONS(1977), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 23, + ACTIONS(1643), 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, @@ -98810,7 +99684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1867), 25, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98836,119 +99710,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89682] = 3, + [90272] = 7, + ACTIONS(1456), 1, + anon_sym_is, + STATE(880), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 23, + ACTIONS(1450), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1454), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 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(1609), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1791), 25, + [90337] = 7, + ACTIONS(1456), 1, + anon_sym_is, + STATE(880), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1450), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1454), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 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, - [89739] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1767), 23, + ACTIONS(1609), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1765), 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, - [89796] = 3, + [90402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 23, + ACTIONS(1839), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98972,7 +99854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1729), 25, + ACTIONS(1837), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98998,11 +99880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89853] = 3, + [90459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 23, + ACTIONS(1815), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99026,7 +99908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1829), 25, + ACTIONS(1813), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99052,11 +99934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89910] = 3, + [90516] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 23, + ACTIONS(1807), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99080,7 +99962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1811), 25, + ACTIONS(1805), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99106,11 +99988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89967] = 3, + [90573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 23, + ACTIONS(1803), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99134,7 +100016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1815), 25, + ACTIONS(1801), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99160,69 +100042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90024] = 7, - ACTIONS(1283), 1, - anon_sym_is, - STATE(900), 1, - aux_sym_comparison_operator_repeat1, + [90630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1631), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [90089] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1813), 23, + ACTIONS(1699), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99246,7 +100070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1815), 25, + ACTIONS(1697), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99272,65 +100096,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90146] = 3, + [90687] = 7, + ACTIONS(1530), 1, + anon_sym_is, + STATE(878), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 23, + ACTIONS(1506), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1528), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1609), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1825), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [90203] = 3, + [90752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 23, + ACTIONS(1841), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99354,7 +100182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1805), 25, + ACTIONS(1843), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99380,11 +100208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90260] = 3, + [90809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 23, + ACTIONS(1787), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99408,7 +100236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1785), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99434,80 +100262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90317] = 7, - ACTIONS(1423), 1, - anon_sym_is, - STATE(892), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1403), 3, + [90866] = 5, + ACTIONS(1773), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 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(1631), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(1775), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [90382] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 23, + ACTIONS(1643), 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, @@ -99520,7 +100292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1753), 25, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99546,11 +100318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90439] = 3, + [90927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 23, + ACTIONS(1707), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99574,7 +100346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1801), 25, + ACTIONS(1705), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99600,11 +100372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90496] = 3, + [90984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 23, + ACTIONS(1779), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99628,7 +100400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1841), 25, + ACTIONS(1777), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99654,11 +100426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90553] = 3, + [91041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 23, + ACTIONS(1343), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99682,7 +100454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1703), 25, + ACTIONS(1448), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99708,11 +100480,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90610] = 3, + [91098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 23, + ACTIONS(1711), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99736,7 +100508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1871), 25, + ACTIONS(1709), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99762,11 +100534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90667] = 3, + [91155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 23, + ACTIONS(1643), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99790,7 +100562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1823), 25, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99816,80 +100588,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90724] = 5, - ACTIONS(1967), 1, - anon_sym_in, - ACTIONS(1971), 1, - anon_sym_not, + [91212] = 7, + ACTIONS(1530), 1, + anon_sym_is, + STATE(878), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 21, + ACTIONS(1506), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1528), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1609), 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_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_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, - [90785] = 5, - ACTIONS(1785), 1, - anon_sym_in, - ACTIONS(1787), 1, - anon_sym_not, + [91277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 21, + ACTIONS(1689), 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, @@ -99902,7 +100674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1691), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99928,11 +100700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90846] = 3, + [91334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 23, + ACTIONS(1715), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99956,7 +100728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1699), 25, + ACTIONS(1713), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99982,11 +100754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90903] = 3, + [91391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 23, + ACTIONS(1861), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100010,7 +100782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1719), 25, + ACTIONS(1863), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100036,22 +100808,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90960] = 3, + [91448] = 5, + ACTIONS(1975), 1, + anon_sym_in, + ACTIONS(1979), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 23, + ACTIONS(1643), 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, @@ -100064,7 +100838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1683), 25, + ACTIONS(1641), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100090,11 +100864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91017] = 3, + [91509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 23, + ACTIONS(1771), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100118,7 +100892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1687), 25, + ACTIONS(1769), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100144,140 +100918,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91074] = 7, - ACTIONS(1283), 1, - anon_sym_is, - STATE(900), 1, - aux_sym_comparison_operator_repeat1, + [91566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1631), 26, - anon_sym_import, + ACTIONS(1719), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [91139] = 7, - ACTIONS(1283), 1, - anon_sym_is, - STATE(900), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1259), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 13, + ACTIONS(1717), 25, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1631), 26, - anon_sym_import, + [91623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1719), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [91204] = 7, - ACTIONS(1283), 1, + ACTIONS(1717), 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, + [91680] = 7, + ACTIONS(1530), 1, anon_sym_is, - STATE(900), 1, + STATE(878), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 3, + ACTIONS(1506), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1281), 4, + ACTIONS(1528), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 13, + ACTIONS(1611), 13, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -100291,7 +101057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1631), 26, + ACTIONS(1609), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -100318,11 +101084,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [91269] = 3, + [91745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 23, + ACTIONS(1723), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100346,7 +101112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1797), 25, + ACTIONS(1721), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100372,11 +101138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91326] = 3, + [91802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 23, + ACTIONS(1767), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100400,7 +101166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1783), 25, + ACTIONS(1765), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100426,69 +101192,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91383] = 7, - ACTIONS(1423), 1, - anon_sym_is, - STATE(892), 1, - aux_sym_comparison_operator_repeat1, + [91859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 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(1631), 26, - anon_sym_import, + ACTIONS(1763), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [91448] = 3, + ACTIONS(1761), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [91916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 23, + ACTIONS(1759), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100512,7 +101274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1715), 25, + ACTIONS(1757), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100538,11 +101300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91505] = 3, + [91973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 23, + ACTIONS(1755), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100566,7 +101328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1707), 25, + ACTIONS(1753), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100592,11 +101354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91562] = 3, + [92030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 23, + ACTIONS(1789), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100620,7 +101382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1709), 25, + ACTIONS(1791), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100646,69 +101408,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91619] = 7, - ACTIONS(1423), 1, - anon_sym_is, - STATE(892), 1, - aux_sym_comparison_operator_repeat1, + [92087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1403), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 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(1631), 26, - anon_sym_import, + ACTIONS(1793), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [91684] = 3, + ACTIONS(1795), 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, + [92144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 23, + ACTIONS(1751), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100732,7 +101490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1727), 25, + ACTIONS(1749), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100758,11 +101516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91741] = 3, + [92201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 23, + ACTIONS(1727), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100786,7 +101544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1839), 25, + ACTIONS(1725), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100812,11 +101570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91798] = 3, + [92258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 23, + ACTIONS(1731), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100840,7 +101598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1847), 25, + ACTIONS(1729), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100866,11 +101624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91855] = 3, + [92315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 23, + ACTIONS(1731), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100894,7 +101652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1851), 25, + ACTIONS(1729), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100920,11 +101678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91912] = 3, + [92372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 23, + ACTIONS(1735), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100948,7 +101706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1683), 25, + ACTIONS(1733), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100974,11 +101732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91969] = 3, + [92429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 23, + ACTIONS(1797), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101002,7 +101760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1859), 25, + ACTIONS(1799), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101028,11 +101786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92026] = 3, + [92486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 23, + ACTIONS(1809), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101056,7 +101814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1773), 25, + ACTIONS(1811), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101082,11 +101840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92083] = 3, + [92543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 23, + ACTIONS(1739), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101110,7 +101868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1737), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101136,11 +101894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92140] = 3, + [92600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1253), 23, + ACTIONS(1747), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101164,7 +101922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1251), 25, + ACTIONS(1745), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101190,11 +101948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92197] = 3, + [92657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 23, + ACTIONS(1743), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101218,7 +101976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1863), 25, + ACTIONS(1741), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101244,23 +102002,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92254] = 9, - ACTIONS(1973), 1, + [92714] = 9, + ACTIONS(1981), 1, anon_sym_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1983), 1, sym_isMutableFlag, - ACTIONS(1977), 1, + ACTIONS(1985), 1, anon_sym_QMARK_COLON, - STATE(1405), 1, + STATE(1281), 1, + aux_sym_comparison_operator_repeat1, + STATE(1384), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - STATE(2152), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(750), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101299,23 +102057,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [92318] = 9, - ACTIONS(1973), 1, + [92778] = 9, + ACTIONS(1981), 1, anon_sym_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1983), 1, sym_isMutableFlag, - ACTIONS(1977), 1, + ACTIONS(1985), 1, anon_sym_QMARK_COLON, - STATE(1405), 1, + STATE(1384), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - STATE(2258), 1, + STATE(2272), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(750), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101354,23 +102112,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [92382] = 9, - ACTIONS(1973), 1, + [92842] = 9, + ACTIONS(1981), 1, anon_sym_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1983), 1, sym_isMutableFlag, - ACTIONS(1977), 1, + ACTIONS(1985), 1, anon_sym_QMARK_COLON, - STATE(1311), 1, - aux_sym_comparison_operator_repeat1, - STATE(1405), 1, + STATE(1384), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, + STATE(2151), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(750), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101409,18 +102167,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [92446] = 5, - ACTIONS(1979), 1, + [92906] = 9, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + sym_isMutableFlag, + ACTIONS(1991), 1, + anon_sym_QMARK_COLON, + STATE(1294), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2272), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(750), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(748), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [92968] = 5, + ACTIONS(1993), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, + STATE(605), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 12, + ACTIONS(1430), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -101431,7 +102242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1389), 26, + ACTIONS(1428), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -101458,23 +102269,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [92500] = 9, - ACTIONS(1981), 1, + [93022] = 9, + ACTIONS(1987), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1989), 1, sym_isMutableFlag, - ACTIONS(1985), 1, + ACTIONS(1991), 1, anon_sym_QMARK_COLON, - STATE(1262), 1, + STATE(1294), 1, sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2258), 1, + STATE(1480), 1, aux_sym_comparison_operator_repeat1, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(750), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101511,28 +102322,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [92562] = 11, - ACTIONS(912), 1, + [93084] = 9, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(1243), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1979), 1, + ACTIONS(1995), 1, + anon_sym_and, + ACTIONS(1997), 1, + anon_sym_or, + ACTIONS(1999), 1, anon_sym_PLUS, - ACTIONS(1987), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1550), 11, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1548), 23, + anon_sym_import, anon_sym_as, - ACTIONS(1989), 1, + anon_sym_assert, anon_sym_if, - ACTIONS(1991), 1, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93146] = 5, + ACTIONS(1999), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(792), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1289), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, anon_sym_and, - ACTIONS(1993), 1, anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93200] = 11, + ACTIONS(904), 1, + anon_sym_DOT, + ACTIONS(1251), 1, + anon_sym_QMARK_DOT, + ACTIONS(1995), 1, + anon_sym_and, + ACTIONS(1997), 1, + anon_sym_or, + ACTIONS(1999), 1, + anon_sym_PLUS, + ACTIONS(2001), 1, + anon_sym_as, + ACTIONS(2003), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, + STATE(792), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1455), 11, + ACTIONS(1567), 11, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -101544,7 +102457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1449), 21, + ACTIONS(1569), 21, anon_sym_import, anon_sym_assert, anon_sym_else, @@ -101566,18 +102479,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [92628] = 5, - ACTIONS(1995), 1, + [93266] = 9, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + sym_isMutableFlag, + ACTIONS(1991), 1, + anon_sym_QMARK_COLON, + STATE(1294), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2227), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(750), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(748), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [93328] = 5, + ACTIONS(1999), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(792), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 12, - sym__dedent, + ACTIONS(1422), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -101588,7 +102554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1389), 26, + ACTIONS(1424), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -101615,24 +102581,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [92682] = 9, - ACTIONS(994), 1, + [93382] = 11, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(1229), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1995), 1, + ACTIONS(1993), 1, anon_sym_PLUS, - ACTIONS(1997), 1, + ACTIONS(2005), 1, + anon_sym_as, + ACTIONS(2007), 1, + anon_sym_if, + ACTIONS(2009), 1, anon_sym_and, - ACTIONS(1999), 1, + ACTIONS(2011), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(605), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 11, + ACTIONS(1567), 11, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -101644,8 +102614,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1461), 23, + ACTIONS(1569), 21, anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93448] = 5, + ACTIONS(1993), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 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(1289), 26, + anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -101662,22 +102677,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [92744] = 5, - ACTIONS(1979), 1, + [93502] = 5, + ACTIONS(1999), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, + STATE(792), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 12, + ACTIONS(1430), 12, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -101690,7 +102707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1383), 26, + ACTIONS(1428), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -101717,16 +102734,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [92798] = 5, - ACTIONS(1995), 1, + [93556] = 5, + ACTIONS(1993), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(605), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1391), 12, + ACTIONS(1422), 12, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -101739,7 +102756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1393), 26, + ACTIONS(1424), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -101766,45 +102783,97 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [92852] = 9, - ACTIONS(1981), 1, + [93610] = 9, + ACTIONS(1086), 1, + anon_sym_DOT, + ACTIONS(1237), 1, + anon_sym_QMARK_DOT, + ACTIONS(1993), 1, + anon_sym_PLUS, + ACTIONS(2009), 1, + anon_sym_and, + ACTIONS(2011), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1550), 11, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1983), 1, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1548), 23, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [93672] = 9, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, sym_isMutableFlag, - ACTIONS(1985), 1, + ACTIONS(2017), 1, anon_sym_QMARK_COLON, - STATE(1262), 1, + STATE(1712), 1, sym_dict_expr, - STATE(1482), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, + STATE(2234), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, - anon_sym_EQ, + ACTIONS(750), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, + ACTIONS(748), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -101819,80 +102888,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [92914] = 5, - ACTIONS(1995), 1, - anon_sym_PLUS, + [93733] = 10, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, + sym_isMutableFlag, + ACTIONS(2017), 1, + anon_sym_QMARK_COLON, + ACTIONS(2019), 1, + anon_sym_COLON, + STATE(1712), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2234), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1381), 12, - sym__dedent, - sym_string_start, + ACTIONS(750), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(748), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1383), 26, - anon_sym_import, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [93796] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1436), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1438), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [92968] = 11, - ACTIONS(994), 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, + anon_sym_QMARK_LBRACK, + [93847] = 11, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(1229), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, ACTIONS(1995), 1, - anon_sym_PLUS, - ACTIONS(1997), 1, anon_sym_and, - ACTIONS(1999), 1, + ACTIONS(1997), 1, anon_sym_or, + ACTIONS(1999), 1, + anon_sym_PLUS, ACTIONS(2001), 1, anon_sym_as, - ACTIONS(2003), 1, - anon_sym_if, + ACTIONS(2025), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(792), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1455), 11, - sym__dedent, + ACTIONS(2021), 10, sym_string_start, - anon_sym_COMMA, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -101901,10 +103020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1449), 21, + ACTIONS(2023), 21, anon_sym_import, anon_sym_assert, - anon_sym_else, + anon_sym_if, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -101923,86 +103042,84 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [93034] = 5, - ACTIONS(1979), 1, - anon_sym_PLUS, + [93912] = 9, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, + sym_isMutableFlag, + ACTIONS(2017), 1, + anon_sym_QMARK_COLON, + STATE(1581), 1, + aux_sym_comparison_operator_repeat1, + STATE(1712), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1391), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(750), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(748), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1393), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [93088] = 9, - ACTIONS(1981), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - sym_isMutableFlag, - ACTIONS(1985), 1, - anon_sym_QMARK_COLON, - STATE(1262), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, - aux_sym_comparison_operator_repeat1, + 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, + [93973] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1458), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, + ACTIONS(1460), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -102011,7 +103128,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, @@ -102025,27 +103141,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93150] = 9, - ACTIONS(912), 1, + [94024] = 11, + ACTIONS(904), 1, anon_sym_DOT, - ACTIONS(1243), 1, + ACTIONS(1251), 1, anon_sym_QMARK_DOT, - ACTIONS(1979), 1, - anon_sym_PLUS, - ACTIONS(1991), 1, + ACTIONS(1995), 1, anon_sym_and, - ACTIONS(1993), 1, + ACTIONS(1997), 1, anon_sym_or, + ACTIONS(1999), 1, + anon_sym_PLUS, + ACTIONS(2001), 1, + anon_sym_as, + ACTIONS(2031), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, + STATE(792), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 11, + ACTIONS(2027), 10, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -102054,12 +103173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1461), 23, + ACTIONS(2029), 21, anon_sym_import, - anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -102078,28 +103195,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [93212] = 11, - ACTIONS(994), 1, + [94089] = 11, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(1229), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1995), 1, + ACTIONS(1993), 1, anon_sym_PLUS, - ACTIONS(1997), 1, + ACTIONS(2005), 1, + anon_sym_as, + ACTIONS(2009), 1, anon_sym_and, - ACTIONS(1999), 1, + ACTIONS(2011), 1, anon_sym_or, - ACTIONS(2001), 1, - anon_sym_as, - ACTIONS(2007), 1, - anon_sym_else, + ACTIONS(2033), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(605), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2009), 10, + ACTIONS(2027), 10, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -102110,7 +103227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2005), 21, + ACTIONS(2029), 21, anon_sym_import, anon_sym_assert, anon_sym_if, @@ -102132,34 +103249,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [93277] = 10, - ACTIONS(2011), 1, - anon_sym_COLON, + [94154] = 9, ACTIONS(2013), 1, anon_sym_LBRACE, ACTIONS(2015), 1, sym_isMutableFlag, ACTIONS(2017), 1, anon_sym_QMARK_COLON, - STATE(1656), 1, + STATE(1712), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - STATE(2221), 1, + STATE(2272), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(750), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, + ACTIONS(748), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -102185,99 +103301,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93340] = 11, - ACTIONS(994), 1, - anon_sym_DOT, - ACTIONS(1229), 1, - anon_sym_QMARK_DOT, - ACTIONS(1995), 1, - anon_sym_PLUS, - ACTIONS(1997), 1, - anon_sym_and, - ACTIONS(1999), 1, - anon_sym_or, - ACTIONS(2001), 1, - anon_sym_as, - ACTIONS(2021), 1, - anon_sym_COMMA, + [94215] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + STATE(1180), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2023), 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(2019), 21, - anon_sym_import, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [93405] = 9, - ACTIONS(2013), 1, - anon_sym_LBRACE, - ACTIONS(2015), 1, - sym_isMutableFlag, - ACTIONS(2017), 1, - anon_sym_QMARK_COLON, - STATE(1656), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2221), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1534), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 30, + ACTIONS(1536), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -102291,14 +103348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93466] = 4, + [94266] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1483), 7, + ACTIONS(1444), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -102306,7 +103363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 31, + ACTIONS(1446), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102338,23 +103395,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93517] = 9, - ACTIONS(1973), 1, + [94317] = 9, + ACTIONS(1981), 1, anon_sym_LBRACE, - ACTIONS(1975), 1, + ACTIONS(1983), 1, sym_isMutableFlag, - ACTIONS(1977), 1, + ACTIONS(1985), 1, anon_sym_QMARK_COLON, - STATE(1405), 1, + STATE(1384), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - STATE(2152), 1, + STATE(2151), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(750), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -102390,14 +103447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93578] = 4, + [94378] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1483), 7, + ACTIONS(1444), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -102405,7 +103462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 31, + ACTIONS(1446), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102437,25 +103494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93629] = 10, + [94429] = 10, ACTIONS(2013), 1, anon_sym_LBRACE, ACTIONS(2015), 1, sym_isMutableFlag, ACTIONS(2017), 1, anon_sym_QMARK_COLON, - ACTIONS(2025), 1, + ACTIONS(2035), 1, anon_sym_COLON, - STATE(1656), 1, + STATE(1712), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - STATE(2221), 1, + STATE(2234), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(750), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -102490,14 +103547,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93692] = 4, + [94492] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + ACTIONS(2037), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1180), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1445), 7, + ACTIONS(1468), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -102505,8 +103565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 31, - anon_sym_DOT, + ACTIONS(1473), 29, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -102518,7 +103577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -102537,30 +103595,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93743] = 11, - ACTIONS(912), 1, + [94545] = 11, + ACTIONS(1086), 1, anon_sym_DOT, - ACTIONS(1243), 1, + ACTIONS(1237), 1, anon_sym_QMARK_DOT, - ACTIONS(1979), 1, + ACTIONS(1993), 1, anon_sym_PLUS, - ACTIONS(1987), 1, + ACTIONS(2005), 1, anon_sym_as, - ACTIONS(1991), 1, + ACTIONS(2009), 1, anon_sym_and, - ACTIONS(1993), 1, + ACTIONS(2011), 1, anon_sym_or, - ACTIONS(2027), 1, - anon_sym_COMMA, + ACTIONS(2025), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, + STATE(605), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2023), 10, + ACTIONS(2021), 10, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -102569,7 +103627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2019), 21, + ACTIONS(2023), 21, anon_sym_import, anon_sym_assert, anon_sym_if, @@ -102591,36 +103649,243 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [93808] = 9, - ACTIONS(2013), 1, + [94610] = 22, + ACTIONS(1343), 1, + anon_sym_EQ, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2042), 1, + anon_sym_LBRACK, + ACTIONS(2048), 1, + anon_sym_STAR_STAR, + ACTIONS(2050), 1, + anon_sym_QMARK_DOT, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2054), 1, + anon_sym_PLUS, + ACTIONS(2056), 1, + anon_sym_DASH, + ACTIONS(2060), 1, + anon_sym_PIPE, + ACTIONS(2062), 1, + anon_sym_AMP, + ACTIONS(2064), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, + sym_argument_list, + STATE(1290), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2046), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2058), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2066), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 11, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [94696] = 5, + ACTIONS(2074), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1428), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1430), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [94748] = 9, + ACTIONS(748), 1, + anon_sym_LF, + ACTIONS(2076), 1, anon_sym_LBRACE, - ACTIONS(2015), 1, + ACTIONS(2078), 1, sym_isMutableFlag, - ACTIONS(2017), 1, + ACTIONS(2080), 1, anon_sym_QMARK_COLON, - STATE(1656), 1, + STATE(1819), 1, + aux_sym_comparison_operator_repeat1, + STATE(1865), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(750), 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, + [94808] = 9, + ACTIONS(1889), 1, + anon_sym_LBRACE, + ACTIONS(1891), 1, + sym_isMutableFlag, + ACTIONS(1893), 1, + anon_sym_QMARK_COLON, + STATE(1942), 1, + sym_dict_expr, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - STATE(2258), 1, + STATE(2272), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(750), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 30, + ACTIONS(748), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [94868] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1436), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1438), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -102628,7 +103893,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [94918] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 6, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1446), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -102643,36 +103954,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93869] = 9, - ACTIONS(2013), 1, + [94968] = 8, + ACTIONS(2086), 1, + anon_sym_elif, + ACTIONS(2088), 1, + anon_sym_else, + STATE(1228), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + STATE(1771), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2082), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(2015), 1, - sym_isMutableFlag, - ACTIONS(2017), 1, - anon_sym_QMARK_COLON, - STATE(1556), 1, - aux_sym_comparison_operator_repeat1, - STATE(1656), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2084), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [95026] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 30, + ACTIONS(1446), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -102680,7 +104035,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, @@ -102695,40 +104050,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93930] = 4, + [95076] = 10, + ACTIONS(2074), 1, + anon_sym_PLUS, + ACTIONS(2090), 1, + anon_sym_as, + ACTIONS(2092), 1, + anon_sym_if, + ACTIONS(2094), 1, + anon_sym_and, + ACTIONS(2096), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1516), 7, + ACTIONS(1569), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1514), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1567), 25, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -102742,40 +104102,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [93981] = 11, - ACTIONS(912), 1, - anon_sym_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK_DOT, - ACTIONS(1979), 1, - anon_sym_PLUS, - ACTIONS(1987), 1, - anon_sym_as, - ACTIONS(1991), 1, - anon_sym_and, - ACTIONS(1993), 1, - anon_sym_or, - ACTIONS(2007), 1, + [95138] = 8, + ACTIONS(2098), 1, + anon_sym_elif, + ACTIONS(2100), 1, anon_sym_else, + STATE(1221), 1, + aux_sym_if_statement_repeat1, + STATE(1438), 1, + sym_elif_clause, + STATE(1800), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2009), 10, + ACTIONS(2082), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2005), 21, + ACTIONS(2084), 22, anon_sym_import, + anon_sym_DOT, anon_sym_assert, anon_sym_if, anon_sym_lambda, @@ -102796,25 +104152,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [94046] = 5, + [95196] = 6, + ACTIONS(2074), 1, + anon_sym_PLUS, + ACTIONS(2094), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2029), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1172), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1469), 7, + ACTIONS(1331), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1474), 29, + ACTIONS(1333), 30, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -102822,15 +104178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -102844,22 +104200,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94099] = 4, + [95250] = 6, + ACTIONS(2074), 1, + anon_sym_PLUS, + ACTIONS(2094), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1172), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1351), 7, + ACTIONS(1289), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1353), 31, + ACTIONS(1291), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102868,16 +104226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -102891,89 +104248,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94150] = 23, - ACTIONS(1522), 1, - anon_sym_EQ, - ACTIONS(2032), 1, - anon_sym_LPAREN, - ACTIONS(2034), 1, - anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_QMARK_DOT, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2044), 1, - anon_sym_PLUS, - ACTIONS(2046), 1, - anon_sym_DASH, - ACTIONS(2050), 1, - anon_sym_PIPE, - ACTIONS(2052), 1, - anon_sym_AMP, - ACTIONS(2054), 1, - anon_sym_CARET, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2060), 1, - anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2036), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2048), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2056), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1520), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [94238] = 5, + [95304] = 4, + STATE(1037), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2062), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1469), 6, + ACTIONS(1323), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1474), 29, + ACTIONS(1325), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -102981,15 +104271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103003,21 +104294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94290] = 4, - STATE(2256), 1, - aux_sym_comparison_operator_repeat1, + [95354] = 5, + ACTIONS(2074), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 7, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1424), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1422), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103026,16 +104318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103049,22 +104341,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94340] = 5, - ACTIONS(2065), 1, - anon_sym_PLUS, + [95406] = 4, + STATE(1194), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1393), 5, + ACTIONS(1327), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 31, + ACTIONS(1329), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103073,16 +104364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103096,22 +104387,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94392] = 5, - ACTIONS(2065), 1, + [95456] = 5, + ACTIONS(2074), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 5, + ACTIONS(1289), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 31, + ACTIONS(1291), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103143,13 +104434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94444] = 4, - STATE(1184), 1, - aux_sym_dotted_name_repeat1, + [95508] = 4, + STATE(2267), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 7, + ACTIONS(1643), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -103157,7 +104448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 31, + ACTIONS(1641), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103189,23 +104480,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94494] = 5, - ACTIONS(2065), 1, + [95558] = 8, + ACTIONS(2074), 1, anon_sym_PLUS, + ACTIONS(2094), 1, + anon_sym_and, + ACTIONS(2096), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1383), 5, + ACTIONS(1548), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 31, - anon_sym_DOT, + ACTIONS(1550), 27, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -103217,10 +104514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, @@ -103236,173 +104530,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94546] = 10, - ACTIONS(2067), 1, - anon_sym_EQ, - ACTIONS(2069), 1, - anon_sym_LBRACE, - ACTIONS(2071), 1, - sym_isMutableFlag, - ACTIONS(2073), 1, - anon_sym_QMARK_COLON, - STATE(1967), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2236), 1, + [95616] = 7, + ACTIONS(1923), 1, + anon_sym_is, + STATE(1065), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1899), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1921), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 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(1609), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [95672] = 7, + ACTIONS(1923), 1, + anon_sym_is, + STATE(1065), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1899), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1921), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + ACTIONS(1611), 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(1609), 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, + [95728] = 7, + ACTIONS(1923), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [94608] = 8, - ACTIONS(2079), 1, - anon_sym_elif, - ACTIONS(2081), 1, - anon_sym_else, - STATE(1183), 1, - aux_sym_if_statement_repeat1, - STATE(1441), 1, - sym_elif_clause, - STATE(1807), 1, - sym_else_clause, + STATE(1065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2075), 12, + ACTIONS(1899), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1921), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 13, sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2077), 22, - anon_sym_import, + ACTIONS(1609), 17, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [94666] = 8, - ACTIONS(2079), 1, - anon_sym_elif, - ACTIONS(2081), 1, - anon_sym_else, - STATE(1239), 1, - aux_sym_if_statement_repeat1, - STATE(1441), 1, - sym_elif_clause, - STATE(1835), 1, - sym_else_clause, + [95784] = 7, + ACTIONS(1923), 1, + anon_sym_is, + STATE(1065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2083), 12, + ACTIONS(1899), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1921), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 13, sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2085), 22, - anon_sym_import, + ACTIONS(1609), 17, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [94724] = 4, - STATE(1051), 1, - aux_sym_dotted_name_repeat1, + [95840] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 7, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1458), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 31, + ACTIONS(1460), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103411,107 +104749,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [95890] = 9, + ACTIONS(748), 1, + anon_sym_LF, + ACTIONS(2076), 1, + anon_sym_LBRACE, + ACTIONS(2078), 1, + sym_isMutableFlag, + ACTIONS(2080), 1, + anon_sym_QMARK_COLON, + STATE(1865), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2272), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(750), 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, + [95950] = 23, + ACTIONS(1341), 1, + anon_sym_EQ, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2042), 1, + anon_sym_LBRACK, + ACTIONS(2048), 1, + anon_sym_STAR_STAR, + ACTIONS(2050), 1, + anon_sym_QMARK_DOT, + ACTIONS(2054), 1, + anon_sym_PLUS, + ACTIONS(2056), 1, + anon_sym_DASH, + ACTIONS(2060), 1, + anon_sym_PIPE, + ACTIONS(2062), 1, + anon_sym_AMP, + ACTIONS(2064), 1, + anon_sym_CARET, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2046), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2066), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1345), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_PLUS_EQ, + [96038] = 23, + ACTIONS(1379), 1, + anon_sym_EQ, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2042), 1, + anon_sym_LBRACK, + ACTIONS(2048), 1, + anon_sym_STAR_STAR, + ACTIONS(2050), 1, + anon_sym_QMARK_DOT, + ACTIONS(2054), 1, + anon_sym_PLUS, + ACTIONS(2056), 1, + anon_sym_DASH, + ACTIONS(2060), 1, anon_sym_PIPE, + ACTIONS(2062), 1, anon_sym_AMP, + ACTIONS(2064), 1, anon_sym_CARET, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2046), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2058), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2066), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1373), 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, - [94774] = 8, - ACTIONS(2079), 1, - anon_sym_elif, - ACTIONS(2081), 1, - anon_sym_else, - STATE(1187), 1, - aux_sym_if_statement_repeat1, - STATE(1441), 1, - sym_elif_clause, - STATE(1836), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2087), 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(2089), 22, - anon_sym_import, + ACTIONS(1448), 5, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [94832] = 9, - ACTIONS(1881), 1, + anon_sym_and, + anon_sym_or, + ACTIONS(1381), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_PLUS_EQ, + [96126] = 9, + ACTIONS(1987), 1, anon_sym_LBRACE, - ACTIONS(1883), 1, + ACTIONS(1989), 1, sym_isMutableFlag, - ACTIONS(1885), 1, + ACTIONS(1991), 1, anon_sym_QMARK_COLON, - STATE(1685), 1, - aux_sym_comparison_operator_repeat1, - STATE(1901), 1, + STATE(1294), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, + STATE(2227), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(750), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, - sym__newline, + ACTIONS(748), 27, 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_in, @@ -103520,7 +104989,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, @@ -103535,84 +105004,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94892] = 8, - ACTIONS(2079), 1, - anon_sym_elif, - ACTIONS(2081), 1, - anon_sym_else, - STATE(1239), 1, - aux_sym_if_statement_repeat1, - STATE(1441), 1, - sym_elif_clause, - STATE(1800), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2091), 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(2093), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [94950] = 9, - ACTIONS(748), 1, - anon_sym_LF, - ACTIONS(2095), 1, + [96186] = 10, + ACTIONS(2106), 1, + anon_sym_EQ, + ACTIONS(2108), 1, anon_sym_LBRACE, - ACTIONS(2097), 1, + ACTIONS(2110), 1, sym_isMutableFlag, - ACTIONS(2099), 1, + ACTIONS(2112), 1, anon_sym_QMARK_COLON, - STATE(1809), 1, - aux_sym_comparison_operator_repeat1, - STATE(1961), 1, + STATE(2007), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + STATE(2251), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 32, + ACTIONS(750), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(748), 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, @@ -103620,7 +105043,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, @@ -103628,42 +105050,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, - [95010] = 9, - ACTIONS(1981), 1, + [96248] = 9, + ACTIONS(1889), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1891), 1, sym_isMutableFlag, - ACTIONS(1985), 1, + ACTIONS(1893), 1, anon_sym_QMARK_COLON, - STATE(1262), 1, + STATE(1847), 1, + aux_sym_comparison_operator_repeat1, + STATE(1942), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2064), 1, aux_sym_dotted_name_repeat1, - STATE(2214), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, - anon_sym_EQ, + ACTIONS(750), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 27, + ACTIONS(748), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -103672,7 +105092,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, @@ -103687,97 +105107,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [95070] = 8, - ACTIONS(2101), 1, - anon_sym_elif, - ACTIONS(2103), 1, - anon_sym_else, - STATE(1193), 1, - aux_sym_if_statement_repeat1, - STATE(1418), 1, - sym_elif_clause, - STATE(1736), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2075), 12, - sym__dedent, - sym_string_start, + [96308] = 14, + ACTIONS(2040), 1, anon_sym_LPAREN, + ACTIONS(2042), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2048), 1, + anon_sym_STAR_STAR, + ACTIONS(2050), 1, anon_sym_QMARK_DOT, + ACTIONS(2054), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2056), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2077), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [95128] = 10, - ACTIONS(2065), 1, - anon_sym_PLUS, - ACTIONS(2105), 1, - anon_sym_as, - ACTIONS(2107), 1, - anon_sym_if, - ACTIONS(2109), 1, - anon_sym_and, - ACTIONS(2111), 1, - anon_sym_or, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1449), 5, - anon_sym_EQ, + ACTIONS(2046), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2058), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 25, + ACTIONS(1398), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -103788,256 +105163,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [95190] = 8, - ACTIONS(2065), 1, + [96378] = 15, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2042), 1, + anon_sym_LBRACK, + ACTIONS(2048), 1, + anon_sym_STAR_STAR, + ACTIONS(2050), 1, + anon_sym_QMARK_DOT, + ACTIONS(2054), 1, anon_sym_PLUS, - ACTIONS(2109), 1, - anon_sym_and, - ACTIONS(2111), 1, - anon_sym_or, + ACTIONS(2056), 1, + anon_sym_DASH, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1461), 5, - anon_sym_EQ, + ACTIONS(2046), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2058), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2066), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1396), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 27, + ACTIONS(1398), 21, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [95248] = 8, - ACTIONS(2101), 1, - anon_sym_elif, - ACTIONS(2103), 1, - anon_sym_else, - STATE(1298), 1, - aux_sym_if_statement_repeat1, - STATE(1418), 1, - sym_elif_clause, - STATE(1715), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2083), 12, - sym__dedent, - sym_string_start, + [96450] = 16, + ACTIONS(2040), 1, anon_sym_LPAREN, + ACTIONS(2042), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2048), 1, + anon_sym_STAR_STAR, + ACTIONS(2050), 1, anon_sym_QMARK_DOT, + ACTIONS(2054), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2056), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2085), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [95306] = 4, + ACTIONS(2064), 1, + anon_sym_CARET, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 6, - anon_sym_EQ, + ACTIONS(2046), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2058), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2066), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1396), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 31, + ACTIONS(1398), 20, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [95356] = 8, - ACTIONS(2101), 1, - anon_sym_elif, - ACTIONS(2103), 1, - anon_sym_else, - STATE(1198), 1, - aux_sym_if_statement_repeat1, - STATE(1418), 1, - sym_elif_clause, - STATE(1712), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2087), 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(2089), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [95414] = 22, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(2032), 1, + [96524] = 17, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2034), 1, + ACTIONS(2042), 1, anon_sym_LBRACK, - ACTIONS(2038), 1, + ACTIONS(2048), 1, anon_sym_STAR_STAR, - ACTIONS(2040), 1, + ACTIONS(2050), 1, anon_sym_QMARK_DOT, - ACTIONS(2044), 1, + ACTIONS(2054), 1, anon_sym_PLUS, - ACTIONS(2046), 1, + ACTIONS(2056), 1, anon_sym_DASH, - ACTIONS(2050), 1, - anon_sym_PIPE, - ACTIONS(2052), 1, + ACTIONS(2062), 1, anon_sym_AMP, - ACTIONS(2054), 1, + ACTIONS(2064), 1, anon_sym_CARET, - ACTIONS(2060), 1, + ACTIONS(2072), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(1267), 1, + STATE(1257), 1, sym_argument_list, - STATE(1314), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 2, + ACTIONS(2046), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2048), 2, + ACTIONS(2058), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2056), 2, + ACTIONS(2066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2117), 2, + ACTIONS(1396), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 11, + ACTIONS(1398), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104045,151 +105325,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_RBRACE, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [95500] = 9, - ACTIONS(748), 1, - anon_sym_LF, - ACTIONS(2095), 1, - anon_sym_LBRACE, - ACTIONS(2097), 1, - sym_isMutableFlag, - ACTIONS(2099), 1, - anon_sym_QMARK_COLON, - STATE(1961), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2258), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_PLUS_EQ, 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, - [95560] = 8, - ACTIONS(2101), 1, - anon_sym_elif, - ACTIONS(2103), 1, - anon_sym_else, - STATE(1298), 1, - aux_sym_if_statement_repeat1, - STATE(1418), 1, - sym_elif_clause, - STATE(1697), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2091), 12, - sym__dedent, - sym_string_start, + [96600] = 12, + ACTIONS(2040), 1, anon_sym_LPAREN, + ACTIONS(2042), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2048), 1, + anon_sym_STAR_STAR, + ACTIONS(2050), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2093), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [95618] = 9, - ACTIONS(1881), 1, - anon_sym_LBRACE, - ACTIONS(1883), 1, - sym_isMutableFlag, - ACTIONS(1885), 1, - anon_sym_QMARK_COLON, - STATE(1901), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2258), 1, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(2046), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2058), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 4, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, - sym__newline, + ACTIONS(1398), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, 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, @@ -104200,28 +105391,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [95678] = 6, - ACTIONS(2065), 1, + [96666] = 7, + ACTIONS(2074), 1, anon_sym_PLUS, - ACTIONS(2109), 1, + ACTIONS(2094), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 5, + ACTIONS(1291), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1297), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1299), 25, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, @@ -104231,9 +105424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, @@ -104249,230 +105440,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [95732] = 7, - ACTIONS(1937), 1, - anon_sym_is, - STATE(1078), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1929), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1935), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 13, - sym_string_start, - anon_sym_COMMA, + [96722] = 10, + ACTIONS(2040), 1, anon_sym_LPAREN, + ACTIONS(2042), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2048), 1, anon_sym_STAR_STAR, + ACTIONS(2050), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1631), 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, - [95788] = 7, - ACTIONS(1937), 1, - anon_sym_is, - STATE(1078), 1, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1929), 3, - anon_sym_in, + ACTIONS(1396), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1935), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 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(1631), 17, + ACTIONS(1398), 26, 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, - [95844] = 7, - ACTIONS(1937), 1, - anon_sym_is, - STATE(1078), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1929), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1935), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 13, - sym_string_start, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_else, 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(1631), 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_in, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [95900] = 7, - ACTIONS(1937), 1, - anon_sym_is, - STATE(1078), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1929), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1935), 4, + 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(1629), 13, - sym_string_start, - anon_sym_COMMA, + anon_sym_is, + [96784] = 10, + ACTIONS(2040), 1, anon_sym_LPAREN, + ACTIONS(2042), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2048), 1, anon_sym_STAR_STAR, + ACTIONS(2050), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1631), 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, - [95956] = 4, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 6, + ACTIONS(1396), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 31, + ACTIONS(1398), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104490,23 +105544,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [96006] = 4, + [96846] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + ACTIONS(2114), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1219), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1483), 6, + ACTIONS(1468), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 31, - anon_sym_DOT, + ACTIONS(1473), 29, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -104518,7 +105573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104537,40 +105591,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96056] = 6, - ACTIONS(2065), 1, + [96898] = 8, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(2074), 1, anon_sym_PLUS, - ACTIONS(2109), 1, + ACTIONS(2094), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1487), 5, - anon_sym_EQ, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 30, + ACTIONS(1291), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_or, anon_sym_PLUS_EQ, + ACTIONS(1299), 19, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -104585,91 +105641,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96110] = 7, - ACTIONS(2065), 1, - anon_sym_PLUS, - ACTIONS(2109), 1, - anon_sym_and, + [96956] = 8, + ACTIONS(2098), 1, + anon_sym_elif, + ACTIONS(2100), 1, + anon_sym_else, + STATE(1242), 1, + aux_sym_if_statement_repeat1, + STATE(1438), 1, + sym_elif_clause, + STATE(1674), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1387), 5, + ACTIONS(2119), 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(2117), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1578), 5, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97014] = 23, + ACTIONS(1404), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1580), 25, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2040), 1, anon_sym_LPAREN, + ACTIONS(2042), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(2048), 1, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_PLUS_EQ, + ACTIONS(2050), 1, + anon_sym_QMARK_DOT, + ACTIONS(2054), 1, + anon_sym_PLUS, + ACTIONS(2056), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2060), 1, anon_sym_PIPE, + ACTIONS(2062), 1, anon_sym_AMP, + ACTIONS(2064), 1, anon_sym_CARET, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2046), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2058), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2066), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1373), 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, - [96166] = 8, - ACTIONS(1389), 1, - anon_sym_EQ, - ACTIONS(2065), 1, - anon_sym_PLUS, - ACTIONS(2109), 1, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_and, + anon_sym_or, + ACTIONS(1406), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_PLUS_EQ, + [97102] = 8, + ACTIONS(2098), 1, + anon_sym_elif, + ACTIONS(2100), 1, + anon_sym_else, + STATE(1226), 1, + aux_sym_if_statement_repeat1, + STATE(1438), 1, + sym_elif_clause, + STATE(1650), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2123), 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(2121), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97160] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + STATE(1219), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, + ACTIONS(1534), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 11, + ACTIONS(1536), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_or, - anon_sym_PLUS_EQ, - ACTIONS(1580), 19, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -104684,34 +105852,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96224] = 4, + [97210] = 10, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2042), 1, + anon_sym_LBRACK, + ACTIONS(2048), 1, + anon_sym_STAR_STAR, + ACTIONS(2050), 1, + anon_sym_QMARK_DOT, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1351), 6, + ACTIONS(1542), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1353), 31, + ACTIONS(1544), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -104729,23 +105904,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [96274] = 5, - ACTIONS(2121), 1, + [97272] = 8, + ACTIONS(2098), 1, + anon_sym_elif, + ACTIONS(2100), 1, + anon_sym_else, + STATE(1242), 1, + aux_sym_if_statement_repeat1, + STATE(1438), 1, + sym_elif_clause, + STATE(1670), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2127), 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(2125), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97330] = 5, + ACTIONS(2129), 1, anon_sym_LBRACE, - STATE(1403), 1, + STATE(1391), 1, sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1641), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104777,124 +106001,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96326] = 23, - ACTIONS(1562), 1, - anon_sym_EQ, - ACTIONS(2032), 1, + [97382] = 8, + ACTIONS(2086), 1, + anon_sym_elif, + ACTIONS(2088), 1, + anon_sym_else, + STATE(1247), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + STATE(1729), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2119), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2034), 1, anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2044), 1, anon_sym_PLUS, - ACTIONS(2046), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2050), 1, - anon_sym_PIPE, - ACTIONS(2052), 1, - anon_sym_AMP, - ACTIONS(2054), 1, - anon_sym_CARET, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2060), 1, - anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2036), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2048), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2056), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1251), 5, + anon_sym_TILDE, + sym_float, + ACTIONS(2117), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1560), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [96414] = 22, - ACTIONS(1253), 1, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97440] = 22, + ACTIONS(1343), 1, anon_sym_EQ, - ACTIONS(2032), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2034), 1, + ACTIONS(2042), 1, anon_sym_LBRACK, - ACTIONS(2038), 1, + ACTIONS(2048), 1, anon_sym_STAR_STAR, - ACTIONS(2040), 1, + ACTIONS(2050), 1, anon_sym_QMARK_DOT, - ACTIONS(2044), 1, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2054), 1, anon_sym_PLUS, - ACTIONS(2046), 1, + ACTIONS(2056), 1, anon_sym_DASH, - ACTIONS(2050), 1, + ACTIONS(2060), 1, anon_sym_PIPE, - ACTIONS(2052), 1, + ACTIONS(2062), 1, anon_sym_AMP, - ACTIONS(2054), 1, + ACTIONS(2064), 1, anon_sym_CARET, - ACTIONS(2060), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(1267), 1, + ACTIONS(2072), 1, + anon_sym_QMARK_LBRACK, + STATE(1257), 1, sym_argument_list, - STATE(2116), 1, + STATE(2148), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 2, + ACTIONS(2046), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2048), 2, + ACTIONS(2058), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2056), 2, + ACTIONS(2066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1251), 11, + ACTIONS(1448), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104906,209 +106115,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [96500] = 14, - ACTIONS(2032), 1, + [97526] = 8, + ACTIONS(2086), 1, + anon_sym_elif, + ACTIONS(2088), 1, + anon_sym_else, + STATE(1231), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + STATE(1727), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2123), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2034), 1, anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2044), 1, anon_sym_PLUS, - ACTIONS(2046), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2060), 1, - anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2036), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2048), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1544), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1542), 23, + anon_sym_TILDE, + sym_float, + ACTIONS(2121), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - 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_rule, + anon_sym_check, 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, - anon_sym_is, - [96570] = 15, - ACTIONS(2032), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97584] = 8, + ACTIONS(2086), 1, + anon_sym_elif, + ACTIONS(2088), 1, + anon_sym_else, + STATE(1247), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + STATE(1707), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2127), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2034), 1, anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2044), 1, anon_sym_PLUS, - ACTIONS(2046), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2060), 1, - anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(2125), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97642] = 9, + ACTIONS(748), 1, + anon_sym_LF, + ACTIONS(2076), 1, + anon_sym_LBRACE, + ACTIONS(2078), 1, + sym_isMutableFlag, + ACTIONS(2080), 1, + anon_sym_QMARK_COLON, + STATE(1865), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2235), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2048), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2056), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1544), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1542), 21, + ACTIONS(750), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_for, + 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, 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, - [96642] = 16, - ACTIONS(2032), 1, - anon_sym_LPAREN, - ACTIONS(2034), 1, - anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_QMARK_DOT, - ACTIONS(2044), 1, - anon_sym_PLUS, - ACTIONS(2046), 1, - anon_sym_DASH, - ACTIONS(2054), 1, - anon_sym_CARET, - ACTIONS(2060), 1, anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [97702] = 4, + ACTIONS(2131), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 2, + ACTIONS(1390), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2048), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2056), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1544), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 20, + ACTIONS(1392), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [96716] = 4, + anon_sym_QMARK_LBRACK, + [97751] = 9, + ACTIONS(2108), 1, + anon_sym_LBRACE, + ACTIONS(2110), 1, + sym_isMutableFlag, + ACTIONS(2112), 1, + anon_sym_QMARK_COLON, + STATE(2007), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2272), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1516), 6, - anon_sym_EQ, + ACTIONS(750), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1514), 31, + ACTIONS(748), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -105123,174 +106361,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96766] = 17, - ACTIONS(2032), 1, - anon_sym_LPAREN, - ACTIONS(2034), 1, - anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_QMARK_DOT, - ACTIONS(2044), 1, - anon_sym_PLUS, - ACTIONS(2046), 1, - anon_sym_DASH, - ACTIONS(2052), 1, - anon_sym_AMP, - ACTIONS(2054), 1, - anon_sym_CARET, - ACTIONS(2060), 1, - anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [97810] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2135), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 2, + ACTIONS(1643), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2048), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2056), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1544), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 19, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [96842] = 23, - ACTIONS(1534), 1, - anon_sym_EQ, - ACTIONS(2032), 1, anon_sym_LPAREN, - ACTIONS(2034), 1, anon_sym_LBRACK, - ACTIONS(2038), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2040), 1, anon_sym_QMARK_DOT, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2044), 1, - anon_sym_PLUS, - ACTIONS(2046), 1, - anon_sym_DASH, - ACTIONS(2050), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2054), 1, anon_sym_CARET, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2060), 1, - anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2036), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2048), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1532), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [96930] = 12, - ACTIONS(2032), 1, - anon_sym_LPAREN, - ACTIONS(2034), 1, - anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_QMARK_DOT, - ACTIONS(2060), 1, + anon_sym_is, anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, + [97861] = 4, + STATE(2149), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2048), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1544), 4, + ACTIONS(1643), 6, anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 24, + ACTIONS(1641), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -105301,46 +106451,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [96996] = 10, - ACTIONS(2032), 1, - anon_sym_LPAREN, - ACTIONS(2034), 1, - anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_QMARK_DOT, - ACTIONS(2060), 1, anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [97910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 6, + ACTIONS(1711), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1369), 26, + ACTIONS(1709), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105353,46 +106495,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [97058] = 10, - ACTIONS(2032), 1, - anon_sym_LPAREN, - ACTIONS(2034), 1, - anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_QMARK_DOT, - ACTIONS(2060), 1, anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [97957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 6, + ACTIONS(1715), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 26, + ACTIONS(1713), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105405,46 +106539,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [97120] = 10, - ACTIONS(2032), 1, - anon_sym_LPAREN, - ACTIONS(2034), 1, - anon_sym_LBRACK, - ACTIONS(2038), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - anon_sym_QMARK_DOT, - ACTIONS(2060), 1, anon_sym_QMARK_LBRACK, - STATE(1267), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [98004] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 6, + ACTIONS(1665), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 26, + ACTIONS(1667), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105457,42 +106583,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [97182] = 9, - ACTIONS(748), 1, - anon_sym_LF, - ACTIONS(2095), 1, - anon_sym_LBRACE, - ACTIONS(2097), 1, - sym_isMutableFlag, - ACTIONS(2099), 1, - anon_sym_QMARK_COLON, - STATE(1961), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2226), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + anon_sym_QMARK_LBRACK, + [98051] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 32, + ACTIONS(1719), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1717), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105500,19 +106622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [97242] = 3, + [98098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 7, + ACTIONS(1719), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105520,7 +106640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 31, + ACTIONS(1717), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105552,37 +106672,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97289] = 3, + [98145] = 6, + ACTIONS(2139), 1, + anon_sym_elif, + STATE(1242), 1, + aux_sym_if_statement_repeat1, + STATE(1438), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 7, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2142), 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(2137), 23, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [98198] = 10, + ACTIONS(1329), 1, + sym_string_start, + ACTIONS(1981), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + sym_isMutableFlag, + ACTIONS(1985), 1, + anon_sym_QMARK_COLON, + STATE(1384), 1, + sym_dict_expr, + STATE(2151), 1, + aux_sym_comparison_operator_repeat1, + STATE(2315), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(750), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 31, + ACTIONS(748), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_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_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105596,15 +106770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97336] = 5, - ACTIONS(2123), 1, - anon_sym_in, - ACTIONS(2125), 1, - anon_sym_not, + [98259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 7, + ACTIONS(1723), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105612,7 +106782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1721), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105623,8 +106793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -105642,20 +106814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97387] = 4, - STATE(1257), 1, - aux_sym_union_type_repeat1, + [98306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 6, + ACTIONS(1677), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 31, + ACTIONS(1679), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105664,16 +106835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105687,11 +106858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97436] = 3, + [98353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 7, + ACTIONS(1707), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105699,7 +106870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 31, + ACTIONS(1705), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105731,11 +106902,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97483] = 3, + [98400] = 6, + ACTIONS(2144), 1, + anon_sym_elif, + STATE(1247), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2142), 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(2137), 23, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [98453] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 7, + ACTIONS(1673), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105743,7 +106961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1619), 31, + ACTIONS(1675), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105775,11 +106993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97530] = 3, + [98500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 7, + ACTIONS(1669), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105787,7 +107005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, + ACTIONS(1671), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105819,11 +107037,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97577] = 3, + [98547] = 8, + ACTIONS(2147), 1, + sym_isMutableFlag, + ACTIONS(2149), 1, + anon_sym_QMARK_COLON, + STATE(1294), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2236), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(750), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(748), 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, + [98604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 7, + ACTIONS(1657), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105831,7 +107098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, + ACTIONS(1659), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105863,18 +107130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97624] = 3, + [98651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 6, + ACTIONS(1619), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 32, + ACTIONS(1617), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105883,17 +107151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105907,20 +107174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97671] = 4, - STATE(1318), 1, - aux_sym_dotted_name_repeat1, + [98698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 6, + ACTIONS(1727), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 31, + ACTIONS(1725), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105929,16 +107195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105952,31 +107218,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97720] = 8, - ACTIONS(2127), 1, - sym_isMutableFlag, - ACTIONS(2129), 1, - anon_sym_QMARK_COLON, - STATE(1262), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2231), 1, - aux_sym_comparison_operator_repeat1, + [98745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 5, + ACTIONS(1731), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1729), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, @@ -105987,7 +107247,52 @@ 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [98792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_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, @@ -106001,11 +107306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97777] = 3, + [98839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 7, + ACTIONS(1731), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106013,7 +107318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 31, + ACTIONS(1729), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106045,20 +107350,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97824] = 4, - STATE(1257), 1, - aux_sym_union_type_repeat1, + [98886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 6, + ACTIONS(1779), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 31, + ACTIONS(1777), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106067,6 +107370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -106090,11 +107394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97873] = 3, + [98933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 7, + ACTIONS(1735), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106102,7 +107406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 31, + ACTIONS(1733), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106134,78 +107438,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97920] = 6, - ACTIONS(2135), 1, - anon_sym_elif, - STATE(1239), 1, - aux_sym_if_statement_repeat1, - STATE(1441), 1, - sym_elif_clause, + [98980] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2131), 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(1739), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2133), 23, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1737), 31, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [97973] = 8, - ACTIONS(2127), 1, - sym_isMutableFlag, - ACTIONS(2129), 1, - anon_sym_QMARK_COLON, - STATE(1262), 1, - sym_dict_expr, - STATE(1776), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [99027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 5, + ACTIONS(1743), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1741), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, @@ -106216,7 +107511,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, @@ -106230,20 +107526,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98030] = 4, - STATE(1313), 1, - aux_sym_comparison_operator_repeat1, + [99074] = 5, + ACTIONS(2151), 1, + anon_sym_PIPE, + STATE(1261), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1383), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1385), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106264,7 +107562,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, @@ -106275,11 +107572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98079] = 3, + [99125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 7, + ACTIONS(1747), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106287,7 +107584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 31, + ACTIONS(1745), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106319,20 +107616,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98126] = 4, - STATE(1257), 1, + [99172] = 4, + STATE(1261), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1431), 6, + ACTIONS(1496), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1429), 31, + ACTIONS(1498), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106364,57 +107661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98175] = 9, - ACTIONS(2069), 1, - anon_sym_LBRACE, - ACTIONS(2071), 1, - sym_isMutableFlag, - ACTIONS(2073), 1, - anon_sym_QMARK_COLON, - STATE(1925), 1, - aux_sym_comparison_operator_repeat1, - STATE(1967), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 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, - [98234] = 3, + [99221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -106458,18 +107705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98281] = 3, + [99268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 6, + ACTIONS(1751), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 32, + ACTIONS(1749), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106478,17 +107726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106502,72 +107749,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98328] = 8, - ACTIONS(2141), 1, - anon_sym_not, - ACTIONS(2147), 1, - anon_sym_is, - STATE(1247), 1, - aux_sym_comparison_operator_repeat1, + [99315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2144), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 4, + ACTIONS(1343), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(2138), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK_LBRACK, - [98385] = 5, - STATE(1248), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2150), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1433), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1438), 29, + ACTIONS(1448), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -106575,15 +107770,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106597,20 +107793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98436] = 4, - STATE(1257), 1, - aux_sym_union_type_repeat1, + [99362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 6, + ACTIONS(1755), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 31, + ACTIONS(1753), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106619,16 +107814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106642,11 +107837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98485] = 3, + [99409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1253), 7, + ACTIONS(1699), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106654,7 +107849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 31, + ACTIONS(1697), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106686,21 +107881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98532] = 5, - ACTIONS(2153), 1, - anon_sym_EQ, - STATE(1257), 1, - aux_sym_union_type_repeat1, + [99456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1759), 7, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 31, + ACTIONS(1757), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106709,16 +107902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106732,13 +107925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98583] = 4, - ACTIONS(2155), 1, - anon_sym_DASH_GT, + [99503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1538), 7, + ACTIONS(1763), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106746,7 +107937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1536), 30, + ACTIONS(1761), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106755,15 +107946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106777,11 +107969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98632] = 3, + [99550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 7, + ACTIONS(1643), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106789,7 +107981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1641), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106821,11 +108013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98679] = 3, + [99597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 7, + ACTIONS(1689), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106833,7 +108025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, + ACTIONS(1691), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106865,22 +108057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98726] = 5, - ACTIONS(2157), 1, - anon_sym_PIPE, - STATE(1255), 1, - aux_sym_union_type_repeat1, + [99644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 6, + ACTIONS(1803), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 30, + ACTIONS(1801), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106889,18 +108078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106911,7 +108101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98777] = 3, + [99691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -106955,20 +108145,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98824] = 4, - STATE(1255), 1, - aux_sym_union_type_repeat1, + [99738] = 4, + ACTIONS(2154), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1347), 6, + ACTIONS(1410), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1349), 31, + ACTIONS(1412), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106986,7 +108177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107000,11 +108190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98873] = 3, + [99787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 7, + ACTIONS(1771), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107012,7 +108202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 31, + ACTIONS(1769), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107044,37 +108234,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98920] = 3, + [99834] = 9, + ACTIONS(2108), 1, + anon_sym_LBRACE, + ACTIONS(2110), 1, + sym_isMutableFlag, + ACTIONS(2112), 1, + anon_sym_QMARK_COLON, + STATE(2007), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2251), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 7, - anon_sym_EQ, + ACTIONS(750), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 31, + ACTIONS(748), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107088,19 +108284,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98967] = 3, + [99893] = 5, + ACTIONS(2156), 1, + anon_sym_EQ, + STATE(1263), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 7, - anon_sym_EQ, + ACTIONS(1488), 5, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 31, + ACTIONS(1490), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107109,16 +108307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107132,42 +108330,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99014] = 8, - ACTIONS(2127), 1, - sym_isMutableFlag, - ACTIONS(2129), 1, - anon_sym_QMARK_COLON, - STATE(1262), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2258), 1, - aux_sym_comparison_operator_repeat1, + [99944] = 4, + ACTIONS(2158), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 5, + ACTIONS(1335), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1337), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107181,19 +108375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99071] = 3, + [99993] = 4, + STATE(1263), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 7, + ACTIONS(1623), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 31, + ACTIONS(1621), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107202,16 +108397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107225,19 +108420,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99118] = 3, + [100042] = 4, + STATE(1291), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 7, + ACTIONS(1609), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1699), 31, + ACTIONS(1611), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107246,16 +108442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107269,11 +108465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99165] = 3, + [100091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 7, + ACTIONS(1685), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107281,7 +108477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1703), 31, + ACTIONS(1687), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107313,11 +108509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99212] = 3, + [100138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 7, + ACTIONS(1789), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107325,7 +108521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 31, + ACTIONS(1791), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107357,20 +108553,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99259] = 3, + [100185] = 5, + STATE(1284), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 7, + ACTIONS(2160), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1478), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1715), 31, - anon_sym_DOT, + ACTIONS(1483), 29, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -107378,16 +108577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107401,18 +108599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99306] = 3, + [100236] = 4, + STATE(1291), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 6, + ACTIONS(1609), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1699), 32, + ACTIONS(1611), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107421,7 +108621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -107445,11 +108644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99353] = 3, + [100285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 7, + ACTIONS(1793), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107457,7 +108656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 31, + ACTIONS(1795), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107489,19 +108688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99400] = 3, + [100332] = 4, + STATE(1291), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 7, + ACTIONS(1609), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1723), 31, + ACTIONS(1611), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107510,16 +108710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107533,11 +108733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99447] = 3, + [100381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 7, + ACTIONS(1681), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107545,7 +108745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1727), 31, + ACTIONS(1683), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107577,21 +108777,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99494] = 4, - ACTIONS(2160), 1, + [100428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1797), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1799), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [100475] = 4, + STATE(1291), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [100524] = 8, + ACTIONS(2166), 1, + anon_sym_not, + ACTIONS(2172), 1, + anon_sym_is, + STATE(1291), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 7, + ACTIONS(2169), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1627), 4, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(2163), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1625), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK_LBRACK, + [100581] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1857), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 30, + ACTIONS(1859), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107600,6 +108935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -107609,6 +108945,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, @@ -107622,11 +108959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99543] = 3, + [100628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 7, + ACTIONS(1807), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107634,7 +108971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 31, + ACTIONS(1805), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107666,11 +109003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99590] = 3, + [100675] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 7, + ACTIONS(1809), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107678,7 +109015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 31, + ACTIONS(1811), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107710,11 +109047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99637] = 3, + [100722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 7, + ACTIONS(1815), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107722,7 +109059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 31, + ACTIONS(1813), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107754,11 +109091,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99684] = 3, + [100769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 7, + ACTIONS(1779), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107766,7 +109103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 31, + ACTIONS(1777), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107798,11 +109135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99731] = 3, + [100816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 7, + ACTIONS(1787), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107810,7 +109147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 31, + ACTIONS(1785), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107842,11 +109179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99778] = 3, + [100863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 7, + ACTIONS(1839), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107854,7 +109191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 31, + ACTIONS(1837), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107886,11 +109223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99825] = 3, + [100910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 7, + ACTIONS(1615), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107898,7 +109235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 31, + ACTIONS(1613), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107930,11 +109267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99872] = 3, + [100957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 7, + ACTIONS(1817), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107942,7 +109279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1825), 31, + ACTIONS(1819), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107974,11 +109311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99919] = 3, + [101004] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 7, + ACTIONS(1821), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107986,7 +109323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 31, + ACTIONS(1823), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108018,11 +109355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99966] = 3, + [101051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 7, + ACTIONS(1825), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108030,7 +109367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 31, + ACTIONS(1827), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108062,20 +109399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100013] = 4, - STATE(2130), 1, - aux_sym_comparison_operator_repeat1, + [101098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1829), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1831), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108084,16 +109420,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108107,11 +109443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100062] = 3, + [101145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 7, + ACTIONS(1833), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108119,7 +109455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1841), 31, + ACTIONS(1835), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108151,11 +109487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100109] = 3, + [101192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 7, + ACTIONS(1851), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108163,7 +109499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1849), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108195,11 +109531,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100156] = 3, + [101239] = 4, + STATE(1263), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 7, + ACTIONS(1383), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1385), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [101288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1841), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108207,7 +109588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 31, + ACTIONS(1843), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108239,11 +109620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100203] = 3, + [101335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 7, + ACTIONS(1845), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108251,7 +109632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1863), 31, + ACTIONS(1847), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108283,11 +109664,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100250] = 3, + [101382] = 8, + ACTIONS(2147), 1, + sym_isMutableFlag, + ACTIONS(2149), 1, + anon_sym_QMARK_COLON, + STATE(1294), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2272), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 7, + ACTIONS(750), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(748), 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, + [101439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1695), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108295,7 +109725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 31, + ACTIONS(1693), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108327,18 +109757,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100297] = 3, + [101486] = 4, + STATE(2267), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 32, + ACTIONS(1641), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108347,7 +109779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -108371,20 +109802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100344] = 4, - STATE(1257), 1, - aux_sym_union_type_repeat1, + [101535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 6, + ACTIONS(1839), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 31, + ACTIONS(1837), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108393,6 +109822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -108416,25 +109846,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100393] = 3, + [101582] = 8, + ACTIONS(2147), 1, + sym_isMutableFlag, + ACTIONS(2149), 1, + anon_sym_QMARK_COLON, + STATE(1294), 1, + sym_dict_expr, + STATE(1806), 1, + aux_sym_comparison_operator_repeat1, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 7, - anon_sym_EQ, + ACTIONS(750), 5, anon_sym_STAR, - anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1851), 31, + ACTIONS(748), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DASH_GT, @@ -108445,8 +109881,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, @@ -108460,19 +109895,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100440] = 3, + [101639] = 4, + STATE(1263), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 7, + ACTIONS(1335), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 31, + ACTIONS(1337), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108481,16 +109917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108504,20 +109940,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100487] = 4, - STATE(2256), 1, + [101688] = 4, + STATE(1287), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1641), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108549,19 +109985,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100536] = 3, + [101737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 7, + ACTIONS(1711), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 31, + ACTIONS(1709), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108570,16 +110005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108593,19 +110029,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100583] = 3, + [101784] = 4, + STATE(1284), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 7, + ACTIONS(1323), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 31, + ACTIONS(1325), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108614,16 +110051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108637,19 +110074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100630] = 3, + [101833] = 4, + STATE(1263), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 7, + ACTIONS(1440), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 31, + ACTIONS(1442), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108658,16 +110096,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108681,37 +110119,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100677] = 3, + [101882] = 9, + ACTIONS(2108), 1, + anon_sym_LBRACE, + ACTIONS(2110), 1, + sym_isMutableFlag, + ACTIONS(2112), 1, + anon_sym_QMARK_COLON, + STATE(1902), 1, + aux_sym_comparison_operator_repeat1, + STATE(2007), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 7, - anon_sym_EQ, + ACTIONS(750), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 31, + ACTIONS(748), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108725,19 +110169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100724] = 3, + [101941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 7, + ACTIONS(1727), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 31, + ACTIONS(1725), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108746,16 +110189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108769,66 +110213,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100771] = 6, - ACTIONS(2162), 1, - anon_sym_elif, - STATE(1298), 1, - aux_sym_if_statement_repeat1, - STATE(1418), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2131), 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(2133), 23, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [100824] = 3, + [101988] = 4, + STATE(1263), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 7, + ACTIONS(1432), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 31, + ACTIONS(1434), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108837,16 +110235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108860,11 +110258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100871] = 3, + [102037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 7, + ACTIONS(1857), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108872,7 +110270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 31, + ACTIONS(1859), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108904,11 +110302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100918] = 3, + [102084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 7, + ACTIONS(1855), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108916,7 +110314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 31, + ACTIONS(1853), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108948,11 +110346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100965] = 3, + [102131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 7, + ACTIONS(1877), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108960,7 +110358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 31, + ACTIONS(1879), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108992,11 +110390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101012] = 3, + [102178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 7, + ACTIONS(1873), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109004,7 +110402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 31, + ACTIONS(1875), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109036,44 +110434,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101059] = 10, - ACTIONS(1595), 1, - sym_string_start, - ACTIONS(1973), 1, - anon_sym_LBRACE, - ACTIONS(1975), 1, - sym_isMutableFlag, - ACTIONS(1977), 1, - anon_sym_QMARK_COLON, - STATE(1405), 1, - sym_dict_expr, - STATE(2152), 1, - aux_sym_comparison_operator_repeat1, - STATE(2300), 1, - aux_sym_dotted_name_repeat1, + [102225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1861), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 27, + ACTIONS(1863), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_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, @@ -109087,11 +110478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101120] = 3, + [102272] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 7, + ACTIONS(1869), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109099,7 +110490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 31, + ACTIONS(1871), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109131,11 +110522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101167] = 3, + [102319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 7, + ACTIONS(1865), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109143,7 +110534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 31, + ACTIONS(1867), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109175,11 +110566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101214] = 3, + [102366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 7, + ACTIONS(1661), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109187,7 +110578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 31, + ACTIONS(1663), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109219,11 +110610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101261] = 3, + [102413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 7, + ACTIONS(1797), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109231,7 +110622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 31, + ACTIONS(1799), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109263,19 +110654,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101308] = 3, + [102460] = 4, + STATE(1317), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 7, + ACTIONS(1327), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 31, + ACTIONS(1329), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109284,16 +110676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109307,19 +110699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101355] = 3, + [102509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 7, + ACTIONS(1657), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 31, + ACTIONS(1659), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109328,16 +110719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109351,40 +110742,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101402] = 4, - STATE(1247), 1, + [102555] = 23, + ACTIONS(1341), 1, + anon_sym_EQ, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR_STAR, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(2187), 1, + anon_sym_DASH, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2193), 1, + anon_sym_AMP, + ACTIONS(2195), 1, + anon_sym_CARET, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, - anon_sym_EQ, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2179), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2189), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1345), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [102641] = 14, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR_STAR, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2185), 1, anon_sym_PLUS, + ACTIONS(2187), 1, + anon_sym_DASH, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2179), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2189), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 31, + ACTIONS(1398), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_then, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -109395,66 +110859,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [102709] = 22, + ACTIONS(1343), 1, + anon_sym_EQ, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR_STAR, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(2187), 1, + anon_sym_DASH, + ACTIONS(2191), 1, + anon_sym_PIPE, + ACTIONS(2193), 1, + anon_sym_AMP, + ACTIONS(2195), 1, + anon_sym_CARET, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [101451] = 4, - STATE(1247), 1, + ACTIONS(2203), 1, + anon_sym_not, + ACTIONS(2207), 1, + anon_sym_is, + STATE(1296), 1, + sym_argument_list, + STATE(1453), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, - anon_sym_EQ, + ACTIONS(2179), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2189), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 31, + ACTIONS(2201), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [101500] = 4, - STATE(1247), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_then, + [102793] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2135), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 31, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109464,11 +110946,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -109486,66 +110966,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101549] = 4, - STATE(1247), 1, + [102843] = 16, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR_STAR, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(2187), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + anon_sym_CARET, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, - anon_sym_EQ, + ACTIONS(2179), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2189), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1396), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 31, + ACTIONS(1398), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_then, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [101598] = 4, - ACTIONS(2165), 1, - anon_sym_DASH_GT, + [102915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 7, + ACTIONS(1771), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1341), 30, + ACTIONS(1769), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109563,6 +111051,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, @@ -109576,18 +111065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101647] = 3, + [102961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 32, + ACTIONS(1641), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109596,7 +111085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -109620,81 +111108,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101694] = 3, + [103007] = 17, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR_STAR, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(2187), 1, + anon_sym_DASH, + ACTIONS(2193), 1, + anon_sym_AMP, + ACTIONS(2195), 1, + anon_sym_CARET, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 7, - anon_sym_EQ, + ACTIONS(2179), 2, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(2189), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1396), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 31, + ACTIONS(1398), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [101741] = 4, - STATE(1248), 1, - aux_sym_dotted_name_repeat1, + [103081] = 7, + ACTIONS(2209), 1, + anon_sym_and, + ACTIONS(2211), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 6, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1297), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(1299), 23, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -109709,42 +111212,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101790] = 9, - ACTIONS(2069), 1, - anon_sym_LBRACE, - ACTIONS(2071), 1, - sym_isMutableFlag, - ACTIONS(2073), 1, - anon_sym_QMARK_COLON, - STATE(1967), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2258), 1, - aux_sym_comparison_operator_repeat1, + [103135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1763), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1761), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -109759,19 +111255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101849] = 3, + [103181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 7, + ACTIONS(1759), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1693), 31, + ACTIONS(1757), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109780,16 +111275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109803,39 +111298,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101896] = 3, + [103227] = 12, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR_STAR, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 7, - anon_sym_EQ, + ACTIONS(2179), 2, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(2189), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 4, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 31, + ACTIONS(1398), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_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_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -109846,35 +111350,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [101943] = 9, - ACTIONS(2069), 1, + [103291] = 9, + ACTIONS(1889), 1, anon_sym_LBRACE, - ACTIONS(2071), 1, + ACTIONS(1891), 1, sym_isMutableFlag, - ACTIONS(2073), 1, + ACTIONS(1893), 1, anon_sym_QMARK_COLON, - STATE(1967), 1, + STATE(1942), 1, sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2236), 1, + STATE(2246), 1, aux_sym_comparison_operator_repeat1, + STATE(2281), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(750), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(748), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -109897,37 +111399,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102002] = 3, + [103349] = 10, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR_STAR, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 7, + ACTIONS(1396), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 31, + ACTIONS(1398), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_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, @@ -109940,36 +111449,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [103409] = 10, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2181), 1, + anon_sym_STAR_STAR, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [102049] = 3, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 6, + ACTIONS(1396), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 31, + ACTIONS(1398), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -109983,19 +111499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [102095] = 3, + [103469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 6, + ACTIONS(1343), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1841), 31, + ACTIONS(1448), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110027,18 +111542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102141] = 3, + [103515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, + ACTIONS(1755), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, + ACTIONS(1753), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110070,91 +111585,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102187] = 22, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2179), 1, - anon_sym_not, - ACTIONS(2181), 1, - anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, - ACTIONS(2187), 1, - anon_sym_PIPE, - ACTIONS(2189), 1, - anon_sym_AMP, - ACTIONS(2191), 1, - anon_sym_CARET, - ACTIONS(2197), 1, - anon_sym_is, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(1472), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2173), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2185), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2193), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2195), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2171), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [102271] = 8, - ACTIONS(2201), 1, - anon_sym_and, - ACTIONS(2203), 1, - anon_sym_or, - ACTIONS(2205), 1, + [103561] = 5, + ACTIONS(2211), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1461), 5, + ACTIONS(1424), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 25, + ACTIONS(1422), 29, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, @@ -110163,57 +111610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_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, - [102327] = 10, - ACTIONS(2201), 1, anon_sym_and, - ACTIONS(2203), 1, anon_sym_or, - ACTIONS(2205), 1, - anon_sym_PLUS, - ACTIONS(2207), 1, - anon_sym_as, - ACTIONS(2209), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1449), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1455), 23, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, anon_sym_PLUS_EQ, anon_sym_then, anon_sym_DASH, @@ -110230,18 +111630,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102387] = 3, + [103611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 6, + ACTIONS(1751), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 31, + ACTIONS(1749), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110273,18 +111673,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102433] = 3, + [103657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 6, + ACTIONS(1747), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 31, + ACTIONS(1745), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110316,18 +111716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102479] = 3, + [103703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 6, + ACTIONS(1743), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1851), 31, + ACTIONS(1741), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110359,107 +111759,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102525] = 6, - ACTIONS(2201), 1, - anon_sym_and, - ACTIONS(2205), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 5, + [103749] = 22, + ACTIONS(1343), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1387), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2175), 1, anon_sym_LPAREN, + ACTIONS(2177), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2181), 1, anon_sym_STAR_STAR, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(2187), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2191), 1, anon_sym_PIPE, + ACTIONS(2193), 1, anon_sym_AMP, + ACTIONS(2195), 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(2199), 1, anon_sym_QMARK_LBRACK, - [102577] = 3, + ACTIONS(2203), 1, + anon_sym_not, + ACTIONS(2207), 1, + anon_sym_is, + STATE(1296), 1, + sym_argument_list, + STATE(2230), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 6, - anon_sym_EQ, + ACTIONS(2179), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2189), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 31, + ACTIONS(2201), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [102623] = 3, + anon_sym_then, + [103833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 31, + ACTIONS(1641), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110491,18 +111864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102669] = 3, + [103879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 6, + ACTIONS(1735), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 31, + ACTIONS(1733), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110534,18 +111907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102715] = 3, + [103925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 6, + ACTIONS(1731), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1863), 31, + ACTIONS(1729), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110577,18 +111950,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102761] = 3, + [103971] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 6, + ACTIONS(1731), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 31, + ACTIONS(1729), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110620,18 +111993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102807] = 3, + [104017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 6, + ACTIONS(1689), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1693), 31, + ACTIONS(1691), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110663,22 +112036,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102853] = 5, - ACTIONS(2123), 1, + [104063] = 5, + ACTIONS(2213), 1, anon_sym_in, - ACTIONS(2125), 1, + ACTIONS(2215), 1, anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110708,18 +112081,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102903] = 3, + [104113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 6, + ACTIONS(1607), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 31, + ACTIONS(1605), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110751,37 +112124,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102949] = 5, - ACTIONS(2205), 1, - anon_sym_PLUS, + [104159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1393), 5, + ACTIONS(1685), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 29, + ACTIONS(1687), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -110796,22 +112167,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102999] = 5, - ACTIONS(2205), 1, + [104205] = 5, + ACTIONS(2211), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 5, + ACTIONS(1289), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 29, + ACTIONS(1291), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110841,125 +112212,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103049] = 5, - ACTIONS(2205), 1, + [104255] = 8, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(2209), 1, + anon_sym_and, + ACTIONS(2211), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1383), 5, - anon_sym_EQ, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 29, + ACTIONS(1291), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [103099] = 5, - ACTIONS(2211), 1, - anon_sym_in, - ACTIONS(2213), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [103149] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1807), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1805), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1299), 19, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -110974,18 +112260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103195] = 3, + [104311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 6, + ACTIONS(1723), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 31, + ACTIONS(1721), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111017,18 +112303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103241] = 3, + [104357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 6, + ACTIONS(1719), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 31, + ACTIONS(1717), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111060,18 +112346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103287] = 3, + [104403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 6, + ACTIONS(1719), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 31, + ACTIONS(1717), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111103,18 +112389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103333] = 3, + [104449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 6, + ACTIONS(1715), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 31, + ACTIONS(1713), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111146,35 +112432,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103379] = 3, + [104495] = 5, + ACTIONS(2211), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 6, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1428), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 31, + ACTIONS(1430), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111189,18 +112477,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103425] = 3, + [104545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 6, + ACTIONS(1789), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 31, + ACTIONS(1791), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111232,18 +112520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103471] = 3, + [104591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 6, + ACTIONS(1793), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 31, + ACTIONS(1795), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111275,18 +112563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103517] = 3, + [104637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 6, + ACTIONS(1707), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 31, + ACTIONS(1705), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111318,18 +112606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103563] = 3, + [104683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 6, + ACTIONS(1681), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1825), 31, + ACTIONS(1683), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111361,18 +112649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103609] = 3, + [104729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 6, + ACTIONS(1739), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 31, + ACTIONS(1737), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111404,24 +112692,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103655] = 6, - ACTIONS(2201), 1, + [104775] = 6, + ACTIONS(2209), 1, anon_sym_and, - ACTIONS(2205), 1, + ACTIONS(2211), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1487), 5, + ACTIONS(1331), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 28, + ACTIONS(1333), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111450,18 +112738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103707] = 3, + [104827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 6, + ACTIONS(1767), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 31, + ACTIONS(1765), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111493,67 +112781,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103753] = 9, - ACTIONS(1881), 1, - anon_sym_LBRACE, - ACTIONS(1883), 1, - sym_isMutableFlag, - ACTIONS(1885), 1, - anon_sym_QMARK_COLON, - STATE(1901), 1, - sym_dict_expr, - STATE(2223), 1, - aux_sym_comparison_operator_repeat1, - STATE(2262), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [103811] = 3, + [104873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 6, + ACTIONS(1677), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 31, + ACTIONS(1679), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111585,18 +112824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103857] = 3, + [104919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 6, + ACTIONS(1699), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 31, + ACTIONS(1697), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111628,18 +112867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103903] = 3, + [104965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 6, + ACTIONS(1673), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 31, + ACTIONS(1675), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111671,19 +112910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103949] = 4, - ACTIONS(2153), 1, - anon_sym_EQ, + [105011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1803), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 31, + ACTIONS(1801), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111715,80 +112953,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103997] = 22, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2179), 1, - anon_sym_not, - ACTIONS(2181), 1, - anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, - ACTIONS(2187), 1, - anon_sym_PIPE, - ACTIONS(2189), 1, - anon_sym_AMP, - ACTIONS(2191), 1, - anon_sym_CARET, - ACTIONS(2197), 1, - anon_sym_is, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2217), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2173), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2185), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2193), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2195), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2171), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [104081] = 3, + [105057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 6, + ACTIONS(1807), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 31, + ACTIONS(1805), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111820,39 +112996,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104127] = 7, - ACTIONS(2201), 1, - anon_sym_and, - ACTIONS(2205), 1, - anon_sym_PLUS, + [105103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1387), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1578), 5, + ACTIONS(1815), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1580), 23, + ACTIONS(1813), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111867,18 +113039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104181] = 3, + [105149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 6, + ACTIONS(1669), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 31, + ACTIONS(1671), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111910,18 +113082,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104227] = 3, + [105195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 6, + ACTIONS(1809), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, + ACTIONS(1811), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111953,37 +113125,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104273] = 5, - ACTIONS(2215), 1, - anon_sym_LBRACE, - STATE(1264), 1, - sym_dictionary, + [105241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1851), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1849), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111998,18 +113168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104323] = 3, + [105287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1433), 6, + ACTIONS(1695), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1438), 31, + ACTIONS(1693), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112041,35 +113211,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104369] = 3, + [105333] = 10, + ACTIONS(2209), 1, + anon_sym_and, + ACTIONS(2211), 1, + anon_sym_PLUS, + ACTIONS(2217), 1, + anon_sym_as, + ACTIONS(2219), 1, + anon_sym_if, + ACTIONS(2221), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 6, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1569), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(1567), 23, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112084,35 +113261,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104415] = 3, + [105393] = 8, + ACTIONS(2209), 1, + anon_sym_and, + ACTIONS(2211), 1, + anon_sym_PLUS, + ACTIONS(2221), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 6, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1548), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, - anon_sym_DOT, + ACTIONS(1550), 25, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112127,161 +113309,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104461] = 23, - ACTIONS(1522), 1, + [105449] = 23, + ACTIONS(1404), 1, anon_sym_EQ, - ACTIONS(2042), 1, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2104), 1, anon_sym_is, - ACTIONS(2167), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, + ACTIONS(2177), 1, anon_sym_LBRACK, - ACTIONS(2175), 1, + ACTIONS(2181), 1, anon_sym_STAR_STAR, - ACTIONS(2177), 1, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2185), 1, anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, ACTIONS(2187), 1, + anon_sym_DASH, + ACTIONS(2191), 1, anon_sym_PIPE, - ACTIONS(2189), 1, + ACTIONS(2193), 1, anon_sym_AMP, - ACTIONS(2191), 1, + ACTIONS(2195), 1, anon_sym_CARET, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2173), 2, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2185), 2, + ACTIONS(2189), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2193), 2, + ACTIONS(2197), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1520), 4, + ACTIONS(1406), 4, anon_sym_COLON, anon_sym_else, anon_sym_PLUS_EQ, anon_sym_then, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [104547] = 23, - ACTIONS(1534), 1, - anon_sym_EQ, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, - ACTIONS(2187), 1, - anon_sym_PIPE, - ACTIONS(2189), 1, - anon_sym_AMP, - ACTIONS(2191), 1, - anon_sym_CARET, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2173), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2185), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2193), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1532), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1251), 5, + ACTIONS(1448), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [104633] = 3, + [105535] = 6, + ACTIONS(2209), 1, + anon_sym_and, + ACTIONS(2211), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1291), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112296,18 +113418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104679] = 3, + [105587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1253), 6, + ACTIONS(1787), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 31, + ACTIONS(1785), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112339,104 +113461,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104725] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1781), 6, + [105633] = 23, + ACTIONS(1379), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1783), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2175), 1, anon_sym_LPAREN, + ACTIONS(2177), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(2181), 1, anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(2187), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2191), 1, anon_sym_PIPE, + ACTIONS(2193), 1, anon_sym_AMP, + ACTIONS(2195), 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(2199), 1, anon_sym_QMARK_LBRACK, - [104771] = 3, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, + ACTIONS(2179), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2189), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2197), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1381), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(1373), 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, - [104817] = 3, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [105719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 6, + ACTIONS(1661), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 31, + ACTIONS(1663), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112468,18 +113567,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104863] = 3, + [105765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 6, + ACTIONS(1665), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1727), 31, + ACTIONS(1667), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112511,22 +113610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104909] = 5, - ACTIONS(2211), 1, - anon_sym_in, - ACTIONS(2217), 1, - anon_sym_not, + [105811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1855), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1853), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112536,9 +113631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -112556,18 +113653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104959] = 3, + [105857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 6, + ACTIONS(1797), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 31, + ACTIONS(1799), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112599,18 +113696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105005] = 3, + [105903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 6, + ACTIONS(1877), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 31, + ACTIONS(1879), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112642,18 +113739,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105051] = 3, + [105949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 6, + ACTIONS(1873), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 31, + ACTIONS(1875), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112685,50 +113782,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105097] = 14, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [105995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2173), 2, + ACTIONS(1869), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2185), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1544), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 21, + ACTIONS(1871), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -112739,216 +113824,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [105165] = 15, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, - ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [106041] = 5, + ACTIONS(2213), 1, + anon_sym_in, + ACTIONS(2223), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2173), 2, + ACTIONS(1643), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2185), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2193), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1544), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 19, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_in, - anon_sym_not, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [105235] = 16, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, - ACTIONS(2191), 1, - anon_sym_CARET, - ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [106091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2173), 2, + ACTIONS(1865), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2185), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2193), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1544), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 18, + ACTIONS(1867), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [105307] = 17, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, - ACTIONS(2189), 1, - anon_sym_AMP, - ACTIONS(2191), 1, - anon_sym_CARET, - ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [106137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2173), 2, + ACTIONS(1615), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2185), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2193), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1544), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 17, + ACTIONS(1613), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [105381] = 12, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [106183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2173), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2185), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1544), 4, + ACTIONS(1817), 6, anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 22, + ACTIONS(1819), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -112959,18 +113998,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [105445] = 3, + anon_sym_QMARK_LBRACK, + [106229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 6, + ACTIONS(1821), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 31, + ACTIONS(1823), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113002,43 +114042,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105491] = 10, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [106275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 6, + ACTIONS(1825), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 24, + ACTIONS(1827), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113052,43 +114084,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [105551] = 10, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2175), 1, - anon_sym_STAR_STAR, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [106321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 6, + ACTIONS(1797), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 24, + ACTIONS(1799), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113102,18 +114127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [105611] = 3, + anon_sym_QMARK_LBRACK, + [106367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 6, + ACTIONS(1829), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 31, + ACTIONS(1831), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113145,40 +114171,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105657] = 8, - ACTIONS(1389), 1, - anon_sym_EQ, - ACTIONS(2201), 1, - anon_sym_and, - ACTIONS(2205), 1, - anon_sym_PLUS, + [106413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, + ACTIONS(1861), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 9, + ACTIONS(1863), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1580), 19, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113193,18 +114214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105713] = 3, + [106459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 6, + ACTIONS(1833), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 31, + ACTIONS(1835), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113236,32 +114257,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105759] = 10, - ACTIONS(2167), 1, + [106505] = 10, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, + ACTIONS(2177), 1, anon_sym_LBRACK, - ACTIONS(2175), 1, + ACTIONS(2181), 1, anon_sym_STAR_STAR, - ACTIONS(2177), 1, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 6, + ACTIONS(1542), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1369), 24, + ACTIONS(1544), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113286,18 +114307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [105819] = 3, + [106565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 6, + ACTIONS(1619), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1723), 31, + ACTIONS(1617), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113329,124 +114350,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105865] = 23, - ACTIONS(1562), 1, - anon_sym_EQ, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2167), 1, + [106611] = 15, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, + ACTIONS(2177), 1, anon_sym_LBRACK, - ACTIONS(2175), 1, + ACTIONS(2181), 1, anon_sym_STAR_STAR, - ACTIONS(2177), 1, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2185), 1, anon_sym_PLUS, - ACTIONS(2183), 1, - anon_sym_DASH, ACTIONS(2187), 1, - anon_sym_PIPE, - ACTIONS(2189), 1, - anon_sym_AMP, - ACTIONS(2191), 1, - anon_sym_CARET, + anon_sym_DASH, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2173), 2, + ACTIONS(2179), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2185), 2, + ACTIONS(2189), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2193), 2, + ACTIONS(2197), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1560), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [105951] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 6, + ACTIONS(1396), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 31, + ACTIONS(1398), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_then, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [105997] = 3, + [106681] = 4, + ACTIONS(2156), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 6, - anon_sym_EQ, + ACTIONS(1488), 5, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 31, + ACTIONS(1490), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113478,35 +114449,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106043] = 3, + [106729] = 5, + ACTIONS(2225), 1, + anon_sym_LBRACE, + STATE(1297), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 6, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1619), 31, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113521,18 +114494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106089] = 3, + [106779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 6, + ACTIONS(1845), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 31, + ACTIONS(1847), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113564,18 +114537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106135] = 3, + [106825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 6, + ACTIONS(1478), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1703), 31, + ACTIONS(1483), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113607,18 +114580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106181] = 3, + [106871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1841), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 31, + ACTIONS(1843), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113650,35 +114623,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106227] = 3, + [106917] = 16, + ACTIONS(2227), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_LBRACK, + ACTIONS(2233), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_QMARK_DOT, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, + ACTIONS(2247), 1, + anon_sym_QMARK_LBRACK, + STATE(1617), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 6, - anon_sym_EQ, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2231), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2239), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_for, + 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, + [106988] = 7, + ACTIONS(2249), 1, + anon_sym_and, + ACTIONS(2251), 1, anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1297), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 31, + ACTIONS(1291), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1299), 23, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113693,27 +114724,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106273] = 3, + [107041] = 4, + STATE(1431), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 6, + ACTIONS(1432), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 31, + ACTIONS(1434), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -113721,7 +114752,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, @@ -113736,27 +114767,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106319] = 3, + [107088] = 4, + STATE(1431), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 6, + ACTIONS(1440), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 31, + ACTIONS(1442), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -113764,7 +114795,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, @@ -113779,27 +114810,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106365] = 3, + [107135] = 4, + ACTIONS(2253), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 6, + ACTIONS(1335), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1715), 31, + ACTIONS(1337), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -113807,8 +114839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -113822,27 +114853,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106411] = 3, + [107182] = 4, + STATE(1431), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 6, + ACTIONS(1335), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 31, + ACTIONS(1337), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -113850,7 +114881,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, @@ -113865,36 +114896,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106457] = 4, - ACTIONS(2219), 1, - anon_sym_DASH_GT, + [107229] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1538), 7, - anon_sym_EQ, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1536), 28, + ACTIONS(1446), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -113908,40 +114939,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106504] = 5, - ACTIONS(2221), 1, - anon_sym_PIPE, - STATE(1411), 1, + [107276] = 4, + STATE(1431), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 6, + ACTIONS(1383), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 28, + ACTIONS(1385), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -113952,82 +114982,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106553] = 8, + [107323] = 12, ACTIONS(2227), 1, - anon_sym_not, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_LBRACK, ACTIONS(2233), 1, - anon_sym_is, - STATE(1412), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_QMARK_DOT, + ACTIONS(2247), 1, + anon_sym_QMARK_LBRACK, + STATE(1617), 1, + sym_argument_list, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2230), 2, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1653), 4, - anon_sym_EQ, + ACTIONS(2231), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2224), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 22, + ACTIONS(2239), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 23, 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_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_for, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK_LBRACK, - [106608] = 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [107386] = 4, + STATE(2229), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1456), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1351), 4, + ACTIONS(1643), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1353), 30, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -114042,65 +115076,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106655] = 7, - ACTIONS(2236), 1, - anon_sym_and, - ACTIONS(2238), 1, - anon_sym_PLUS, + [107433] = 21, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2227), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_LBRACK, + ACTIONS(2233), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_QMARK_DOT, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, + ACTIONS(2247), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2255), 1, + anon_sym_PIPE, + STATE(1617), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1580), 23, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, + ACTIONS(2231), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2237), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2239), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2245), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1406), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(1373), 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, - [106708] = 4, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [107514] = 5, + ACTIONS(2257), 1, + anon_sym_EQ, + STATE(1431), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 4, + ACTIONS(1488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 30, + ACTIONS(1490), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114131,19 +115180,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106755] = 4, + [107563] = 4, + ACTIONS(2259), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 4, + ACTIONS(1390), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 30, + ACTIONS(1392), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114160,7 +115210,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, @@ -114174,19 +115223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106802] = 4, + [107610] = 4, + STATE(1452), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 4, + ACTIONS(1496), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 30, + ACTIONS(1498), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114217,11 +115266,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106849] = 3, + [107657] = 20, + ACTIONS(2227), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_LBRACK, + ACTIONS(2233), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_QMARK_DOT, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, + ACTIONS(2247), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2255), 1, + anon_sym_PIPE, + ACTIONS(2263), 1, + anon_sym_not, + ACTIONS(2267), 1, + anon_sym_is, + STATE(1575), 1, + aux_sym_comparison_operator_repeat1, + STATE(1617), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 12, + ACTIONS(2231), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2239), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2261), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [107736] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2271), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -114234,7 +115342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2240), 24, + ACTIONS(2269), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -114259,23 +115367,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [106894] = 6, - ACTIONS(2236), 1, - anon_sym_and, - ACTIONS(2238), 1, - anon_sym_PLUS, + [107781] = 4, + ACTIONS(2273), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, + ACTIONS(1410), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 28, + ACTIONS(1412), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114289,8 +115394,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -114304,36 +115410,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106945] = 4, - ACTIONS(2244), 1, - anon_sym_DASH_GT, + [107828] = 5, + ACTIONS(2275), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 7, - anon_sym_EQ, + ACTIONS(1643), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1341), 28, + ACTIONS(1641), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -114347,211 +115454,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106992] = 21, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2246), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - anon_sym_STAR_STAR, - ACTIONS(2254), 1, - anon_sym_QMARK_DOT, - ACTIONS(2260), 1, - anon_sym_PIPE, - ACTIONS(2262), 1, - anon_sym_AMP, - ACTIONS(2264), 1, - anon_sym_CARET, - ACTIONS(2268), 1, - anon_sym_QMARK_LBRACK, - STATE(1583), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [107877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2256), 2, + ACTIONS(2277), 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(2258), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1520), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [107073] = 4, - STATE(2216), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 29, + anon_sym_TILDE, + sym_float, + ACTIONS(2279), 24, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COLON, + anon_sym_elif, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [107922] = 6, + ACTIONS(2249), 1, anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [107120] = 21, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2246), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - anon_sym_STAR_STAR, - ACTIONS(2254), 1, - anon_sym_QMARK_DOT, - ACTIONS(2260), 1, - anon_sym_PIPE, - ACTIONS(2262), 1, - anon_sym_AMP, - ACTIONS(2264), 1, - anon_sym_CARET, - ACTIONS(2268), 1, - anon_sym_QMARK_LBRACK, - STATE(1583), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2251), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2250), 2, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1331), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2258), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1532), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [107201] = 13, - ACTIONS(2246), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - anon_sym_STAR_STAR, - ACTIONS(2254), 1, - anon_sym_QMARK_DOT, - ACTIONS(2268), 1, - anon_sym_QMARK_LBRACK, - STATE(1583), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1544), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2258), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 21, + ACTIONS(1333), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -114562,13 +115540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [107266] = 3, + anon_sym_QMARK_LBRACK, + [107973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2270), 12, + ACTIONS(2277), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -114579,7 +115558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2272), 24, + ACTIONS(2279), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -114604,13 +115583,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [107311] = 3, + [108018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2274), 12, + ACTIONS(2283), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -114621,7 +115600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2276), 24, + ACTIONS(2281), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -114646,144 +115625,72 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [107356] = 10, - ACTIONS(2236), 1, - anon_sym_and, - ACTIONS(2238), 1, - anon_sym_PLUS, - ACTIONS(2278), 1, - anon_sym_as, - ACTIONS(2280), 1, - anon_sym_if, - ACTIONS(2282), 1, - anon_sym_or, + [108063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1455), 23, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [107415] = 14, - ACTIONS(2246), 1, + ACTIONS(2287), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2248), 1, anon_sym_LBRACK, - ACTIONS(2252), 1, - anon_sym_STAR_STAR, - ACTIONS(2254), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2268), 1, - anon_sym_QMARK_LBRACK, - STATE(1583), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2256), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2258), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 19, + anon_sym_TILDE, + sym_float, + ACTIONS(2285), 24, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, + anon_sym_elif, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - 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, - [107482] = 15, - ACTIONS(2246), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [108108] = 10, + ACTIONS(2227), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2229), 1, anon_sym_LBRACK, - ACTIONS(2252), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2254), 1, + ACTIONS(2235), 1, anon_sym_QMARK_DOT, - ACTIONS(2264), 1, - anon_sym_CARET, - ACTIONS(2268), 1, + ACTIONS(2247), 1, anon_sym_QMARK_LBRACK, - STATE(1583), 1, + STATE(1617), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2250), 2, + ACTIONS(1396), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2258), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114795,51 +115702,56 @@ 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, - [107551] = 16, - ACTIONS(2246), 1, + [108167] = 15, + ACTIONS(2227), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2229), 1, anon_sym_LBRACK, - ACTIONS(2252), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2254), 1, + ACTIONS(2235), 1, anon_sym_QMARK_DOT, - ACTIONS(2262), 1, - anon_sym_AMP, - ACTIONS(2264), 1, + ACTIONS(2243), 1, anon_sym_CARET, - ACTIONS(2268), 1, + ACTIONS(2247), 1, anon_sym_QMARK_LBRACK, - STATE(1583), 1, + STATE(1617), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2250), 2, + ACTIONS(2231), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2258), 2, + ACTIONS(2239), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2266), 2, + ACTIONS(2245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1542), 17, + ACTIONS(1398), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114852,86 +115764,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - [107622] = 12, - ACTIONS(2246), 1, + [108236] = 14, + ACTIONS(2227), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2229), 1, anon_sym_LBRACK, - ACTIONS(2252), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2254), 1, + ACTIONS(2235), 1, anon_sym_QMARK_DOT, - ACTIONS(2268), 1, + ACTIONS(2247), 1, anon_sym_QMARK_LBRACK, - STATE(1583), 1, + STATE(1617), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2250), 2, + ACTIONS(2231), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2258), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2239), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2245), 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, - [107685] = 10, - ACTIONS(2246), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - anon_sym_STAR_STAR, - ACTIONS(2254), 1, - anon_sym_QMARK_DOT, - ACTIONS(2268), 1, - anon_sym_QMARK_LBRACK, - STATE(1583), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1544), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1542), 25, + ACTIONS(1398), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114943,25 +115815,19 @@ 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, - [107744] = 3, + [108303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2284), 12, + ACTIONS(2271), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -114974,7 +115840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2286), 24, + ACTIONS(2269), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -114999,30 +115865,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [107789] = 10, - ACTIONS(2246), 1, + [108348] = 13, + ACTIONS(2227), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2229), 1, anon_sym_LBRACK, - ACTIONS(2252), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2254), 1, + ACTIONS(2235), 1, anon_sym_QMARK_DOT, - ACTIONS(2268), 1, + ACTIONS(2247), 1, anon_sym_QMARK_LBRACK, - STATE(1583), 1, + STATE(1617), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 25, + ACTIONS(2231), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2239), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115034,10 +115907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -115048,28 +115917,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [107848] = 8, - ACTIONS(2236), 1, + [108413] = 8, + ACTIONS(2249), 1, anon_sym_and, - ACTIONS(2238), 1, + ACTIONS(2251), 1, anon_sym_PLUS, - ACTIONS(2282), 1, + ACTIONS(2289), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1461), 4, + ACTIONS(1548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 25, + ACTIONS(1550), 25, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -115095,156 +115964,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107903] = 4, - STATE(1411), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1347), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1349), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + [108468] = 21, + ACTIONS(2102), 1, 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(2104), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [107950] = 4, - STATE(1436), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1431), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1429), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2227), 1, anon_sym_LPAREN, + ACTIONS(2229), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2233), 1, anon_sym_STAR_STAR, + ACTIONS(2235), 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(2241), 1, anon_sym_AMP, + ACTIONS(2243), 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(2247), 1, anon_sym_QMARK_LBRACK, - [107997] = 20, - ACTIONS(2246), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - anon_sym_STAR_STAR, - ACTIONS(2254), 1, - anon_sym_QMARK_DOT, - ACTIONS(2260), 1, + ACTIONS(2255), 1, anon_sym_PIPE, - ACTIONS(2262), 1, - anon_sym_AMP, - ACTIONS(2264), 1, - anon_sym_CARET, - ACTIONS(2268), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2290), 1, - anon_sym_not, - ACTIONS(2294), 1, - anon_sym_is, - STATE(1550), 1, - aux_sym_comparison_operator_repeat1, - STATE(1583), 1, + STATE(1617), 1, sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2250), 2, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2231), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, + ACTIONS(2237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2258), 2, + ACTIONS(2239), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2266), 2, + ACTIONS(2245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2292), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2288), 5, + ACTIONS(1381), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1251), 9, + ACTIONS(1448), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, anon_sym_and, anon_sym_or, - [108076] = 3, + [108549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2296), 12, + ACTIONS(2287), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -115257,7 +116041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2298), 24, + ACTIONS(2285), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -115282,20 +116066,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [108121] = 4, - STATE(1412), 1, - aux_sym_comparison_operator_repeat1, + [108594] = 4, + ACTIONS(2291), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, + ACTIONS(1410), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(1412), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115311,7 +116096,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, @@ -115325,80 +116109,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108168] = 3, + [108641] = 4, + STATE(1457), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 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(1496), 6, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2240), 24, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1498), 29, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_elif, + anon_sym_COLON, anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_LPAREN, + 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, - [108213] = 7, - ACTIONS(2236), 1, anon_sym_and, - ACTIONS(2238), 1, - anon_sym_PLUS, + 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, + [108688] = 5, + STATE(1451), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, + ACTIONS(2293), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1478), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 9, - anon_sym_DOT, + ACTIONS(1483), 28, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1580), 19, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -115413,81 +116196,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108266] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2302), 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(2300), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [108311] = 4, - STATE(1436), 1, + [108737] = 5, + ACTIONS(2296), 1, + anon_sym_PIPE, + STATE(1452), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 6, + ACTIONS(1383), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 29, + ACTIONS(1385), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -115498,21 +116240,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108358] = 5, - ACTIONS(2304), 1, - anon_sym_EQ, - STATE(1436), 1, - aux_sym_union_type_repeat1, + [108786] = 4, + STATE(1468), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1609), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 29, + ACTIONS(1611), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115542,36 +116283,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108407] = 4, + [108833] = 4, + ACTIONS(2299), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1516), 4, + ACTIONS(1390), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1514), 30, + ACTIONS(1392), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -115585,35 +116326,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108454] = 4, - STATE(1436), 1, - aux_sym_union_type_repeat1, + [108880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2283), 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(2281), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [108925] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1436), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 29, + ACTIONS(1438), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -115628,20 +116411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108501] = 4, - STATE(1412), 1, - aux_sym_comparison_operator_repeat1, + [108972] = 5, + ACTIONS(2301), 1, + anon_sym_PIPE, + STATE(1457), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, + ACTIONS(1383), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(1385), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115660,7 +116445,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, @@ -115671,20 +116455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108548] = 4, - STATE(1436), 1, + [109021] = 4, + STATE(1450), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 6, + ACTIONS(1383), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1385), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115714,21 +116498,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108595] = 4, - ACTIONS(2306), 1, - anon_sym_DASH_GT, + [109068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 7, + ACTIONS(2304), 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(2306), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [109113] = 4, + STATE(1450), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1335), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 28, + ACTIONS(1337), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115744,6 +116569,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, @@ -115757,20 +116583,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108642] = 4, - STATE(1436), 1, - aux_sym_union_type_repeat1, + [109160] = 4, + ACTIONS(2308), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 6, + ACTIONS(1335), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 29, + ACTIONS(1337), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115786,7 +116613,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, @@ -115800,24 +116626,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108689] = 5, - STATE(1452), 1, - aux_sym_dotted_name_repeat1, + [109207] = 10, + ACTIONS(2249), 1, + anon_sym_and, + ACTIONS(2251), 1, + anon_sym_PLUS, + ACTIONS(2289), 1, + anon_sym_or, + ACTIONS(2310), 1, + anon_sym_as, + ACTIONS(2312), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2308), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1433), 5, - anon_sym_EQ, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1569), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1438), 28, - anon_sym_as, - anon_sym_if, + ACTIONS(1567), 23, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, @@ -115827,9 +116661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_for, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -115844,19 +116675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108738] = 4, - STATE(1466), 1, + [109266] = 4, + STATE(1474), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 5, + ACTIONS(1327), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 30, + ACTIONS(1329), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115887,36 +116718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108785] = 5, - ACTIONS(2311), 1, + [109313] = 5, + ACTIONS(2314), 1, anon_sym_EQ, - STATE(1459), 1, + STATE(1450), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + ACTIONS(1488), 5, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 30, + ACTIONS(1490), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -115931,82 +116762,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108834] = 21, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2246), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - anon_sym_STAR_STAR, - ACTIONS(2254), 1, - anon_sym_QMARK_DOT, - ACTIONS(2260), 1, - anon_sym_PIPE, - ACTIONS(2262), 1, - anon_sym_AMP, - ACTIONS(2264), 1, - anon_sym_CARET, - ACTIONS(2268), 1, - anon_sym_QMARK_LBRACK, - STATE(1583), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [109362] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2258), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1560), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [108915] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2313), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1456), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1469), 4, + ACTIONS(1444), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1474), 28, + ACTIONS(1446), 30, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -116017,6 +116786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -116035,78 +116805,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108964] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2274), 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(2276), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [109009] = 4, - ACTIONS(2316), 1, - anon_sym_DASH_GT, + [109409] = 4, + STATE(1468), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 6, + ACTIONS(1609), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1341), 29, + ACTIONS(1611), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -116120,35 +116848,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109056] = 4, - STATE(1460), 1, + [109456] = 4, + STATE(1450), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1347), 5, + ACTIONS(1623), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1349), 30, + ACTIONS(1621), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116163,64 +116891,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109103] = 5, - ACTIONS(2318), 1, - anon_sym_PIPE, - STATE(1460), 1, - aux_sym_union_type_repeat1, + [109503] = 8, + ACTIONS(2319), 1, + anon_sym_not, + ACTIONS(2325), 1, + anon_sym_is, + STATE(1468), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 5, + ACTIONS(2322), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1627), 4, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1501), 29, + ACTIONS(2316), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1625), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [109152] = 4, - ACTIONS(2321), 1, - anon_sym_DASH_GT, + [109558] = 5, + ACTIONS(2251), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1538), 6, - anon_sym_EQ, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1428), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1536), 29, + ACTIONS(1430), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116236,7 +116968,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, anon_sym_PIPE, @@ -116250,30 +116982,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109199] = 4, - STATE(1459), 1, - aux_sym_union_type_repeat1, + [109607] = 9, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(1991), 1, + anon_sym_QMARK_COLON, + ACTIONS(2328), 1, + sym_isMutableFlag, + STATE(1294), 1, + sym_dict_expr, + STATE(2063), 1, + aux_sym_comparison_operator_repeat1, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 5, - anon_sym_EQ, + ACTIONS(750), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 30, + ACTIONS(748), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -116293,35 +117030,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109246] = 4, - STATE(1459), 1, - aux_sym_union_type_repeat1, + [109664] = 4, + STATE(1468), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 5, + ACTIONS(1609), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 30, + ACTIONS(1611), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116336,36 +117073,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109293] = 4, - ACTIONS(2323), 1, - anon_sym_DASH_GT, + [109711] = 4, + STATE(1450), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 6, + ACTIONS(1440), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1442), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -116379,19 +117116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109340] = 4, - STATE(1459), 1, - aux_sym_union_type_repeat1, + [109758] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 5, - anon_sym_EQ, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1458), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 30, + ACTIONS(1460), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116422,19 +117159,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109387] = 4, - STATE(1452), 1, + [109805] = 4, + STATE(1451), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 5, + ACTIONS(1323), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 30, + ACTIONS(1325), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116465,35 +117202,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109434] = 4, - STATE(1459), 1, - aux_sym_union_type_repeat1, + [109852] = 4, + STATE(1466), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1431), 5, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1429), 30, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116508,36 +117245,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109481] = 5, - ACTIONS(2238), 1, - anon_sym_PLUS, + [109899] = 4, + STATE(1450), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1383), 4, + ACTIONS(1432), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 29, + ACTIONS(1434), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116552,36 +117288,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109530] = 5, - ACTIONS(2238), 1, + [109946] = 21, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2227), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_LBRACK, + ACTIONS(2233), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_QMARK_DOT, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, + ACTIONS(2247), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2255), 1, + anon_sym_PIPE, + STATE(1617), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2231), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2239), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1345), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [110027] = 7, + ACTIONS(2249), 1, + anon_sym_and, + ACTIONS(2251), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 29, + ACTIONS(1291), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1299), 19, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116596,22 +117394,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109579] = 5, - ACTIONS(2238), 1, - anon_sym_PLUS, + [110080] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, + ACTIONS(2330), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1393), 4, + ACTIONS(1468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 29, - anon_sym_DOT, + ACTIONS(1473), 28, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -116622,10 +117420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116640,42 +117438,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109628] = 10, - ACTIONS(2246), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - anon_sym_STAR_STAR, - ACTIONS(2254), 1, - anon_sym_QMARK_DOT, - ACTIONS(2268), 1, - anon_sym_QMARK_LBRACK, - STATE(1583), 1, - sym_argument_list, - STATE(2254), 1, + [110129] = 4, + STATE(1468), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 4, + ACTIONS(1609), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1369), 25, + ACTIONS(1611), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, - anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116689,35 +117480,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [109687] = 4, - STATE(1412), 1, + anon_sym_QMARK_LBRACK, + [110176] = 10, + ACTIONS(2227), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_LBRACK, + ACTIONS(2233), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_QMARK_DOT, + ACTIONS(2247), 1, + anon_sym_QMARK_LBRACK, + STATE(1617), 1, + sym_argument_list, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, - anon_sym_EQ, + ACTIONS(1396), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(1398), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116731,21 +117530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [109734] = 5, - ACTIONS(2325), 1, - anon_sym_LBRACE, - STATE(1735), 1, - sym_dictionary, + [110235] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1534), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1536), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116776,11 +117573,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109783] = 3, + [110282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2270), 12, + ACTIONS(2335), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -116793,7 +117590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2272), 24, + ACTIONS(2333), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -116818,40 +117615,36 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [109828] = 9, - ACTIONS(1981), 1, - anon_sym_LBRACE, - ACTIONS(1985), 1, - anon_sym_QMARK_COLON, - ACTIONS(2327), 1, - sym_isMutableFlag, - STATE(1262), 1, - sym_dict_expr, - STATE(2046), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, + [110327] = 5, + ACTIONS(2251), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 26, + ACTIONS(1291), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116866,95 +117659,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109885] = 20, - ACTIONS(2246), 1, + [110376] = 10, + ACTIONS(2227), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2229), 1, anon_sym_LBRACK, - ACTIONS(2252), 1, + ACTIONS(2233), 1, anon_sym_STAR_STAR, - ACTIONS(2254), 1, + ACTIONS(2235), 1, anon_sym_QMARK_DOT, - ACTIONS(2260), 1, - anon_sym_PIPE, - ACTIONS(2262), 1, - anon_sym_AMP, - ACTIONS(2264), 1, - anon_sym_CARET, - ACTIONS(2268), 1, + ACTIONS(2247), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2290), 1, - anon_sym_not, - ACTIONS(2294), 1, - anon_sym_is, - STATE(1583), 1, + STATE(1617), 1, sym_argument_list, - STATE(2218), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2250), 2, + ACTIONS(1542), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2258), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2266), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2288), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 9, + ACTIONS(1544), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [109964] = 9, - ACTIONS(1981), 1, - anon_sym_LBRACE, - ACTIONS(1985), 1, - anon_sym_QMARK_COLON, - ACTIONS(2327), 1, - sym_isMutableFlag, - STATE(1262), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2258), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, @@ -116972,14 +117708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [110021] = 3, + [110435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2302), 12, + ACTIONS(2304), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -116990,7 +117725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2300), 24, + ACTIONS(2306), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -117015,13 +117750,116 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [110066] = 3, + [110480] = 5, + ACTIONS(2251), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1424), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1422), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [110529] = 20, + ACTIONS(2227), 1, + anon_sym_LPAREN, + ACTIONS(2229), 1, + anon_sym_LBRACK, + ACTIONS(2233), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_QMARK_DOT, + ACTIONS(2241), 1, + anon_sym_AMP, + ACTIONS(2243), 1, + anon_sym_CARET, + ACTIONS(2247), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2255), 1, + anon_sym_PIPE, + ACTIONS(2263), 1, + anon_sym_not, + ACTIONS(2267), 1, + anon_sym_is, + STATE(1617), 1, + sym_argument_list, + STATE(2232), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2231), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2239), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2261), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [110608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2284), 12, - sym__dedent, + ACTIONS(2335), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -117032,7 +117870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2286), 24, + ACTIONS(2333), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -117057,65 +117895,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [110111] = 3, + [110653] = 9, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(1991), 1, + anon_sym_QMARK_COLON, + ACTIONS(2328), 1, + sym_isMutableFlag, + STATE(1294), 1, + sym_dict_expr, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + STATE(2272), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2296), 12, - sym__dedent, - sym_string_start, + ACTIONS(750), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(748), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_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(2298), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [110156] = 6, - ACTIONS(2236), 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, + [110710] = 6, + ACTIONS(2249), 1, anon_sym_and, - ACTIONS(2238), 1, + ACTIONS(2251), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + ACTIONS(1289), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 28, + ACTIONS(1291), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117144,36 +117988,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110207] = 4, - STATE(1412), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [110761] = 4, + ACTIONS(1385), 1, + anon_sym_LF, + STATE(1588), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(1383), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -117181,41 +118022,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, - [110254] = 4, - STATE(1440), 1, - aux_sym_comparison_operator_repeat1, + [110807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1478), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1483), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117230,28 +118071,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110301] = 3, + [110851] = 20, + ACTIONS(2337), 1, + anon_sym_LPAREN, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2345), 1, + anon_sym_STAR_STAR, + ACTIONS(2347), 1, + anon_sym_QMARK_DOT, + ACTIONS(2349), 1, + anon_sym_not, + ACTIONS(2355), 1, + anon_sym_PIPE, + ACTIONS(2357), 1, + anon_sym_AMP, + ACTIONS(2359), 1, + anon_sym_CARET, + ACTIONS(2365), 1, + anon_sym_is, + ACTIONS(2367), 1, + anon_sym_QMARK_LBRACK, + STATE(1804), 1, + sym_argument_list, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, - anon_sym_EQ, + ACTIONS(2343), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2353), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2363), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(2341), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 8, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [110929] = 5, + ACTIONS(2369), 1, + anon_sym_LBRACE, + STATE(1935), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -117271,34 +118172,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110345] = 5, - ACTIONS(1391), 1, - anon_sym_LF, - ACTIONS(2329), 1, + [110977] = 10, + ACTIONS(2371), 1, + anon_sym_as, + ACTIONS(2373), 1, + anon_sym_if, + ACTIONS(2375), 1, + anon_sym_and, + ACTIONS(2377), 1, + anon_sym_or, + ACTIONS(2379), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1393), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1569), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1567), 22, + sym__newline, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -117306,39 +118214,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [110393] = 10, - ACTIONS(2167), 1, + [111035] = 10, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2381), 1, anon_sym_STAR_STAR, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 5, + ACTIONS(1542), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1369), 23, + ACTIONS(1544), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117362,28 +118268,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [110451] = 3, + [111093] = 4, + STATE(1502), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 5, + ACTIONS(1327), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 30, + ACTIONS(1329), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -117403,34 +118310,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110495] = 3, + [111139] = 5, + ACTIONS(2383), 1, + anon_sym_EQ, + STATE(1518), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_EQ, + ACTIONS(1488), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1619), 30, + ACTIONS(1490), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -117444,33 +118353,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110539] = 4, - ACTIONS(1491), 1, - anon_sym_LF, - ACTIONS(2333), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + [111187] = 5, + ACTIONS(2379), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 33, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1428), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1430), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_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, @@ -117478,25 +118390,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, - [110585] = 3, + [111235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(1681), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(1683), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117527,40 +118437,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110629] = 10, - ACTIONS(2335), 1, - anon_sym_as, - ACTIONS(2337), 1, - anon_sym_if, - ACTIONS(2339), 1, - anon_sym_and, - ACTIONS(2341), 1, - anon_sym_or, - ACTIONS(2343), 1, - anon_sym_PLUS, + [111279] = 4, + STATE(1622), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1449), 4, + ACTIONS(1323), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 22, + ACTIONS(1325), 29, sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_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, @@ -117575,29 +118479,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110687] = 4, - STATE(2256), 1, - aux_sym_comparison_operator_repeat1, + [111325] = 4, + STATE(1630), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1432), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1434), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -117617,17 +118521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110733] = 3, + [111371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_EQ, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(1725), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117636,6 +118539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -117658,33 +118562,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110777] = 4, - ACTIONS(1465), 1, - anon_sym_LF, - STATE(1600), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [111415] = 10, + ACTIONS(2337), 1, + anon_sym_LPAREN, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2345), 1, + anon_sym_STAR_STAR, + ACTIONS(2347), 1, + anon_sym_QMARK_DOT, + ACTIONS(2367), 1, + anon_sym_QMARK_LBRACK, + STATE(1804), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 33, + ACTIONS(1542), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1544), 24, + 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_else, 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, @@ -117692,92 +118605,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, - [110823] = 19, - ACTIONS(1251), 1, - anon_sym_LF, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2347), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2355), 1, - anon_sym_QMARK_DOT, - ACTIONS(2357), 1, - anon_sym_not, - ACTIONS(2361), 1, - anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_AMP, - ACTIONS(2365), 1, - anon_sym_CARET, - ACTIONS(2369), 1, anon_sym_is, - ACTIONS(2371), 1, - anon_sym_QMARK_LBRACK, - STATE(1681), 1, - sym_argument_list, - STATE(1812), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [111473] = 4, + STATE(1630), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2351), 4, + ACTIONS(1440), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1253), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(2349), 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, - [110899] = 5, - ACTIONS(1501), 1, - anon_sym_LF, - ACTIONS(2373), 1, - anon_sym_PIPE, - STATE(1496), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1503), 32, + ACTIONS(1442), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -117785,241 +118639,92 @@ 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, - [110947] = 22, - ACTIONS(2042), 1, + [111519] = 22, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2104), 1, anon_sym_is, - ACTIONS(2167), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2381), 1, anon_sym_STAR_STAR, - ACTIONS(2378), 1, + ACTIONS(2387), 1, anon_sym_PLUS, - ACTIONS(2380), 1, + ACTIONS(2389), 1, anon_sym_DASH, - ACTIONS(2384), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2386), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2388), 1, + ACTIONS(2397), 1, anon_sym_CARET, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2376), 2, + ACTIONS(2385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2382), 2, + ACTIONS(2391), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2390), 2, + ACTIONS(2399), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1560), 3, + ACTIONS(1406), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [111029] = 4, - ACTIONS(1536), 1, - anon_sym_LF, - ACTIONS(2392), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1538), 33, + ACTIONS(1448), 5, 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, - [111075] = 20, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, - anon_sym_QMARK_DOT, - ACTIONS(2406), 1, - anon_sym_not, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_AMP, - ACTIONS(2416), 1, - anon_sym_CARET, - ACTIONS(2422), 1, - anon_sym_is, - ACTIONS(2424), 1, - anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2230), 1, - aux_sym_comparison_operator_repeat1, + [111601] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2410), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2420), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 8, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [111153] = 8, - ACTIONS(1463), 1, - anon_sym_LF, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(2426), 1, - anon_sym_and, - ACTIONS(2428), 1, - anon_sym_or, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(946), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1613), 2, + STATE(1532), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1461), 27, - 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_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, - [111207] = 5, - ACTIONS(2430), 1, - anon_sym_LBRACE, - STATE(1938), 1, - sym_dictionary, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1534), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1536), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -118049,33 +118754,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111255] = 4, - ACTIONS(1341), 1, - anon_sym_LF, - ACTIONS(2432), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + [111647] = 5, + ACTIONS(2401), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 33, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1424), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1422), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118083,47 +118791,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, - [111301] = 8, - ACTIONS(2339), 1, - anon_sym_and, - ACTIONS(2341), 1, - anon_sym_or, - ACTIONS(2343), 1, + [111695] = 5, + ACTIONS(2401), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1461), 4, + ACTIONS(1289), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 24, - sym__newline, + ACTIONS(1291), 27, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_DASH, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118137,84 +118840,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111355] = 10, - ACTIONS(1455), 1, - anon_sym_LF, - ACTIONS(2329), 1, + [111743] = 5, + ACTIONS(2401), 1, anon_sym_PLUS, - ACTIONS(2426), 1, - anon_sym_and, - ACTIONS(2428), 1, - anon_sym_or, - ACTIONS(2434), 1, - anon_sym_as, - ACTIONS(2436), 1, - anon_sym_if, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1613), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1449), 25, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(1428), 5, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_not, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [111413] = 5, - STATE(1505), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2438), 2, + ACTIONS(1430), 27, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1433), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1438), 27, - sym__newline, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_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, @@ -118228,23 +118883,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111461] = 5, - ACTIONS(2343), 1, + [111791] = 8, + ACTIONS(2375), 1, + anon_sym_and, + ACTIONS(2377), 1, + anon_sym_or, + ACTIONS(2379), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1383), 4, + ACTIONS(1548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 28, + ACTIONS(1550), 24, sym__newline, - anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -118253,10 +118914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -118271,35 +118929,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111509] = 4, - ACTIONS(2304), 1, - anon_sym_EQ, + [111845] = 4, + STATE(1518), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1432), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 29, + ACTIONS(1434), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118313,29 +118971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111555] = 8, - ACTIONS(2441), 1, - anon_sym_and, - ACTIONS(2443), 1, - anon_sym_or, - ACTIONS(2445), 1, - anon_sym_PLUS, + [111891] = 4, + STATE(1518), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1461), 5, + ACTIONS(1440), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 23, + ACTIONS(1442), 28, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -118345,7 +118995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118359,35 +119013,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111609] = 5, - ACTIONS(2123), 1, - anon_sym_in, - ACTIONS(2447), 1, - anon_sym_not, + [111937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, - anon_sym_EQ, + ACTIONS(1711), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1709), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -118402,33 +119054,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111657] = 10, - ACTIONS(2441), 1, - anon_sym_and, - ACTIONS(2443), 1, - anon_sym_or, - ACTIONS(2445), 1, - anon_sym_PLUS, - ACTIONS(2449), 1, - anon_sym_as, - ACTIONS(2451), 1, - anon_sym_if, + [111981] = 4, + STATE(1518), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1449), 5, + ACTIONS(1335), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 21, + ACTIONS(1337), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -118436,7 +119078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118450,38 +119096,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111715] = 10, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [112027] = 4, + STATE(1518), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 5, + ACTIONS(1383), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 23, + ACTIONS(1385), 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, @@ -118498,38 +119137,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111773] = 10, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [112073] = 4, + STATE(1550), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 5, + ACTIONS(1496), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 23, + ACTIONS(1498), 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, @@ -118546,104 +119179,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111831] = 20, - ACTIONS(2394), 1, + anon_sym_QMARK_LBRACK, + [112119] = 21, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2337), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2402), 1, + ACTIONS(2345), 1, anon_sym_STAR_STAR, - ACTIONS(2404), 1, + ACTIONS(2347), 1, anon_sym_QMARK_DOT, - ACTIONS(2406), 1, - anon_sym_not, - ACTIONS(2412), 1, + ACTIONS(2355), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2357), 1, anon_sym_AMP, - ACTIONS(2416), 1, + ACTIONS(2359), 1, anon_sym_CARET, - ACTIONS(2422), 1, - anon_sym_is, - ACTIONS(2424), 1, + ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - STATE(1633), 1, - aux_sym_comparison_operator_repeat1, - STATE(1680), 1, + STATE(1804), 1, sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, + ACTIONS(2351), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2410), 2, + ACTIONS(2353), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2418), 2, + ACTIONS(2361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2420), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 5, + ACTIONS(1406), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1251), 8, - sym__newline, + ACTIONS(1448), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, anon_sym_and, anon_sym_or, - [111909] = 12, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, + [112199] = 4, + STATE(2267), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2376), 2, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2382), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1544), 3, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 21, + ACTIONS(1641), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -118654,45 +119280,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111971] = 17, - ACTIONS(2167), 1, + anon_sym_QMARK_LBRACK, + [112245] = 10, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2381), 1, anon_sym_STAR_STAR, - ACTIONS(2378), 1, - anon_sym_PLUS, - ACTIONS(2380), 1, - anon_sym_DASH, - ACTIONS(2386), 1, - anon_sym_AMP, - ACTIONS(2388), 1, - anon_sym_CARET, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2376), 2, + ACTIONS(1396), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2382), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2390), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -118703,49 +119316,44 @@ 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [112043] = 16, - ACTIONS(2167), 1, + [112303] = 10, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2381), 1, anon_sym_STAR_STAR, - ACTIONS(2378), 1, - anon_sym_PLUS, - ACTIONS(2380), 1, - anon_sym_DASH, - ACTIONS(2388), 1, - anon_sym_CARET, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2376), 2, + ACTIONS(1396), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2382), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2390), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -118756,98 +119364,91 @@ 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, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [112113] = 15, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2378), 1, - anon_sym_PLUS, - ACTIONS(2380), 1, - anon_sym_DASH, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [112361] = 5, + ACTIONS(2403), 1, + anon_sym_EQ, + STATE(1630), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2376), 2, + ACTIONS(1488), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2382), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2390), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1490), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [112181] = 14, - ACTIONS(2167), 1, + anon_sym_QMARK_LBRACK, + [112409] = 12, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2381), 1, anon_sym_STAR_STAR, - ACTIONS(2378), 1, - anon_sym_PLUS, - ACTIONS(2380), 1, - anon_sym_DASH, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2376), 2, + ACTIONS(2385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2382), 2, + ACTIONS(2391), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1542), 20, + ACTIONS(1396), 3, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -118858,6 +119459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -118868,395 +119470,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [112247] = 21, - ACTIONS(2167), 1, + [112471] = 17, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2381), 1, anon_sym_STAR_STAR, - ACTIONS(2378), 1, + ACTIONS(2387), 1, anon_sym_PLUS, - ACTIONS(2380), 1, + ACTIONS(2389), 1, anon_sym_DASH, - ACTIONS(2384), 1, - anon_sym_PIPE, - ACTIONS(2386), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2388), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2455), 1, - anon_sym_not, - ACTIONS(2459), 1, - anon_sym_is, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2225), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2376), 2, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2382), 2, + ACTIONS(2391), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2390), 2, + ACTIONS(2399), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2457), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2453), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 8, + ACTIONS(1398), 16, 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, - [112327] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1443), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [112373] = 4, - STATE(1551), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + [112543] = 16, + ACTIONS(2175), 1, anon_sym_LPAREN, + ACTIONS(2177), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [112419] = 5, - ACTIONS(2461), 1, - anon_sym_EQ, - STATE(1621), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1397), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 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, + ACTIONS(2381), 1, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2387), 1, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2389), 1, + anon_sym_DASH, + ACTIONS(2397), 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, - [112467] = 6, - ACTIONS(2441), 1, - anon_sym_and, - ACTIONS(2445), 1, - anon_sym_PLUS, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_or, + ACTIONS(2385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2391), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2399), 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, - [112517] = 6, - ACTIONS(1387), 1, - anon_sym_LF, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(2426), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 30, + ACTIONS(1398), 17, 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_PERCENT, - 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, + [112613] = 15, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [112567] = 7, - ACTIONS(2441), 1, - anon_sym_and, - ACTIONS(2445), 1, + ACTIONS(2381), 1, + anon_sym_STAR_STAR, + ACTIONS(2387), 1, anon_sym_PLUS, + ACTIONS(2389), 1, + anon_sym_DASH, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1387), 5, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2391), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1578), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1580), 21, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [112681] = 14, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [112619] = 4, - ACTIONS(1429), 1, - anon_sym_LF, - STATE(1600), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + ACTIONS(2381), 1, + anon_sym_STAR_STAR, + ACTIONS(2387), 1, + anon_sym_PLUS, + ACTIONS(2389), 1, + anon_sym_DASH, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1431), 33, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2391), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 20, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, 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, - [112665] = 3, + [112747] = 4, + ACTIONS(2405), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(1335), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 30, + ACTIONS(1337), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119270,30 +119726,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112709] = 5, - ACTIONS(2463), 1, - anon_sym_PIPE, - STATE(1528), 1, + [112793] = 4, + STATE(1630), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 6, + ACTIONS(1335), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 27, + ACTIONS(1337), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -119301,8 +119754,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, @@ -119313,36 +119768,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112757] = 7, - ACTIONS(1580), 1, - anon_sym_LF, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(2426), 1, + [112839] = 7, + ACTIONS(2375), 1, anon_sym_and, - ACTIONS(5), 2, + ACTIONS(2379), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 5, + ACTIONS(1297), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1291), 8, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_or, - ACTIONS(1578), 25, - anon_sym_COMMA, + ACTIONS(1299), 19, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_not, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119350,105 +119807,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, - [112809] = 21, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2378), 1, - anon_sym_PLUS, - ACTIONS(2380), 1, - anon_sym_DASH, - ACTIONS(2384), 1, - anon_sym_PIPE, - ACTIONS(2386), 1, - anon_sym_AMP, - ACTIONS(2388), 1, - anon_sym_CARET, - ACTIONS(2455), 1, - anon_sym_not, - ACTIONS(2459), 1, - anon_sym_is, - STATE(1263), 1, - sym_argument_list, - STATE(1783), 1, - aux_sym_comparison_operator_repeat1, + [112891] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2376), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2382), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2390), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2457), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2453), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 8, + ACTIONS(2407), 2, 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, - [112889] = 7, - ACTIONS(2441), 1, - anon_sym_and, - ACTIONS(2445), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1173), 2, + anon_sym_QMARK_DOT, + STATE(1532), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1578), 5, + ACTIONS(1468), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 8, - anon_sym_DOT, + ACTIONS(1473), 27, + sym__newline, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1580), 18, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119462,22 +119856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112941] = 4, - ACTIONS(1443), 1, + [112939] = 4, + ACTIONS(1337), 1, anon_sym_LF, + ACTIONS(2410), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 32, + ACTIONS(1335), 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, @@ -119504,30 +119898,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [112987] = 4, + [112985] = 10, + ACTIONS(2337), 1, + anon_sym_LPAREN, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2345), 1, + anon_sym_STAR_STAR, + ACTIONS(2347), 1, + anon_sym_QMARK_DOT, + ACTIONS(2367), 1, + anon_sym_QMARK_LBRACK, + STATE(1804), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 4, + ACTIONS(1396), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 29, + ACTIONS(1398), 24, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -119545,31 +119946,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [113043] = 10, + ACTIONS(2337), 1, + anon_sym_LPAREN, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2345), 1, + anon_sym_STAR_STAR, + ACTIONS(2347), 1, + anon_sym_QMARK_DOT, + ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - [113033] = 4, + STATE(1804), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 4, + ACTIONS(1396), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 29, + ACTIONS(1398), 24, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -119587,205 +119994,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [113079] = 10, - ACTIONS(1369), 1, - anon_sym_LF, - ACTIONS(2345), 1, + [113101] = 12, + ACTIONS(2337), 1, anon_sym_LPAREN, - ACTIONS(2347), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2345), 1, anon_sym_STAR_STAR, - ACTIONS(2355), 1, + ACTIONS(2347), 1, anon_sym_QMARK_DOT, - ACTIONS(2371), 1, + ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - STATE(1681), 1, + STATE(1804), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 27, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2353), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 22, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, anon_sym_in, - anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - [113137] = 22, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2167), 1, + [113163] = 16, + ACTIONS(2337), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, + ACTIONS(2345), 1, anon_sym_STAR_STAR, - ACTIONS(2378), 1, - anon_sym_PLUS, - ACTIONS(2380), 1, - anon_sym_DASH, - ACTIONS(2384), 1, - anon_sym_PIPE, - ACTIONS(2386), 1, + ACTIONS(2347), 1, + anon_sym_QMARK_DOT, + ACTIONS(2357), 1, anon_sym_AMP, - ACTIONS(2388), 1, + ACTIONS(2359), 1, anon_sym_CARET, - STATE(1263), 1, + ACTIONS(2367), 1, + anon_sym_QMARK_LBRACK, + STATE(1804), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2376), 2, + ACTIONS(2343), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2382), 2, + ACTIONS(2351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2353), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2390), 2, + ACTIONS(2361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1532), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1251), 5, + ACTIONS(1398), 16, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [113219] = 22, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, anon_sym_is, - ACTIONS(2167), 1, + [113233] = 15, + ACTIONS(2337), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2345), 1, + anon_sym_STAR_STAR, + ACTIONS(2347), 1, anon_sym_QMARK_DOT, - ACTIONS(2199), 1, + ACTIONS(2359), 1, + anon_sym_CARET, + ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2378), 1, + STATE(1804), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2351), 2, anon_sym_PLUS, - ACTIONS(2380), 1, anon_sym_DASH, - ACTIONS(2384), 1, + ACTIONS(2353), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 17, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, - ACTIONS(2386), 1, anon_sym_AMP, - ACTIONS(2388), 1, - anon_sym_CARET, - STATE(1263), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [113301] = 14, + ACTIONS(2337), 1, + anon_sym_LPAREN, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2345), 1, + anon_sym_STAR_STAR, + ACTIONS(2347), 1, + anon_sym_QMARK_DOT, + ACTIONS(2367), 1, + anon_sym_QMARK_LBRACK, + STATE(1804), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2376), 2, + ACTIONS(2343), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2382), 2, + ACTIONS(2351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2353), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2390), 2, + ACTIONS(2361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1520), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1251), 5, + ACTIONS(1398), 18, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, + 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, - [113301] = 6, - ACTIONS(2339), 1, - anon_sym_and, - ACTIONS(2343), 1, - anon_sym_PLUS, + anon_sym_is, + [113367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, + ACTIONS(1677), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 27, - sym__newline, + ACTIONS(1679), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -119800,17 +120244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113351] = 3, + [113411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(1673), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(1675), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -119841,36 +120285,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113395] = 6, - ACTIONS(2339), 1, - anon_sym_and, - ACTIONS(2343), 1, - anon_sym_PLUS, + [113455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + ACTIONS(1669), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 27, - sym__newline, + ACTIONS(1671), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -119885,29 +120326,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113445] = 4, + [113499] = 13, + ACTIONS(2337), 1, + anon_sym_LPAREN, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2345), 1, + anon_sym_STAR_STAR, + ACTIONS(2347), 1, + anon_sym_QMARK_DOT, + ACTIONS(2367), 1, + anon_sym_QMARK_LBRACK, + STATE(1804), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1516), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1514), 29, + ACTIONS(2343), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2353), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 20, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [113563] = 21, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2381), 1, + anon_sym_STAR_STAR, + ACTIONS(2387), 1, + anon_sym_PLUS, + ACTIONS(2389), 1, + anon_sym_DASH, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2395), 1, + anon_sym_AMP, + ACTIONS(2397), 1, + anon_sym_CARET, + ACTIONS(2414), 1, + anon_sym_not, + ACTIONS(2418), 1, + anon_sym_is, + STATE(1296), 1, + sym_argument_list, + STATE(1731), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2391), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2416), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2412), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 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, + [113643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -119927,134 +120477,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113491] = 21, - ACTIONS(2042), 1, + [113687] = 22, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2104), 1, anon_sym_is, - ACTIONS(2394), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2177), 1, anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - ACTIONS(2412), 1, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2381), 1, + anon_sym_STAR_STAR, + ACTIONS(2387), 1, + anon_sym_PLUS, + ACTIONS(2389), 1, + anon_sym_DASH, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2416), 1, + ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2424), 1, - anon_sym_QMARK_LBRACK, - STATE(1680), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2400), 2, + ACTIONS(2385), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2410), 2, + ACTIONS(2391), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2418), 2, + ACTIONS(2399), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1520), 3, - sym__newline, + ACTIONS(1381), 3, anon_sym_COMMA, - anon_sym_else, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, + anon_sym_DASH_GT, + anon_sym_LBRACE, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [113571] = 4, - ACTIONS(1481), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 32, + ACTIONS(1448), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + [113769] = 22, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2175), 1, anon_sym_LPAREN, + ACTIONS(2177), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2381), 1, + anon_sym_STAR_STAR, + ACTIONS(2387), 1, anon_sym_PLUS, + ACTIONS(2389), 1, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2393), 1, anon_sym_PIPE, + ACTIONS(2395), 1, anon_sym_AMP, + ACTIONS(2397), 1, anon_sym_CARET, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2391), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + ACTIONS(1345), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + ACTIONS(1373), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [113617] = 4, - ACTIONS(1481), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [113851] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 32, + ACTIONS(1839), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1837), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120062,104 +120632,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [113663] = 21, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2394), 1, + [113895] = 20, + ACTIONS(2337), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2402), 1, + ACTIONS(2345), 1, anon_sym_STAR_STAR, - ACTIONS(2404), 1, + ACTIONS(2347), 1, anon_sym_QMARK_DOT, - ACTIONS(2412), 1, + ACTIONS(2349), 1, + anon_sym_not, + ACTIONS(2355), 1, anon_sym_PIPE, - ACTIONS(2414), 1, + ACTIONS(2357), 1, anon_sym_AMP, - ACTIONS(2416), 1, + ACTIONS(2359), 1, anon_sym_CARET, - ACTIONS(2424), 1, + ACTIONS(2365), 1, + anon_sym_is, + ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2254), 1, + STATE(1654), 1, aux_sym_comparison_operator_repeat1, + STATE(1804), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2400), 2, + ACTIONS(2343), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, + ACTIONS(2351), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2410), 2, + ACTIONS(2353), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2418), 2, + ACTIONS(2361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1532), 3, + ACTIONS(2363), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2341), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 8, sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1251), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_and, anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [113743] = 3, + [113973] = 5, + ACTIONS(2420), 1, + anon_sym_PIPE, + STATE(1550), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 5, + ACTIONS(1383), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 30, + ACTIONS(1385), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -120170,59 +120739,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113787] = 6, - ACTIONS(1485), 1, + [114021] = 19, + ACTIONS(1448), 1, anon_sym_LF, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(2426), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2423), 1, anon_sym_LPAREN, + ACTIONS(2425), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_STAR_STAR, + ACTIONS(2433), 1, anon_sym_QMARK_DOT, + ACTIONS(2435), 1, anon_sym_not, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2439), 1, anon_sym_PIPE, + ACTIONS(2441), 1, anon_sym_AMP, + ACTIONS(2443), 1, anon_sym_CARET, + ACTIONS(2447), 1, + anon_sym_is, + ACTIONS(2449), 1, + anon_sym_QMARK_LBRACK, + STATE(1812), 1, + sym_argument_list, + STATE(2243), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2437), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2429), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1343), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(2427), 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, - [113837] = 4, - ACTIONS(1589), 1, + [114097] = 5, + ACTIONS(1385), 1, anon_sym_LF, - STATE(1592), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2451), 1, + anon_sym_PIPE, + STATE(1552), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 33, + ACTIONS(1383), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120243,7 +120827,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, @@ -120256,17 +120839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [113883] = 3, + [114145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 5, + ACTIONS(1619), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 30, + ACTIONS(1617), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120297,35 +120880,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113927] = 4, - STATE(1598), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [114189] = 5, + ACTIONS(1422), 1, + anon_sym_LF, + ACTIONS(2454), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 30, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1424), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120333,41 +120915,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, - [113973] = 4, - STATE(1598), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [114237] = 4, + ACTIONS(1392), 1, + anon_sym_LF, + ACTIONS(2456), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 30, + ACTIONS(1390), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120375,28 +120957,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, - [114019] = 4, - ACTIONS(1491), 1, + [114283] = 5, + ACTIONS(1291), 1, anon_sym_LF, - STATE(1600), 1, - aux_sym_union_type_repeat1, + ACTIONS(2454), 1, + anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 33, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 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, @@ -120405,7 +120991,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_SLASH, anon_sym_PERCENT, @@ -120423,35 +121008,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [114065] = 4, - STATE(1598), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [114331] = 5, + ACTIONS(1430), 1, + anon_sym_LF, + ACTIONS(2454), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 30, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1428), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120459,30 +121043,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, - [114111] = 6, - ACTIONS(2441), 1, - anon_sym_and, - ACTIONS(2445), 1, + [114379] = 6, + ACTIONS(2401), 1, anon_sym_PLUS, + ACTIONS(2458), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1487), 5, + ACTIONS(1289), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 26, + ACTIONS(1291), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120509,42 +121095,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114161] = 10, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, - anon_sym_QMARK_DOT, - ACTIONS(2424), 1, - anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [114429] = 6, + ACTIONS(1291), 1, + anon_sym_LF, + ACTIONS(2454), 1, + anon_sym_PLUS, + ACTIONS(2460), 1, + anon_sym_and, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1369), 24, - sym__newline, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120552,40 +121131,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, - [114219] = 4, - STATE(1598), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [114479] = 7, + ACTIONS(2401), 1, + anon_sym_PLUS, + ACTIONS(2458), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1297), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1299), 21, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120599,22 +121184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114265] = 4, - ACTIONS(1595), 1, + [114531] = 5, + ACTIONS(1641), 1, anon_sym_LF, - STATE(1548), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2462), 1, + anon_sym_LBRACE, + STATE(1869), 1, + sym_dictionary, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 33, + ACTIONS(1643), 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, @@ -120641,36 +121227,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [114311] = 5, - ACTIONS(2343), 1, + [114579] = 7, + ACTIONS(1299), 1, + anon_sym_LF, + ACTIONS(2454), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(2460), 1, + anon_sym_and, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, + STATE(1569), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1387), 28, - sym__newline, + ACTIONS(1289), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1297), 25, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120678,27 +121264,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, - [114359] = 5, - ACTIONS(2343), 1, - anon_sym_PLUS, + [114631] = 5, + ACTIONS(2464), 1, + anon_sym_PIPE, + STATE(1563), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1393), 4, + ACTIONS(1383), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 28, + ACTIONS(1385), 28, sym__newline, anon_sym_DOT, anon_sym_as, @@ -120713,10 +121301,10 @@ 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, @@ -120727,36 +121315,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114407] = 5, - ACTIONS(2123), 1, - anon_sym_in, - ACTIONS(2466), 1, - anon_sym_not, + [114679] = 6, + ACTIONS(2401), 1, + anon_sym_PLUS, + ACTIONS(2458), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, - anon_sym_EQ, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1331), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1333), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_and, + anon_sym_not, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120770,33 +121359,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114455] = 4, - ACTIONS(1514), 1, - anon_sym_LF, - ACTIONS(5), 2, + [114729] = 7, + ACTIONS(2401), 1, + anon_sym_PLUS, + ACTIONS(2458), 1, + anon_sym_and, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1516), 32, + ACTIONS(1297), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1291), 8, 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(1299), 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, @@ -120804,194 +121398,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [114501] = 20, - ACTIONS(1520), 1, - anon_sym_LF, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2347), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2355), 1, - anon_sym_QMARK_DOT, - ACTIONS(2361), 1, - anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_AMP, - ACTIONS(2365), 1, - anon_sym_CARET, - ACTIONS(2371), 1, - anon_sym_QMARK_LBRACK, - STATE(1681), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1522), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2351), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1253), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1524), 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, - [114579] = 20, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, anon_sym_is, - ACTIONS(1532), 1, - anon_sym_LF, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2347), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2355), 1, - anon_sym_QMARK_DOT, - ACTIONS(2361), 1, - anon_sym_PIPE, - ACTIONS(2363), 1, - anon_sym_AMP, - ACTIONS(2365), 1, - anon_sym_CARET, - ACTIONS(2371), 1, anon_sym_QMARK_LBRACK, - STATE(1681), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1534), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2351), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1253), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1524), 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, - [114657] = 13, - ACTIONS(2394), 1, + [114781] = 10, + ACTIONS(1544), 1, + anon_sym_LF, + ACTIONS(2423), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2425), 1, anon_sym_LBRACK, - ACTIONS(2402), 1, + ACTIONS(2431), 1, anon_sym_STAR_STAR, - ACTIONS(2404), 1, + ACTIONS(2433), 1, anon_sym_QMARK_DOT, - ACTIONS(2424), 1, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - STATE(1680), 1, + STATE(1812), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2400), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2410), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 20, - sym__newline, + ACTIONS(1542), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + 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, - [114721] = 4, + [114839] = 4, + STATE(1630), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1601), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1351), 4, + ACTIONS(1383), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1353), 29, + ACTIONS(1385), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -121021,74 +121494,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114767] = 14, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, - anon_sym_QMARK_DOT, - ACTIONS(2424), 1, - anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [114885] = 4, + ACTIONS(2467), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2400), 2, + ACTIONS(1390), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2410), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 18, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1392), 28, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [114833] = 4, - ACTIONS(1501), 1, + anon_sym_QMARK_LBRACK, + [114931] = 4, + ACTIONS(1536), 1, anon_sym_LF, - STATE(1600), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 33, + STATE(1597), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1534), 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, @@ -121115,143 +121578,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [114879] = 15, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, - anon_sym_QMARK_DOT, - ACTIONS(2416), 1, - anon_sym_CARET, - ACTIONS(2424), 1, - anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [114977] = 10, + ACTIONS(2401), 1, + anon_sym_PLUS, + ACTIONS(2458), 1, + anon_sym_and, + ACTIONS(2469), 1, + anon_sym_as, + ACTIONS(2471), 1, + anon_sym_if, + ACTIONS(2473), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2400), 2, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1569), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2410), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 17, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1567), 21, anon_sym_COMMA, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [114947] = 16, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, - anon_sym_QMARK_DOT, - ACTIONS(2414), 1, - anon_sym_AMP, - ACTIONS(2416), 1, - anon_sym_CARET, - ACTIONS(2424), 1, anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [115035] = 6, + ACTIONS(2375), 1, + anon_sym_and, + ACTIONS(2379), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2400), 2, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2410), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1291), 27, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [115017] = 5, - ACTIONS(2445), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [115085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1393), 5, + ACTIONS(1685), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 27, + ACTIONS(1687), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121265,85 +121711,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115065] = 12, - ACTIONS(2394), 1, + [115129] = 19, + ACTIONS(1448), 1, + anon_sym_LF, + ACTIONS(2423), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2425), 1, anon_sym_LBRACK, - ACTIONS(2402), 1, + ACTIONS(2431), 1, anon_sym_STAR_STAR, - ACTIONS(2404), 1, + ACTIONS(2433), 1, anon_sym_QMARK_DOT, - ACTIONS(2424), 1, + ACTIONS(2435), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_PIPE, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, + anon_sym_CARET, + ACTIONS(2447), 1, + anon_sym_is, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - STATE(1680), 1, + STATE(1812), 1, sym_argument_list, - STATE(2254), 1, + STATE(1822), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2400), 2, + ACTIONS(2437), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2429), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2410), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1542), 22, - sym__newline, + ACTIONS(1343), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_not, + anon_sym_RBRACE, 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, + ACTIONS(2427), 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, - [115127] = 4, - STATE(2219), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + anon_sym_GT, + [115205] = 4, + ACTIONS(1325), 1, + anon_sym_LF, + STATE(1593), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1323), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121351,23 +121802,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, - [115173] = 3, + [115251] = 4, + STATE(1633), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_EQ, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 30, + ACTIONS(1611), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -121398,36 +121852,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115217] = 7, - ACTIONS(1387), 1, - anon_sym_LF, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(2426), 1, - anon_sym_and, - ACTIONS(5), 2, + [115297] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 7, + ACTIONS(1665), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1667), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1578), 23, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121435,45 +121887,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, - [115269] = 10, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, - anon_sym_QMARK_DOT, - ACTIONS(2424), 1, - anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2254), 1, + [115341] = 4, + STATE(1633), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 24, - sym__newline, + ACTIONS(1611), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -121491,36 +121934,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [115327] = 5, - ACTIONS(2445), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [115387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 5, + ACTIONS(1661), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 27, + ACTIONS(1663), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121534,37 +121976,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115375] = 10, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, - anon_sym_QMARK_DOT, - ACTIONS(2424), 1, - anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2254), 1, + [115431] = 4, + STATE(1577), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 24, - sym__newline, + ACTIONS(1641), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -121582,289 +122017,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [115433] = 12, - ACTIONS(1542), 1, - anon_sym_LF, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2347), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2355), 1, - anon_sym_QMARK_DOT, - ACTIONS(2371), 1, anon_sym_QMARK_LBRACK, - STATE(1681), 1, - sym_argument_list, - STATE(2254), 1, + [115477] = 4, + STATE(1633), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2351), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1544), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - [115495] = 13, - ACTIONS(1542), 1, - anon_sym_LF, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2347), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2355), 1, - anon_sym_QMARK_DOT, - ACTIONS(2371), 1, anon_sym_QMARK_LBRACK, - STATE(1681), 1, - sym_argument_list, - STATE(2254), 1, + [115523] = 4, + STATE(1633), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2351), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1544), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [115559] = 14, - ACTIONS(1542), 1, - anon_sym_LF, - ACTIONS(2345), 1, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(2347), 1, anon_sym_LBRACK, - ACTIONS(2353), 1, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2355), 1, + anon_sym_for, anon_sym_QMARK_DOT, - ACTIONS(2365), 1, - anon_sym_CARET, - ACTIONS(2371), 1, - anon_sym_QMARK_LBRACK, - STATE(1681), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2359), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2351), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1544), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PIPE, anon_sym_AMP, - anon_sym_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, - [115625] = 15, - ACTIONS(1542), 1, - anon_sym_LF, - ACTIONS(2345), 1, + anon_sym_QMARK_LBRACK, + [115569] = 21, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2337), 1, anon_sym_LPAREN, - ACTIONS(2347), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2345), 1, anon_sym_STAR_STAR, - ACTIONS(2355), 1, + ACTIONS(2347), 1, anon_sym_QMARK_DOT, - ACTIONS(2363), 1, + ACTIONS(2355), 1, + anon_sym_PIPE, + ACTIONS(2357), 1, anon_sym_AMP, - ACTIONS(2365), 1, + ACTIONS(2359), 1, anon_sym_CARET, - ACTIONS(2371), 1, + ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - STATE(1681), 1, + STATE(1804), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2351), 4, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2353), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1544), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1381), 3, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, + ACTIONS(1373), 5, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [115693] = 11, - ACTIONS(1542), 1, - anon_sym_LF, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2347), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2355), 1, - anon_sym_QMARK_DOT, - ACTIONS(2371), 1, - anon_sym_QMARK_LBRACK, - STATE(1681), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2351), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1544), 23, + ACTIONS(1448), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_not, anon_sym_and, anon_sym_or, - 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, - [115753] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1697), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1699), 31, + [115649] = 4, + ACTIONS(1329), 1, + anon_sym_LF, + STATE(1574), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1327), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121872,44 +122195,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [115797] = 10, - ACTIONS(1542), 1, - anon_sym_LF, - ACTIONS(2345), 1, + [115695] = 21, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2337), 1, anon_sym_LPAREN, - ACTIONS(2347), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2345), 1, anon_sym_STAR_STAR, - ACTIONS(2355), 1, + ACTIONS(2347), 1, anon_sym_QMARK_DOT, - ACTIONS(2371), 1, + ACTIONS(2355), 1, + anon_sym_PIPE, + ACTIONS(2357), 1, + anon_sym_AMP, + ACTIONS(2359), 1, + anon_sym_CARET, + ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - STATE(1681), 1, + STATE(1804), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2351), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2353), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1345), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [115775] = 8, + ACTIONS(1550), 1, + anon_sym_LF, + ACTIONS(2454), 1, + anon_sym_PLUS, + ACTIONS(2460), 1, + anon_sym_and, + ACTIONS(2475), 1, + anon_sym_or, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 27, + ACTIONS(938), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1548), 27, 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, @@ -121926,34 +122307,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - [115855] = 10, - ACTIONS(1542), 1, - anon_sym_LF, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2347), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2355), 1, - anon_sym_QMARK_DOT, - ACTIONS(2371), 1, anon_sym_QMARK_LBRACK, - STATE(1681), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [115829] = 4, + ACTIONS(1412), 1, + anon_sym_LF, + ACTIONS(2477), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 27, + ACTIONS(1410), 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, @@ -121974,69 +122349,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - [115913] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1603), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_QMARK_LBRACK, + [115875] = 21, + ACTIONS(2175), 1, anon_sym_LPAREN, + ACTIONS(2177), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2381), 1, + anon_sym_STAR_STAR, + ACTIONS(2387), 1, anon_sym_PLUS, + ACTIONS(2389), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2393), 1, anon_sym_PIPE, + ACTIONS(2395), 1, anon_sym_AMP, + ACTIONS(2397), 1, anon_sym_CARET, + ACTIONS(2414), 1, + anon_sym_not, + ACTIONS(2418), 1, + anon_sym_is, + STATE(1296), 1, + sym_argument_list, + STATE(2242), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2385), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2391), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2399), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2416), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2412), 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, - [115957] = 5, - ACTIONS(1474), 1, + ACTIONS(1448), 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, + [115955] = 4, + ACTIONS(1498), 1, anon_sym_LF, + STATE(1552), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2468), 2, + ACTIONS(1496), 33, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1587), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1469), 30, 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, @@ -122058,37 +122451,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116005] = 7, - ACTIONS(2339), 1, - anon_sym_and, - ACTIONS(2343), 1, - anon_sym_PLUS, + [116001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, + ACTIONS(1657), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 5, + ACTIONS(1659), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1580), 22, - sym__newline, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -122103,36 +122492,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116057] = 5, - ACTIONS(2445), 1, - anon_sym_PLUS, + [116045] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1383), 5, + ACTIONS(1458), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 27, + ACTIONS(1460), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122146,35 +122534,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116105] = 4, - ACTIONS(2471), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [116091] = 20, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1406), 1, + anon_sym_LF, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2439), 1, + anon_sym_PIPE, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, + anon_sym_CARET, + ACTIONS(2449), 1, + anon_sym_QMARK_LBRACK, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1404), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2437), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2429), 4, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1351), 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(1341), 28, - sym__newline, + [116169] = 5, + ACTIONS(1490), 1, + anon_sym_LF, + ACTIONS(2479), 1, + anon_sym_EQ, + STATE(1588), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1488), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, 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, @@ -122182,41 +122627,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, - [116151] = 4, - STATE(1605), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [116217] = 5, + ACTIONS(1483), 1, + anon_sym_LF, + STATE(1593), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1347), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1349), 29, - sym__newline, + ACTIONS(2481), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1478), 31, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122224,38 +122670,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, - [116197] = 5, - ACTIONS(1438), 1, + [116265] = 7, + ACTIONS(1291), 1, anon_sym_LF, - STATE(1592), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2454), 1, + anon_sym_PLUS, + ACTIONS(2460), 1, + anon_sym_and, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 7, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1433), 31, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1297), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -122273,17 +122723,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116245] = 3, + [116317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1433), 5, - anon_sym_EQ, + ACTIONS(1857), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1438), 30, + ACTIONS(1859), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -122292,6 +122741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -122314,34 +122764,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116289] = 4, - ACTIONS(2311), 1, - anon_sym_EQ, + [116361] = 7, + ACTIONS(2375), 1, + anon_sym_and, + ACTIONS(2379), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 30, + ACTIONS(1291), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1299), 22, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -122356,18 +122809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116335] = 5, - ACTIONS(1399), 1, + [116413] = 5, + ACTIONS(1473), 1, anon_sym_LF, - ACTIONS(2476), 1, - anon_sym_EQ, - STATE(1600), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 32, + ACTIONS(2484), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1597), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1468), 30, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -122377,7 +122831,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, @@ -122399,87 +122852,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116383] = 20, - ACTIONS(1526), 1, - anon_sym_not, - ACTIONS(1530), 1, - anon_sym_is, - ACTIONS(1560), 1, - anon_sym_LF, - ACTIONS(2345), 1, + [116461] = 6, + ACTIONS(2375), 1, + anon_sym_and, + ACTIONS(2379), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1331), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1333), 27, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2347), 1, anon_sym_LBRACK, - ACTIONS(2353), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2355), 1, anon_sym_QMARK_DOT, - ACTIONS(2361), 1, + anon_sym_not, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2363), 1, anon_sym_AMP, - ACTIONS(2365), 1, anon_sym_CARET, - ACTIONS(2371), 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(1681), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [116511] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2487), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1562), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2359), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2351), 4, + ACTIONS(1643), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1253), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - ACTIONS(1524), 7, - anon_sym_in, - anon_sym_LT, + 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_GT, - [116461] = 4, - STATE(1459), 1, - aux_sym_union_type_repeat1, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [116559] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 4, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 30, + ACTIONS(1446), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -122499,29 +122981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116507] = 8, - ACTIONS(2481), 1, - anon_sym_not, - ACTIONS(2487), 1, - anon_sym_is, - STATE(1598), 1, + [116605] = 4, + STATE(2231), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2484), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2478), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 23, + ACTIONS(1641), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -122530,9 +123001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -122544,29 +123017,35 @@ 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, - [116561] = 3, + [116651] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 31, + ACTIONS(1446), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -122586,27 +123065,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116605] = 4, - ACTIONS(1349), 1, + [116697] = 10, + ACTIONS(1398), 1, anon_sym_LF, - STATE(1496), 1, - aux_sym_union_type_repeat1, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2449), 1, + anon_sym_QMARK_LBRACK, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1347), 33, + ACTIONS(1396), 27, 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, @@ -122627,37 +123113,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, + [116755] = 10, + ACTIONS(1398), 1, + anon_sym_LF, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - [116651] = 5, - ACTIONS(3), 2, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2490), 2, + ACTIONS(1396), 27, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1601), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1469), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1474), 27, - sym__newline, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_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, @@ -122665,238 +123154,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, + [116813] = 11, + ACTIONS(1398), 1, + anon_sym_LF, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - [116699] = 7, - ACTIONS(2339), 1, - anon_sym_and, - ACTIONS(2343), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, + ACTIONS(2429), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1387), 8, - sym__newline, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1580), 19, - 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, anon_sym_DASH, - anon_sym_PERCENT, - 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, + [116873] = 15, + ACTIONS(1398), 1, + anon_sym_LF, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, + anon_sym_CARET, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - [116751] = 4, - ACTIONS(2493), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1538), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2437), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2429), 4, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1536), 28, - sym__newline, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_PERCENT, - 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, + [116941] = 14, + ACTIONS(1398), 1, + anon_sym_LF, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2443), 1, + anon_sym_CARET, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - [116797] = 4, - STATE(1591), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 5, - anon_sym_EQ, + ACTIONS(2437), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2429), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1501), 29, - sym__newline, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, + [117007] = 13, + ACTIONS(1398), 1, + anon_sym_LF, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - [116843] = 5, - ACTIONS(2495), 1, - anon_sym_PIPE, - STATE(1605), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 5, - anon_sym_EQ, + ACTIONS(2437), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2429), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1501), 28, - sym__newline, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, + [117071] = 12, + ACTIONS(1398), 1, + anon_sym_LF, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - [116891] = 3, - ACTIONS(3), 2, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 4, + ACTIONS(2437), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2429), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1867), 31, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1396), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - 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, - [116935] = 4, - STATE(1591), 1, - aux_sym_union_type_repeat1, + [117133] = 5, + ACTIONS(2379), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 5, - anon_sym_EQ, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1424), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1422), 28, sym__newline, anon_sym_DOT, anon_sym_as, @@ -122911,7 +123445,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, @@ -122926,34 +123459,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116981] = 5, - ACTIONS(1381), 1, - anon_sym_LF, - ACTIONS(2329), 1, + [117181] = 5, + ACTIONS(2379), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1383), 31, + ACTIONS(1289), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1291), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122961,43 +123496,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, - [117029] = 4, - ACTIONS(2498), 1, - anon_sym_DASH_GT, + [117229] = 4, + STATE(1431), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 6, - anon_sym_EQ, + ACTIONS(1623), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 28, - sym__newline, + ACTIONS(1621), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123011,21 +123544,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117075] = 5, - ACTIONS(1387), 1, + [117275] = 10, + ACTIONS(1567), 1, anon_sym_LF, - ACTIONS(2329), 1, + ACTIONS(2454), 1, anon_sym_PLUS, + ACTIONS(2460), 1, + anon_sym_and, + ACTIONS(2475), 1, + anon_sym_or, + ACTIONS(2489), 1, + anon_sym_as, + ACTIONS(2491), 1, + anon_sym_if, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, + ACTIONS(938), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1569), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1569), 25, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -123033,10 +123574,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, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -123054,28 +123592,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [117123] = 3, + [117333] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1436), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 31, + ACTIONS(1438), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -123095,35 +123634,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117167] = 4, - STATE(1591), 1, - aux_sym_union_type_repeat1, + [117379] = 8, + ACTIONS(2401), 1, + anon_sym_PLUS, + ACTIONS(2458), 1, + anon_sym_and, + ACTIONS(2473), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 5, - anon_sym_EQ, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1548), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 29, - sym__newline, - anon_sym_DOT, + ACTIONS(1550), 23, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123137,76 +123680,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117213] = 4, - ACTIONS(1353), 1, + [117433] = 20, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(1381), 1, anon_sym_LF, + ACTIONS(2423), 1, + anon_sym_LPAREN, + ACTIONS(2425), 1, + anon_sym_LBRACK, + ACTIONS(2431), 1, + anon_sym_STAR_STAR, + ACTIONS(2433), 1, + anon_sym_QMARK_DOT, + ACTIONS(2439), 1, + anon_sym_PIPE, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, + anon_sym_CARET, + ACTIONS(2449), 1, + anon_sym_QMARK_LBRACK, + STATE(1812), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1587), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1351), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1379), 2, 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, + ACTIONS(2437), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2429), 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(1343), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1351), 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, - [117259] = 5, - ACTIONS(1599), 1, - anon_sym_LF, - ACTIONS(2500), 1, - anon_sym_LBRACE, - STATE(1937), 1, - sym_dictionary, - ACTIONS(5), 2, + [117511] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 32, + ACTIONS(1779), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1777), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123214,64 +123773,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [117307] = 19, - ACTIONS(1251), 1, + [117555] = 20, + ACTIONS(1345), 1, anon_sym_LF, - ACTIONS(2345), 1, + ACTIONS(1359), 1, + anon_sym_not, + ACTIONS(1375), 1, + anon_sym_is, + ACTIONS(2423), 1, anon_sym_LPAREN, - ACTIONS(2347), 1, + ACTIONS(2425), 1, anon_sym_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2431), 1, anon_sym_STAR_STAR, - ACTIONS(2355), 1, + ACTIONS(2433), 1, anon_sym_QMARK_DOT, - ACTIONS(2357), 1, - anon_sym_not, - ACTIONS(2361), 1, + ACTIONS(2439), 1, anon_sym_PIPE, - ACTIONS(2363), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2365), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2369), 1, - anon_sym_is, - ACTIONS(2371), 1, + ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - STATE(1681), 1, + STATE(1812), 1, sym_argument_list, - STATE(2222), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, + ACTIONS(1341), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2437), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2367), 2, + ACTIONS(2445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2351), 4, + ACTIONS(2429), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1253), 7, + ACTIONS(1343), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - ACTIONS(2349), 7, + ACTIONS(1351), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -123279,35 +123837,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - [117383] = 4, - STATE(1621), 1, - aux_sym_union_type_repeat1, + [117633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1431), 6, + ACTIONS(1615), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1429), 28, + ACTIONS(1613), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123321,29 +123878,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117429] = 4, - STATE(1624), 1, - aux_sym_dotted_name_repeat1, + [117677] = 4, + ACTIONS(2257), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 5, - anon_sym_EQ, + ACTIONS(1488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 29, - sym__newline, + ACTIONS(1490), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -123363,77 +123920,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117475] = 4, - STATE(1621), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [117723] = 4, + ACTIONS(1460), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1465), 28, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1458), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [117521] = 4, - STATE(1621), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1493), 6, - anon_sym_EQ, - anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 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, @@ -123441,41 +123954,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, - [117567] = 4, - STATE(1621), 1, - aux_sym_union_type_repeat1, + [117769] = 5, + STATE(1622), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 6, + ACTIONS(2493), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1478), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 28, - anon_sym_DOT, + ACTIONS(1483), 27, + sym__newline, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123489,35 +124005,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117613] = 4, - STATE(1528), 1, - aux_sym_union_type_repeat1, + [117817] = 4, + ACTIONS(2314), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1347), 6, - anon_sym_EQ, + ACTIONS(1488), 5, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1349), 28, + ACTIONS(1490), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123531,88 +124047,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117659] = 21, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_STAR_STAR, - ACTIONS(2404), 1, - anon_sym_QMARK_DOT, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2414), 1, - anon_sym_AMP, - ACTIONS(2416), 1, - anon_sym_CARET, - ACTIONS(2424), 1, - anon_sym_QMARK_LBRACK, - STATE(1680), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2400), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2408), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2410), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2418), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1560), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [117739] = 5, - ACTIONS(2502), 1, - anon_sym_EQ, - STATE(1591), 1, + [117863] = 4, + ACTIONS(1434), 1, + anon_sym_LF, + STATE(1588), 1, aux_sym_union_type_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1399), 29, - sym__newline, + ACTIONS(1432), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -123620,6 +124073,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, @@ -123627,34 +124081,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, - [117787] = 4, - STATE(1505), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + [117909] = 4, + ACTIONS(1438), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1589), 29, - sym__newline, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1436), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -123662,6 +124115,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, @@ -123669,25 +124123,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, - [117833] = 4, - STATE(1591), 1, - aux_sym_union_type_repeat1, + [117955] = 4, + ACTIONS(2496), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1431), 5, + ACTIONS(1410), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1429), 29, + ACTIONS(1412), 28, sym__newline, anon_sym_DOT, anon_sym_as, @@ -123703,7 +124160,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, @@ -123717,34 +124173,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117879] = 3, - ACTIONS(3), 2, + [118001] = 4, + ACTIONS(1442), 1, + anon_sym_LF, + STATE(1588), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1791), 31, + ACTIONS(1440), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123752,72 +124207,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, - [117923] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2504), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2506), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [117966] = 3, - ACTIONS(3), 2, + [118047] = 4, + ACTIONS(1446), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1867), 30, - sym__newline, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -123825,6 +124241,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, @@ -123832,47 +124249,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, - [118009] = 10, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(2510), 1, - anon_sym_LBRACK, - ACTIONS(2512), 1, - anon_sym_STAR_STAR, - ACTIONS(2514), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - STATE(1945), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [118093] = 4, + ACTIONS(1446), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1369), 23, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + 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, @@ -123880,23 +124291,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, - [118066] = 4, - STATE(1669), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [118139] = 4, + STATE(1563), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1496), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(1498), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -123926,32 +124341,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118111] = 3, + [118185] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2498), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 5, + ACTIONS(1643), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 29, - sym__newline, + ACTIONS(1641), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -123966,15 +124384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118154] = 4, - ACTIONS(1599), 1, + [118233] = 6, + ACTIONS(1333), 1, anon_sym_LF, - STATE(2228), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2454), 1, + anon_sym_PLUS, + ACTIONS(2460), 1, + anon_sym_and, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 32, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1331), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -123987,9 +124410,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_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -124007,27 +124428,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [118199] = 4, - STATE(1669), 1, + [118283] = 8, + ACTIONS(2503), 1, + anon_sym_not, + ACTIONS(2509), 1, + anon_sym_is, + STATE(1633), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1627), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2506), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, - sym__newline, + ACTIONS(2500), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1625), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_for, + 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, + [118337] = 4, + ACTIONS(1337), 1, + anon_sym_LF, + STATE(1588), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1335), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -124035,6 +124500,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, @@ -124042,33 +124508,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, - [118244] = 4, - STATE(1264), 1, - sym_dictionary, + [118383] = 4, + STATE(1739), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 5, + ACTIONS(1327), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1329), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -124076,6 +124543,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, @@ -124089,30 +124557,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118289] = 5, - ACTIONS(2518), 1, - anon_sym_PIPE, - STATE(1635), 1, - aux_sym_union_type_repeat1, + [118428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 5, - anon_sym_EQ, + ACTIONS(2512), 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(2514), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118471] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1755), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 27, + ACTIONS(1753), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -124121,6 +124626,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, @@ -124131,29 +124637,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118336] = 5, - ACTIONS(2521), 1, - anon_sym_LBRACE, - STATE(2019), 1, - sym_dictionary, + [118514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1829), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1831), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -124173,31 +124677,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118383] = 3, - ACTIONS(1615), 1, - anon_sym_LF, - ACTIONS(5), 2, + [118557] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 33, + ACTIONS(1759), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124205,41 +124711,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [118426] = 3, + [118600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2518), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2516), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1763), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 28, + ACTIONS(1761), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124253,23 +124797,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118469] = 3, - ACTIONS(1619), 1, - anon_sym_LF, - ACTIONS(5), 2, + [118686] = 4, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 33, + ACTIONS(1643), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -124277,7 +124825,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, @@ -124285,28 +124832,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, - [118512] = 3, - ACTIONS(1623), 1, + [118731] = 3, + ACTIONS(1725), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 33, + ACTIONS(1727), 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, @@ -124333,34 +124878,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [118555] = 4, - ACTIONS(2461), 1, - anon_sym_EQ, + [118774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 5, + ACTIONS(1825), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 28, + ACTIONS(1827), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124374,26 +124918,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118600] = 3, + [118817] = 4, + STATE(1748), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1538), 6, - anon_sym_EQ, + ACTIONS(1609), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1536), 28, + ACTIONS(1611), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -124401,6 +124945,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, @@ -124414,92 +124959,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118643] = 20, - ACTIONS(2508), 1, + [118862] = 3, + ACTIONS(1605), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 33, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2512), 1, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2514), 1, anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2527), 1, anon_sym_not, - ACTIONS(2533), 1, - anon_sym_PIPE, - ACTIONS(2535), 1, - anon_sym_AMP, - ACTIONS(2537), 1, - anon_sym_CARET, - ACTIONS(2543), 1, - anon_sym_is, - STATE(1945), 1, - sym_argument_list, - STATE(2234), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2525), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2529), 2, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2531), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2539), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2541), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(2523), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1251), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [118720] = 5, - ACTIONS(2545), 1, - anon_sym_in, - ACTIONS(2547), 1, - anon_sym_not, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [118905] = 4, + STATE(1518), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1623), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1621), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124513,27 +125040,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118767] = 4, - STATE(1621), 1, - aux_sym_union_type_repeat1, + [118950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 5, + ACTIONS(1685), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 28, + ACTIONS(1687), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -124541,6 +125066,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, @@ -124554,28 +125080,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118812] = 4, + [118993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1779), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1351), 4, + ACTIONS(1767), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1353), 28, + ACTIONS(1765), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -124595,68 +125120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118857] = 20, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(2510), 1, - anon_sym_LBRACK, - ACTIONS(2512), 1, - anon_sym_STAR_STAR, - ACTIONS(2514), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2527), 1, - anon_sym_not, - ACTIONS(2533), 1, - anon_sym_PIPE, - ACTIONS(2535), 1, - anon_sym_AMP, - ACTIONS(2537), 1, - anon_sym_CARET, - ACTIONS(2543), 1, - anon_sym_is, - STATE(1918), 1, - aux_sym_comparison_operator_repeat1, - STATE(1945), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2525), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2529), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2531), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2539), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2541), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2523), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1251), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [118934] = 3, + [119036] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2551), 12, + ACTIONS(2522), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -124669,7 +125137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2549), 22, + ACTIONS(2520), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -124692,33 +125160,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [118977] = 3, + [119079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 6, - anon_sym_EQ, + ACTIONS(1771), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1341), 28, + ACTIONS(1769), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124728,55 +125196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119020] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2555), 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(2553), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [119063] = 3, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [119122] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2559), 12, + ACTIONS(2526), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -124789,7 +125217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2557), 22, + ACTIONS(2524), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -124812,37 +125240,114 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [119106] = 8, - ACTIONS(2561), 1, + [119165] = 4, + STATE(1748), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, - ACTIONS(2563), 1, anon_sym_or, - ACTIONS(2565), 1, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [119210] = 4, + STATE(1748), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(1609), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 29, + sym__newline, anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1461), 4, + 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, + [119255] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1743), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 23, + ACTIONS(1741), 30, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -124857,20 +125362,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119159] = 3, - ACTIONS(1625), 1, + [119298] = 3, + ACTIONS(1709), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 33, + ACTIONS(1711), 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, @@ -124897,58 +125402,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [119202] = 3, + [119341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2569), 12, - sym__dedent, - sym_string_start, + ACTIONS(1739), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1737), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2567), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [119245] = 4, - ACTIONS(2502), 1, - anon_sym_EQ, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [119384] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + ACTIONS(1619), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 29, + ACTIONS(1617), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -124978,27 +125482,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119290] = 3, + [119427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 4, + ACTIONS(1478), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 30, + ACTIONS(1483), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -125018,33 +125522,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119333] = 3, + [119470] = 4, + STATE(1736), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 4, + ACTIONS(1643), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 30, + ACTIONS(1641), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -125058,33 +125563,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119376] = 3, + [119515] = 4, + STATE(1297), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 4, + ACTIONS(1643), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1693), 30, + ACTIONS(1641), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -125098,32 +125604,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119419] = 3, + [119560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, + ACTIONS(2530), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2528), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [119603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 30, + ACTIONS(1641), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -125138,16 +125684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119462] = 3, + [119646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, + ACTIONS(1735), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 30, + ACTIONS(1733), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125178,28 +125724,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119505] = 4, - STATE(1591), 1, - aux_sym_union_type_repeat1, + [119689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 4, + ACTIONS(1841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 29, - sym__newline, + ACTIONS(1843), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -125219,16 +125764,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119550] = 3, + [119732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, + ACTIONS(1731), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 30, + ACTIONS(1729), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125259,16 +125804,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119593] = 3, + [119775] = 20, + ACTIONS(2532), 1, + anon_sym_LPAREN, + ACTIONS(2534), 1, + anon_sym_LBRACK, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, + anon_sym_QMARK_DOT, + ACTIONS(2544), 1, + anon_sym_not, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2552), 1, + anon_sym_AMP, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_is, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(1898), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, + ACTIONS(2538), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2546), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2558), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 30, + ACTIONS(2536), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [119852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1731), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1729), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125299,27 +125901,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119636] = 3, + [119895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, + ACTIONS(2566), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2564), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [119938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2570), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2568), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [119981] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 30, + ACTIONS(1605), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -125339,33 +126021,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119679] = 3, - ACTIONS(3), 2, + [120024] = 3, + ACTIONS(1837), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1763), 30, + ACTIONS(1839), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -125373,22 +126053,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, - [119722] = 3, + [120067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 4, + ACTIONS(1845), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 30, + ACTIONS(1847), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125419,11 +126101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119765] = 3, + [120110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2573), 12, + ACTIONS(2574), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125436,7 +126118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2571), 22, + ACTIONS(2572), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125459,16 +126141,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [119808] = 3, + [120153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 4, + ACTIONS(1821), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 30, + ACTIONS(1823), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125499,39 +126181,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119851] = 8, - ACTIONS(2578), 1, - anon_sym_not, - ACTIONS(2584), 1, - anon_sym_is, - STATE(1669), 1, - aux_sym_comparison_operator_repeat1, + [120196] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, + ACTIONS(1817), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2581), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2575), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 22, - sym__newline, + ACTIONS(1819), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -125543,17 +126215,142 @@ 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, - [119904] = 3, + [120239] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2578), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2576), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120282] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2582), 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(2580), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120325] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2584), 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(2586), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 4, + ACTIONS(1787), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 30, + ACTIONS(1785), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125584,63 +126381,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119947] = 3, + [120411] = 5, + ACTIONS(2588), 1, + anon_sym_PIPE, + STATE(1681), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 4, + ACTIONS(1383), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119990] = 3, - ACTIONS(1605), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1607), 33, + ACTIONS(1385), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -125648,43 +126411,39 @@ 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, - [120033] = 3, + [120458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 5, - anon_sym_EQ, + ACTIONS(1723), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, - sym__newline, + ACTIONS(1721), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -125704,13 +126463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120076] = 3, + [120501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2589), 12, - sym__dedent, + ACTIONS(2591), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -125721,7 +126480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2587), 22, + ACTIONS(2593), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125744,13 +126503,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [120119] = 3, + [120544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2593), 12, - sym__dedent, + ACTIONS(2518), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -125761,7 +126520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2591), 22, + ACTIONS(2516), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125784,27 +126543,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [120162] = 3, + [120587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 4, + ACTIONS(1615), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 30, + ACTIONS(1613), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -125824,16 +126583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120205] = 3, + [120630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 30, + ACTIONS(1717), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125864,56 +126623,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120248] = 3, + [120673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1815), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2597), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120291] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2595), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 4, + ACTIONS(1747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 30, + ACTIONS(1745), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125944,60 +126703,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120334] = 3, + [120759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1699), 30, - sym__newline, + ACTIONS(2599), 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(2601), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2526), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, 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, - [120377] = 3, - ACTIONS(1699), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(2524), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120845] = 3, + ACTIONS(1663), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 33, + ACTIONS(1661), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -126024,33 +126823,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120420] = 3, + [120888] = 4, + ACTIONS(2383), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 4, + ACTIONS(1488), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 30, + ACTIONS(1490), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -126064,26 +126864,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120463] = 3, + [120933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - sym__newline, + ACTIONS(2603), 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(2605), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120976] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2609), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2607), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121019] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2611), 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(2613), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121062] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2615), 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(2617), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121105] = 3, + ACTIONS(1667), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -126091,6 +127048,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, @@ -126098,19 +127056,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120506] = 3, + [121148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2619), 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(2621), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121191] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2512), 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(2514), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121234] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2625), 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(2623), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2597), 12, - sym__dedent, + ACTIONS(2625), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -126121,7 +127201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2595), 22, + ACTIONS(2623), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126144,33 +127224,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [120549] = 4, - STATE(1669), 1, - aux_sym_comparison_operator_repeat1, + [121320] = 8, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2629), 1, + anon_sym_or, + ACTIONS(2631), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(784), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, - sym__newline, - anon_sym_DOT, + ACTIONS(1550), 23, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -126185,183 +127269,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120594] = 3, - ACTIONS(1603), 1, - anon_sym_LF, - ACTIONS(5), 2, + [121373] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2609), 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, - [120637] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1845), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 30, + anon_sym_TILDE, + sym_float, + ACTIONS(2607), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120680] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1851), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2619), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120723] = 10, - ACTIONS(2561), 1, - anon_sym_and, - ACTIONS(2563), 1, - anon_sym_or, - ACTIONS(2565), 1, - anon_sym_PLUS, - ACTIONS(2599), 1, - anon_sym_as, - ACTIONS(2601), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(780), 2, + anon_sym_TILDE, + sym_float, + ACTIONS(2621), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1455), 21, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120780] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 4, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 30, + ACTIONS(1717), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -126392,11 +127389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120823] = 3, + [121502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2603), 12, + ACTIONS(2597), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -126409,7 +127406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2605), 22, + ACTIONS(2595), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126432,53 +127429,53 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [120866] = 3, + [121545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1863), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2570), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120909] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2568), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2609), 12, - sym__dedent, + ACTIONS(2566), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -126489,7 +127486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2607), 22, + ACTIONS(2564), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126512,16 +127509,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [120952] = 3, + [121631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 4, + ACTIONS(1715), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 30, + ACTIONS(1713), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -126552,27 +127549,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120995] = 3, + [121674] = 8, + ACTIONS(2636), 1, + anon_sym_not, + ACTIONS(2642), 1, + anon_sym_is, + STATE(1710), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2639), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1627), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(2633), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1625), 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, + [121727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 4, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1841), 30, + ACTIONS(1725), 30, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -126592,20 +127634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121038] = 5, - ACTIONS(2123), 1, - anon_sym_in, - ACTIONS(2125), 1, - anon_sym_not, + [121770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1809), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1811), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -126614,9 +127652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -126634,11 +127674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121085] = 3, + [121813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2613), 12, + ACTIONS(2647), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -126651,7 +127691,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2611), 22, + ACTIONS(2645), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121856] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2530), 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(2528), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126674,11 +127754,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [121128] = 3, + [121899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2617), 12, + ACTIONS(2651), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -126691,7 +127771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2615), 22, + ACTIONS(2649), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126714,32 +127794,36 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [121171] = 3, + [121942] = 7, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2631), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, - anon_sym_EQ, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, - sym__newline, + ACTIONS(1291), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1299), 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, @@ -126754,32 +127838,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121214] = 3, + [121993] = 7, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2631), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, - anon_sym_EQ, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 29, - sym__newline, + ACTIONS(1291), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1299), 21, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -126794,107 +127882,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121257] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2504), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + [122044] = 10, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2629), 1, + anon_sym_or, + ACTIONS(2631), 1, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2506), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, + ACTIONS(2653), 1, + anon_sym_as, + ACTIONS(2655), 1, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [121300] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2621), 12, - sym__dedent, - sym_string_start, + ACTIONS(784), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1569), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1567), 21, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2619), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [121343] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [122101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 4, + ACTIONS(1669), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 30, + ACTIONS(1671), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -126914,27 +127969,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121386] = 3, + [122144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 4, + ACTIONS(1673), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 30, + ACTIONS(1675), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -126954,33 +128009,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121429] = 3, + [122187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, + ACTIONS(1410), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1825), 30, + ACTIONS(1412), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -126994,67 +128049,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121472] = 3, - ACTIONS(1611), 1, - anon_sym_LF, - ACTIONS(5), 2, + [122230] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 33, + ACTIONS(2615), 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(2617), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2611), 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, - [121515] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2613), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 4, + ACTIONS(1677), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 30, + ACTIONS(1679), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -127074,16 +128169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121558] = 3, + [122359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 4, + ACTIONS(1797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 30, + ACTIONS(1799), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127114,27 +128209,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121601] = 5, - ACTIONS(2565), 1, - anon_sym_PLUS, + [122402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1393), 4, + ACTIONS(1681), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 27, + ACTIONS(1683), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -127142,6 +128234,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, @@ -127156,56 +128249,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121648] = 3, + [122445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1683), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2522), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [121691] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2520), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, + ACTIONS(1793), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 30, + ACTIONS(1795), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127236,13 +128329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121734] = 3, + [122531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2625), 12, - sym__dedent, + ACTIONS(2574), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -127253,7 +128346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2623), 22, + ACTIONS(2572), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -127276,27 +128369,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [121777] = 3, + [122574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, + ACTIONS(1789), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 30, - sym__newline, + ACTIONS(1791), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -127316,34 +128409,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121820] = 5, - ACTIONS(2565), 1, + [122617] = 4, + STATE(1710), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 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, + [122662] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 27, + ACTIONS(1641), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -127358,11 +128490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121867] = 3, + [122705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2629), 12, + ACTIONS(2603), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -127375,7 +128507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2627), 22, + ACTIONS(2605), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -127398,51 +128530,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [121910] = 3, - ACTIONS(1438), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1433), 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, - [121953] = 3, + [122748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2633), 12, + ACTIONS(2659), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -127455,7 +128547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2631), 22, + ACTIONS(2657), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -127478,16 +128570,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [121996] = 3, + [122791] = 5, + ACTIONS(2661), 1, + anon_sym_in, + ACTIONS(2663), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 30, + ACTIONS(1641), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127496,11 +128592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -127518,32 +128612,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122039] = 4, - ACTIONS(1399), 1, - anon_sym_LF, - ACTIONS(2476), 1, - anon_sym_EQ, - ACTIONS(5), 2, + [122838] = 4, + STATE(1710), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 32, + ACTIONS(1609), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 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, @@ -127551,24 +128647,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, - [122084] = 3, + [122883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, + ACTIONS(1689), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 30, + ACTIONS(1691), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127599,24 +128693,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122127] = 4, - ACTIONS(1635), 1, - anon_sym_LF, - STATE(1600), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [122926] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 32, + ACTIONS(1711), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1709), 30, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -127624,7 +128720,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, @@ -127632,29 +128727,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [122172] = 5, - ACTIONS(2565), 1, + [122969] = 4, + STATE(1848), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1323), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1325), 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, + [123014] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, + STATE(1839), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1383), 4, + ACTIONS(1534), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 27, + ACTIONS(1536), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127668,6 +128800,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, @@ -127682,17 +128815,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122219] = 3, + [123059] = 4, + ACTIONS(2403), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_EQ, + ACTIONS(1488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(1490), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -127722,42 +128856,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122262] = 7, - ACTIONS(1655), 1, - anon_sym_LF, - ACTIONS(2638), 1, - anon_sym_not, - ACTIONS(2641), 1, - anon_sym_is, - STATE(1724), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [123104] = 4, + STATE(1630), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2635), 7, - anon_sym_in, + ACTIONS(1623), 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(1653), 23, + ACTIONS(1621), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_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, @@ -127765,17 +128891,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [122313] = 3, + [123149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 4, + ACTIONS(1343), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1727), 30, + ACTIONS(1448), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127806,21 +128937,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122356] = 3, + [123192] = 4, + STATE(2826), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1723), 30, + ACTIONS(1641), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -127846,27 +128978,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122399] = 4, - STATE(1746), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [123237] = 3, + ACTIONS(1859), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1431), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1429), 28, + ACTIONS(1857), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -127874,6 +129002,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, @@ -127881,22 +129010,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, - [122444] = 3, + [123280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 4, + ACTIONS(1707), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 30, + ACTIONS(1705), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127927,16 +129058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122487] = 3, + [123323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1715), 30, + ACTIONS(1641), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127967,30 +129098,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122530] = 4, - STATE(1746), 1, - aux_sym_union_type_repeat1, + [123366] = 8, + ACTIONS(2668), 1, + anon_sym_not, + ACTIONS(2674), 1, + anon_sym_is, + STATE(1748), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 5, - anon_sym_EQ, + ACTIONS(1627), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2671), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 28, + ACTIONS(2665), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1625), 22, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -128002,19 +129142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [122575] = 3, + [123419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2646), 12, - sym__dedent, + ACTIONS(2578), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -128025,7 +129160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2644), 22, + ACTIONS(2576), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128048,13 +129183,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [122618] = 3, + [123462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2650), 12, - sym__dedent, + ACTIONS(2582), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -128065,7 +129200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2648), 22, + ACTIONS(2580), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128088,53 +129223,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [122661] = 3, + [123505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1707), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122704] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2654), 12, - sym__dedent, + ACTIONS(2647), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -128145,7 +129240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2652), 22, + ACTIONS(2645), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128168,53 +129263,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [122747] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1701), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1703), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122790] = 3, + [123548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2658), 12, - sym__dedent, + ACTIONS(2651), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -128225,7 +129280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2656), 22, + ACTIONS(2649), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128248,106 +129303,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [122833] = 4, - ACTIONS(2660), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1493), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 27, - 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122878] = 3, - ACTIONS(1797), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1799), 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, - [122921] = 4, - STATE(1746), 1, - aux_sym_union_type_repeat1, + [123591] = 4, + STATE(1653), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1493), 5, - anon_sym_EQ, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 28, + ACTIONS(1641), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -128370,25 +129344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122966] = 4, - STATE(1746), 1, - aux_sym_union_type_repeat1, + [123636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 5, + ACTIONS(1657), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 28, + ACTIONS(1659), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -128411,20 +129384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123011] = 4, - ACTIONS(2662), 1, + [123679] = 4, + ACTIONS(2677), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1538), 6, + ACTIONS(1410), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1536), 27, + ACTIONS(1412), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -128452,52 +129425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123056] = 4, - STATE(2232), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123101] = 3, + [123724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2666), 12, + ACTIONS(2599), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -128510,7 +129442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2664), 22, + ACTIONS(2601), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128533,11 +129465,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [123144] = 3, + [123767] = 4, + STATE(1681), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1496), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1498), 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, + [123812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2670), 12, + ACTIONS(2591), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -128550,7 +129523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2668), 22, + ACTIONS(2593), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128573,37 +129546,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [123187] = 10, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(2510), 1, - anon_sym_LBRACK, - ACTIONS(2512), 1, - anon_sym_STAR_STAR, - ACTIONS(2514), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - STATE(1945), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [123855] = 5, + ACTIONS(2661), 1, + anon_sym_in, + ACTIONS(2679), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 23, + ACTIONS(1641), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_not, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -128620,19 +129587,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [123244] = 4, - STATE(1635), 1, - aux_sym_union_type_repeat1, + anon_sym_QMARK_LBRACK, + [123902] = 4, + ACTIONS(2681), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1347), 5, + ACTIONS(1390), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1349), 28, + ACTIONS(1392), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -128647,7 +129616,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, @@ -128661,24 +129629,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123289] = 3, + [123947] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, - anon_sym_EQ, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1436), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, - sym__newline, + ACTIONS(1438), 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, @@ -128701,26 +129670,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123332] = 3, - ACTIONS(3), 2, + [123992] = 3, + ACTIONS(1659), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1619), 29, - sym__newline, + ACTIONS(1657), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -128728,6 +129694,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, @@ -128735,30 +129702,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, - [123375] = 3, + [124035] = 4, + STATE(1757), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 5, + ACTIONS(1383), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 29, - sym__newline, + ACTIONS(1385), 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, @@ -128781,33 +129751,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123418] = 3, - ACTIONS(3), 2, + [124080] = 7, + ACTIONS(1625), 1, + anon_sym_LF, + ACTIONS(2686), 1, + anon_sym_not, + ACTIONS(2689), 1, + anon_sym_is, + STATE(1764), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2683), 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(1683), 30, + ACTIONS(1627), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -128815,30 +129794,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, - [123461] = 3, + [124131] = 4, + STATE(1757), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 5, + ACTIONS(1335), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 29, - sym__newline, + ACTIONS(1337), 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, @@ -128861,73 +129836,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123504] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2674), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2672), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [123547] = 3, + [124176] = 4, + ACTIONS(2692), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 4, + ACTIONS(1335), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 30, + ACTIONS(1337), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -128941,27 +129877,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123590] = 3, + [124221] = 4, + STATE(1757), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, + ACTIONS(1440), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 30, + ACTIONS(1442), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -128981,34 +129918,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123633] = 4, - ACTIONS(2676), 1, - anon_sym_DASH_GT, + [124266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2659), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1341), 27, + anon_sym_TILDE, + sym_float, + ACTIONS(2657), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124309] = 4, + ACTIONS(1621), 1, + anon_sym_LF, + STATE(1588), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 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, @@ -129016,21 +129991,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, - [123678] = 4, - ACTIONS(1599), 1, + [124354] = 4, + ACTIONS(1490), 1, anon_sym_LF, - STATE(2256), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2479), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 32, + ACTIONS(1488), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129063,35 +130040,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [123723] = 5, - ACTIONS(2545), 1, - anon_sym_in, - ACTIONS(2678), 1, + [124399] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2694), 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(2696), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1390), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1392), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -129105,27 +130120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123770] = 3, + [124485] = 4, + STATE(1757), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, + ACTIONS(1432), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 30, + ACTIONS(1434), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -129145,32 +130161,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123813] = 3, + [124530] = 5, + ACTIONS(2631), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1428), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1430), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -129185,28 +130203,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123856] = 4, - STATE(1774), 1, - aux_sym_dotted_name_repeat1, + [124577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 5, - anon_sym_EQ, + ACTIONS(1833), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 28, + ACTIONS(1835), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -129226,27 +130243,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123901] = 3, + [124620] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1253), 4, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 30, + ACTIONS(1446), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -129266,11 +130284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123944] = 3, + [124665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2603), 12, + ACTIONS(2584), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -129283,7 +130301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2605), 22, + ACTIONS(2586), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -129306,27 +130324,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [123987] = 3, + [124708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1857), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1859), 30, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -129346,81 +130364,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124030] = 8, - ACTIONS(2683), 1, - anon_sym_not, - ACTIONS(2689), 1, - anon_sym_is, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2686), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1653), 3, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(2680), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 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, - [124083] = 7, - ACTIONS(2561), 1, - anon_sym_and, - ACTIONS(2565), 1, + [124751] = 5, + ACTIONS(2631), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, + ACTIONS(1289), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 5, + ACTIONS(1291), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1580), 21, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -129435,13 +130406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124134] = 3, - ACTIONS(1647), 1, + [124798] = 3, + ACTIONS(1483), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 33, + ACTIONS(1478), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129475,23 +130446,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [124177] = 3, - ACTIONS(1651), 1, - anon_sym_LF, - ACTIONS(5), 2, + [124841] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 33, + ACTIONS(1839), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1837), 30, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -129499,7 +130473,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, @@ -129507,27 +130480,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, - [124220] = 4, - STATE(1760), 1, - aux_sym_dotted_name_repeat1, + [124884] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 5, - anon_sym_EQ, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1444), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 28, + ACTIONS(1446), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129556,25 +130527,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124265] = 3, + [124929] = 4, + STATE(1710), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1433), 5, - anon_sym_EQ, + ACTIONS(1609), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1438), 29, - sym__newline, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -129582,7 +130555,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, @@ -129596,129 +130568,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124308] = 21, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(2510), 1, - anon_sym_LBRACK, - ACTIONS(2512), 1, - anon_sym_STAR_STAR, - ACTIONS(2514), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2533), 1, - anon_sym_PIPE, - ACTIONS(2535), 1, - anon_sym_AMP, - ACTIONS(2537), 1, - anon_sym_CARET, - STATE(1945), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [124974] = 6, + ACTIONS(2627), 1, + anon_sym_and, + ACTIONS(2631), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1331), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1560), 2, + ACTIONS(1333), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(2525), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2529), 2, - anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_or, anon_sym_DASH, - ACTIONS(2531), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2539), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [124387] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2694), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [125023] = 5, + ACTIONS(2631), 1, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2692), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [124430] = 3, - ACTIONS(1867), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 33, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1424), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1422), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, 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, @@ -129726,35 +130647,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, - [124473] = 5, - ACTIONS(2696), 1, - anon_sym_EQ, - STATE(1746), 1, - aux_sym_union_type_repeat1, + [125070] = 4, + STATE(2245), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + ACTIONS(1643), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 28, + ACTIONS(1641), 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, @@ -129762,7 +130681,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, @@ -129776,30 +130694,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124520] = 5, - STATE(1774), 1, - aux_sym_dotted_name_repeat1, + [125115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2698), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1433), 5, - anon_sym_EQ, + ACTIONS(1861), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1438), 26, + ACTIONS(1863), 30, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -129818,74 +130734,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124567] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2551), 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(2549), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [124610] = 4, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [125158] = 3, + ACTIONS(1617), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1619), 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, @@ -129893,42 +130766,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [124655] = 7, - ACTIONS(2561), 1, - anon_sym_and, - ACTIONS(2565), 1, - anon_sym_PLUS, + [125201] = 20, + ACTIONS(2532), 1, + anon_sym_LPAREN, + ACTIONS(2534), 1, + anon_sym_LBRACK, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, + anon_sym_QMARK_DOT, + ACTIONS(2544), 1, + anon_sym_not, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2552), 1, + anon_sym_AMP, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_is, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(2248), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, + ACTIONS(2538), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2546), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2558), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 7, + ACTIONS(2536), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 7, 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, - ACTIONS(1580), 19, + [125278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1699), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1697), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -129943,27 +130871,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124706] = 4, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, + [125321] = 5, + ACTIONS(2698), 1, + anon_sym_LBRACE, + STATE(2009), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, + ACTIONS(1643), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1641), 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, @@ -129971,6 +130899,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, @@ -129984,22 +130913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124751] = 5, + [125368] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2701), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1779), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1469), 4, + ACTIONS(1458), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1474), 26, + ACTIONS(1460), 28, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -130008,6 +130935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -130026,53 +130954,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124798] = 3, + [125413] = 21, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2532), 1, + anon_sym_LPAREN, + ACTIONS(2534), 1, + anon_sym_LBRACK, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, + anon_sym_QMARK_DOT, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2552), 1, + anon_sym_AMP, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2555), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1345), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [125492] = 21, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2532), 1, anon_sym_LPAREN, + ACTIONS(2534), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, anon_sym_QMARK_DOT, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2552), 1, + anon_sym_AMP, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1381), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2538), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2553), 22, - anon_sym_import, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [124841] = 3, + anon_sym_and, + anon_sym_or, + [125571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2674), 12, + ACTIONS(2702), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -130083,7 +131087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2672), 22, + ACTIONS(2700), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -130106,34 +131110,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124884] = 4, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, + [125614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, + ACTIONS(1803), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1801), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130147,34 +131150,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124929] = 4, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, + [125657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, + ACTIONS(1807), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1805), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130188,13 +131190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124974] = 3, + [125700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2559), 12, + ACTIONS(2706), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -130205,7 +131207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2557), 22, + ACTIONS(2704), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -130228,68 +131230,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [125017] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 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, - [125060] = 4, + [125743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 4, + ACTIONS(1815), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 28, + ACTIONS(1813), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -130309,13 +131270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125105] = 3, + [125786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2569), 12, + ACTIONS(2694), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -130326,7 +131287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2567), 22, + ACTIONS(2696), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -130349,20 +131310,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [125148] = 3, + [125829] = 4, ACTIONS(1641), 1, anon_sym_LF, + STATE(1821), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 33, + ACTIONS(1643), 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, @@ -130389,110 +131351,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [125191] = 3, - ACTIONS(3), 2, + [125874] = 4, + ACTIONS(1641), 1, + anon_sym_LF, + STATE(2267), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2670), 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(2668), 22, - anon_sym_import, + ACTIONS(1643), 32, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125234] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2666), 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_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(2664), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125277] = 10, - ACTIONS(2508), 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, + [125919] = 10, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2510), 1, + ACTIONS(2534), 1, anon_sym_LBRACK, - ACTIONS(2512), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2514), 1, + ACTIONS(2542), 1, anon_sym_QMARK_DOT, - ACTIONS(2516), 1, + ACTIONS(2562), 1, anon_sym_QMARK_LBRACK, - STATE(1945), 1, + STATE(1871), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 4, + ACTIONS(1542), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 23, + ACTIONS(1544), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130516,140 +131439,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [125334] = 3, + [125976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2573), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1779), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1777), 30, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_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(2571), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [126019] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2135), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2589), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1643), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2587), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125420] = 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, + [126066] = 4, + STATE(1710), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2593), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1609), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 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(2591), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125463] = 3, - ACTIONS(1823), 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, + anon_sym_QMARK_LBRACK, + [126111] = 3, + ACTIONS(1613), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 33, + ACTIONS(1615), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -130676,106 +131602,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [125506] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2694), 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(2692), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125549] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2597), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2595), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125592] = 4, - STATE(1630), 1, - aux_sym_comparison_operator_repeat1, + [126154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1335), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, - sym__newline, + ACTIONS(1337), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -130783,7 +131629,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, @@ -130797,51 +131642,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125637] = 3, + [126197] = 13, + ACTIONS(2532), 1, + anon_sym_LPAREN, + ACTIONS(2534), 1, + anon_sym_LBRACK, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2609), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [126260] = 14, + ACTIONS(2532), 1, anon_sym_LPAREN, + ACTIONS(2534), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2607), 22, - anon_sym_import, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 17, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125680] = 3, + 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, + [126325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2613), 12, + ACTIONS(2708), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -130854,7 +131760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2611), 22, + ACTIONS(2710), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -130877,27 +131783,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [125723] = 4, - ACTIONS(3), 2, + [126368] = 3, + ACTIONS(1777), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1481), 28, + ACTIONS(1779), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -130905,6 +131807,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, @@ -130912,34 +131815,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, - [125768] = 4, + [126411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1483), 4, + ACTIONS(1797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 28, + ACTIONS(1799), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -130959,75 +131863,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125813] = 3, + [126454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2617), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1865), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1867), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2615), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125856] = 6, - ACTIONS(2561), 1, anon_sym_and, - ACTIONS(2565), 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, + [126497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, + ACTIONS(1869), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 26, + ACTIONS(1871), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -131042,34 +131943,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125905] = 12, - ACTIONS(2508), 1, + [126540] = 15, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2510), 1, + ACTIONS(2534), 1, anon_sym_LBRACK, - ACTIONS(2512), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2514), 1, + ACTIONS(2542), 1, anon_sym_QMARK_DOT, - ACTIONS(2516), 1, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2562), 1, anon_sym_QMARK_LBRACK, - STATE(1945), 1, + STATE(1871), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2525), 2, + ACTIONS(2538), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2531), 2, + ACTIONS(2546), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2548), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1542), 21, + ACTIONS(2556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131079,39 +131988,87 @@ 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_PIPE, anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [126607] = 16, + ACTIONS(2532), 1, + anon_sym_LPAREN, + ACTIONS(2534), 1, + anon_sym_LBRACK, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, + anon_sym_QMARK_DOT, + ACTIONS(2552), 1, + anon_sym_AMP, + ACTIONS(2554), 1, anon_sym_CARET, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2556), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1398), 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, - [125966] = 3, + [126676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 4, + ACTIONS(1873), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 30, - sym__newline, + ACTIONS(1875), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -131131,95 +132088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126009] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2658), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2656), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126052] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2654), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2652), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126095] = 4, - ACTIONS(1629), 1, + [126719] = 4, + ACTIONS(1611), 1, anon_sym_LF, - STATE(1724), 1, + STATE(1764), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 32, + ACTIONS(1609), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131252,15 +132129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126140] = 4, - ACTIONS(1629), 1, + [126764] = 4, + ACTIONS(1611), 1, anon_sym_LF, - STATE(1724), 1, + STATE(1764), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 32, + ACTIONS(1609), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131293,15 +132170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126185] = 4, - ACTIONS(1629), 1, + [126809] = 4, + ACTIONS(1611), 1, anon_sym_LF, - STATE(1724), 1, + STATE(1764), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 32, + ACTIONS(1609), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131334,15 +132211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126230] = 4, - ACTIONS(1629), 1, + [126854] = 4, + ACTIONS(1611), 1, anon_sym_LF, - STATE(1724), 1, + STATE(1764), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 32, + ACTIONS(1609), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131375,23 +132252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126275] = 6, - ACTIONS(2561), 1, + [126899] = 6, + ACTIONS(2627), 1, anon_sym_and, - ACTIONS(2565), 1, + ACTIONS(2631), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + ACTIONS(1289), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 26, + ACTIONS(1291), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131418,11 +132295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126324] = 3, + [126948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2650), 12, + ACTIONS(2706), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -131435,7 +132312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2648), 22, + ACTIONS(2704), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -131458,11 +132335,91 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126367] = 3, + [126991] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1877), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1879), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [127034] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1855), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1853), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [127077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2646), 12, + ACTIONS(2702), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -131475,7 +132432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2644), 22, + ACTIONS(2700), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -131498,18 +132455,66 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126410] = 4, - STATE(2256), 1, + [127120] = 12, + ACTIONS(2532), 1, + anon_sym_LPAREN, + ACTIONS(2534), 1, + anon_sym_LBRACK, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, + anon_sym_QMARK_DOT, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1396), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [127181] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1667), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -131539,27 +132544,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126455] = 4, - STATE(2227), 1, + [127224] = 4, + STATE(2267), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 5, + ACTIONS(1643), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1641), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -131567,6 +132571,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, @@ -131580,28 +132585,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126500] = 4, - STATE(2737), 1, - aux_sym_quant_target_repeat1, + [127269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1661), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1663), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -131621,44 +132625,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126545] = 16, - ACTIONS(2508), 1, + [127312] = 10, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2510), 1, + ACTIONS(2534), 1, anon_sym_LBRACK, - ACTIONS(2512), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2514), 1, + ACTIONS(2542), 1, anon_sym_QMARK_DOT, - ACTIONS(2516), 1, + ACTIONS(2562), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2535), 1, - anon_sym_AMP, - ACTIONS(2537), 1, - anon_sym_CARET, - STATE(1945), 1, + STATE(1871), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2525), 2, + ACTIONS(1396), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2529), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2531), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2539), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131668,98 +132658,84 @@ 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, - [126614] = 15, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(2510), 1, - anon_sym_LBRACK, - ACTIONS(2512), 1, - anon_sym_STAR_STAR, - ACTIONS(2514), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2537), 1, - anon_sym_CARET, - STATE(1945), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [127369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2525), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2529), 2, + ACTIONS(2708), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2531), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2539), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 16, + anon_sym_TILDE, + sym_float, + ACTIONS(2710), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [126681] = 14, - ACTIONS(2508), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [127412] = 10, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2510), 1, + ACTIONS(2534), 1, anon_sym_LBRACK, - ACTIONS(2512), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2514), 1, + ACTIONS(2542), 1, anon_sym_QMARK_DOT, - ACTIONS(2516), 1, + ACTIONS(2562), 1, anon_sym_QMARK_LBRACK, - STATE(1945), 1, + STATE(1871), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2525), 2, + ACTIONS(1396), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2529), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2531), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2539), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1398), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131769,36 +132745,41 @@ 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, - [126746] = 4, + [127469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1516), 4, + ACTIONS(1751), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1514), 28, + ACTIONS(1749), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -131818,71 +132799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126791] = 21, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(2510), 1, - anon_sym_LBRACK, - ACTIONS(2512), 1, - anon_sym_STAR_STAR, - ACTIONS(2514), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2533), 1, - anon_sym_PIPE, - ACTIONS(2535), 1, - anon_sym_AMP, - ACTIONS(2537), 1, - anon_sym_CARET, - STATE(1945), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1520), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2525), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2529), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2531), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2539), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [126870] = 3, - ACTIONS(1637), 1, + [127512] = 3, + ACTIONS(1671), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 33, + ACTIONS(1669), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131916,78 +132839,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126913] = 21, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(2510), 1, - anon_sym_LBRACK, - ACTIONS(2512), 1, - anon_sym_STAR_STAR, - ACTIONS(2514), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2533), 1, - anon_sym_PIPE, - ACTIONS(2535), 1, - anon_sym_AMP, - ACTIONS(2537), 1, - anon_sym_CARET, - STATE(1945), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1532), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2525), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2529), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2531), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2539), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [126992] = 3, - ACTIONS(1791), 1, + [127555] = 3, + ACTIONS(1675), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 33, + ACTIONS(1673), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -132014,34 +132879,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127035] = 4, - STATE(1782), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [127598] = 3, + ACTIONS(1679), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1677), 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, @@ -132049,34 +132911,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, - [127080] = 3, + [127641] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, + ACTIONS(2712), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1839), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 30, - sym__newline, - anon_sym_DOT, + ACTIONS(1473), 26, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -132095,46 +132961,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127123] = 13, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(2510), 1, - anon_sym_LBRACK, - ACTIONS(2512), 1, - anon_sym_STAR_STAR, - ACTIONS(2514), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_QMARK_LBRACK, - STATE(1945), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [127688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2525), 2, + ACTIONS(1695), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2529), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2531), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -132145,21 +133000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [127186] = 4, - ACTIONS(1599), 1, + anon_sym_QMARK_LBRACK, + [127731] = 3, + ACTIONS(1683), 1, anon_sym_LF, - STATE(1811), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 32, + ACTIONS(1681), 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, @@ -132186,26 +133041,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127231] = 3, - ACTIONS(3), 2, + [127774] = 4, + ACTIONS(1641), 1, + anon_sym_LF, + STATE(2237), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 29, - sym__newline, + ACTIONS(1643), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -132213,6 +133066,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, @@ -132220,113 +133074,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127274] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2633), 12, - sym_string_start, - ts_builtin_sym_end, + [127819] = 21, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2532), 1, anon_sym_LPAREN, + ACTIONS(2534), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2540), 1, + anon_sym_STAR_STAR, + ACTIONS(2542), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2631), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127317] = 3, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2552), 1, + anon_sym_AMP, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2562), 1, + anon_sym_QMARK_LBRACK, + STATE(1871), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2621), 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(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1406), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2538), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2619), 22, - anon_sym_import, + ACTIONS(2548), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2556), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127360] = 4, - STATE(1669), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + anon_sym_and, + anon_sym_or, + [127898] = 3, + ACTIONS(1687), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 29, - sym__newline, + ACTIONS(1685), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -132334,6 +133164,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, @@ -132341,103 +133172,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, - [127405] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2629), 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(2627), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127448] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2625), 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(2623), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127491] = 3, + [127941] = 5, + ACTIONS(2715), 1, + anon_sym_EQ, + STATE(1757), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, - anon_sym_EQ, + ACTIONS(1488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 28, + ACTIONS(1490), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132466,30 +133222,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127533] = 3, - ACTIONS(1771), 1, - anon_sym_LF, - ACTIONS(5), 2, + [127988] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 32, + ACTIONS(1851), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1849), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132497,24 +133256,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, - [127575] = 3, + [128031] = 4, + STATE(1748), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 29, + ACTIONS(1611), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132544,27 +133303,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127617] = 3, + [128076] = 5, + STATE(1848), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 4, + ACTIONS(2717), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1478), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 29, - sym__newline, - anon_sym_DOT, + ACTIONS(1483), 26, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -132583,22 +133345,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127659] = 3, - ACTIONS(1763), 1, - anon_sym_LF, - ACTIONS(5), 2, + [128123] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 32, + ACTIONS(1841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1843), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -132606,7 +133371,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, @@ -132614,24 +133378,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, - [127701] = 3, + [128165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 4, + ACTIONS(1797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 29, + ACTIONS(1799), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132661,108 +133423,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127743] = 3, - ACTIONS(1783), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1781), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + [128207] = 8, + ACTIONS(2723), 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, - 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(2729), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [127785] = 3, - ACTIONS(1749), 1, - anon_sym_LF, - ACTIONS(5), 2, + STATE(1851), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(1627), 2, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2726), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(2720), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [127827] = 3, - ACTIONS(1745), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1747), 32, + ACTIONS(1625), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132770,26 +133466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [127869] = 4, - STATE(1921), 1, - aux_sym_comparison_operator_repeat1, + [128259] = 4, + STATE(1757), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1623), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1621), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132818,13 +133507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127913] = 3, - ACTIONS(1741), 1, + [128303] = 3, + ACTIONS(1641), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 32, + ACTIONS(1643), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132857,13 +133546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127955] = 3, - ACTIONS(1783), 1, + [128345] = 5, + ACTIONS(1641), 1, anon_sym_LF, + ACTIONS(1773), 1, + anon_sym_in, + ACTIONS(1775), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 32, + ACTIONS(1643), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132871,11 +133564,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, @@ -132896,16 +133587,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127997] = 3, + [128391] = 4, + ACTIONS(2715), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 4, + ACTIONS(1488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 29, + ACTIONS(1490), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132913,7 +133606,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, @@ -132935,31 +133627,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128039] = 3, + [128435] = 7, + ACTIONS(2209), 1, + anon_sym_and, + ACTIONS(2732), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 29, - sym__newline, + ACTIONS(1291), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1299), 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, @@ -132974,13 +133670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128081] = 3, - ACTIONS(1811), 1, + [128485] = 3, + ACTIONS(1791), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 32, + ACTIONS(1789), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133013,20 +133709,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [128123] = 5, - ACTIONS(2704), 1, - anon_sym_in, - ACTIONS(2706), 1, - anon_sym_not, + [128527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1855), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1853), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133035,8 +133727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -133054,13 +133748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128169] = 3, - ACTIONS(1815), 1, + [128569] = 3, + ACTIONS(1875), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 32, + ACTIONS(1873), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133093,25 +133787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [128211] = 3, - ACTIONS(3), 2, + [128611] = 3, + ACTIONS(1795), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1839), 29, - sym__newline, + ACTIONS(1793), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133119,6 +133810,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, @@ -133126,19 +133818,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, - [128253] = 3, - ACTIONS(1737), 1, + [128653] = 3, + ACTIONS(1448), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 32, + ACTIONS(1343), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133171,13 +133865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [128295] = 3, - ACTIONS(1815), 1, + [128695] = 3, + ACTIONS(1641), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 32, + ACTIONS(1643), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133210,25 +133904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [128337] = 3, - ACTIONS(3), 2, + [128737] = 3, + ACTIONS(1799), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1783), 29, - sym__newline, + ACTIONS(1797), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133236,6 +133927,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, @@ -133243,30 +133935,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, - [128379] = 3, + [128779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 4, + ACTIONS(1857), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 29, - sym__newline, + ACTIONS(1859), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -133288,25 +133982,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128421] = 3, - ACTIONS(3), 2, + [128821] = 3, + ACTIONS(1811), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1783), 29, - sym__newline, + ACTIONS(1809), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133314,6 +134005,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, @@ -133321,29 +134013,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, - [128463] = 3, + [128863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 4, + ACTIONS(1615), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1851), 29, - sym__newline, + ACTIONS(1613), 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, @@ -133366,22 +134060,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128505] = 3, - ACTIONS(1819), 1, - anon_sym_LF, - ACTIONS(5), 2, + [128905] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 32, + ACTIONS(1877), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1879), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133389,7 +134086,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, @@ -133397,32 +134093,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, - [128547] = 3, + [128947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, + ACTIONS(1873), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 29, + ACTIONS(1875), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -133444,25 +134138,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128589] = 3, - ACTIONS(3), 2, + [128989] = 3, + ACTIONS(1785), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1779), 29, - sym__newline, + ACTIONS(1787), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133470,6 +134161,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, @@ -133477,22 +134169,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, - [128631] = 3, + [129031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 4, + ACTIONS(1869), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 29, + ACTIONS(1871), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133522,24 +134216,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128673] = 3, + [129073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 4, + ACTIONS(1779), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1863), 29, - sym__newline, + ACTIONS(1777), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -133561,16 +134255,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128715] = 3, + [129115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 4, + ACTIONS(1865), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 29, + ACTIONS(1867), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133600,25 +134294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128757] = 3, - ACTIONS(3), 2, + [129157] = 3, + ACTIONS(1819), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 29, - sym__newline, + ACTIONS(1817), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133626,6 +134317,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, @@ -133633,19 +134325,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, - [128799] = 3, - ACTIONS(1839), 1, + [129199] = 3, + ACTIONS(1823), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 32, + ACTIONS(1821), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133678,23 +134372,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [128841] = 3, + [129241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 4, + ACTIONS(1607), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 29, - sym__newline, + ACTIONS(1605), 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, @@ -133717,16 +134411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128883] = 3, + [129283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 4, + ACTIONS(1695), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 29, + ACTIONS(1693), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133756,25 +134450,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128925] = 3, - ACTIONS(3), 2, + [129325] = 3, + ACTIONS(1827), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1749), 29, - sym__newline, + ACTIONS(1825), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133782,6 +134473,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, @@ -133789,31 +134481,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, - [128967] = 3, - ACTIONS(3), 2, + [129367] = 3, + ACTIONS(1831), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1841), 29, - sym__newline, + ACTIONS(1829), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133821,6 +134512,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, @@ -133828,22 +134520,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, - [129009] = 3, + [129409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, + ACTIONS(1851), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 29, + ACTIONS(1849), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133873,13 +134567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129051] = 3, - ACTIONS(1847), 1, + [129451] = 3, + ACTIONS(1835), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 32, + ACTIONS(1833), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133912,23 +134606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [129093] = 3, + [129493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, + ACTIONS(1681), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 29, - sym__newline, + ACTIONS(1683), 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, @@ -133951,22 +134645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129135] = 3, - ACTIONS(1851), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129535] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 32, + ACTIONS(1685), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1687), 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, @@ -133974,7 +134671,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, @@ -133982,31 +134678,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, - [129177] = 3, + [129577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 5, - anon_sym_EQ, + ACTIONS(1861), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(1863), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -134029,24 +134723,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129219] = 3, + [129619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, + ACTIONS(1839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 29, - sym__newline, + ACTIONS(1837), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -134068,22 +134762,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129261] = 3, - ACTIONS(1859), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129661] = 4, + STATE(1900), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 32, + ACTIONS(1643), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 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, @@ -134091,7 +134789,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, @@ -134099,24 +134796,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, - [129303] = 3, + [129705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, + ACTIONS(1665), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 29, + ACTIONS(1667), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134124,7 +134820,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, @@ -134146,25 +134841,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129345] = 3, - ACTIONS(3), 2, + [129747] = 3, + ACTIONS(1843), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1791), 29, + ACTIONS(1841), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134172,6 +134864,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, @@ -134179,22 +134872,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, - [129387] = 3, + [129789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 4, + ACTIONS(1815), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 29, + ACTIONS(1813), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134224,23 +134919,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129429] = 3, + [129831] = 4, + STATE(2249), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 29, - sym__newline, + ACTIONS(1641), 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, @@ -134263,32 +134959,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129471] = 3, + [129875] = 3, + ACTIONS(1847), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1845), 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, + [129917] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2734), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, + ACTIONS(1643), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1825), 29, - sym__newline, + ACTIONS(1641), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134302,16 +135039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129513] = 3, + [129963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, + ACTIONS(1807), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 29, + ACTIONS(1805), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134341,24 +135078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129555] = 3, + [130005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, + ACTIONS(1711), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 29, - sym__newline, + ACTIONS(1709), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -134380,20 +135117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129597] = 5, - ACTIONS(2123), 1, - anon_sym_in, - ACTIONS(2125), 1, - anon_sym_not, + [130047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1803), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1801), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134402,8 +135135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -134421,29 +135156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129643] = 8, - ACTIONS(2711), 1, - anon_sym_not, - ACTIONS(2717), 1, - anon_sym_is, - STATE(1888), 1, - aux_sym_comparison_operator_repeat1, + [130089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2714), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2708), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 21, + ACTIONS(1725), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134451,8 +135173,11 @@ 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, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -134464,17 +135189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [129695] = 3, + [130131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 4, + ACTIONS(1699), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1693), 29, + ACTIONS(1697), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134504,13 +135234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129737] = 3, - ACTIONS(1733), 1, + [130173] = 5, + ACTIONS(1641), 1, anon_sym_LF, + ACTIONS(2736), 1, + anon_sym_in, + ACTIONS(2738), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 32, + ACTIONS(1643), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134518,11 +135252,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, @@ -134543,22 +135275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [129779] = 3, - ACTIONS(1863), 1, - anon_sym_LF, - ACTIONS(5), 2, + [130219] = 4, + STATE(1851), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 32, + ACTIONS(1609), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 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, @@ -134566,7 +135302,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, @@ -134574,24 +135309,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, - [129821] = 3, + [130263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 4, + ACTIONS(1707), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 29, + ACTIONS(1705), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134621,18 +135354,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129863] = 4, - STATE(1746), 1, - aux_sym_union_type_repeat1, + [130305] = 4, + STATE(1851), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1635), 28, + ACTIONS(1611), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134661,22 +135394,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129907] = 3, - ACTIONS(1693), 1, - anon_sym_LF, - ACTIONS(5), 2, + [130349] = 4, + STATE(1851), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 32, + ACTIONS(1609), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 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, @@ -134684,7 +135421,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, @@ -134692,31 +135428,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, - [129949] = 3, + [130393] = 4, + STATE(1851), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, - anon_sym_EQ, + ACTIONS(1609), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1611), 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, @@ -134724,7 +135459,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, @@ -134739,24 +135474,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129991] = 4, - ACTIONS(2696), 1, - anon_sym_EQ, + [130437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + ACTIONS(1715), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 28, + ACTIONS(1713), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -134779,13 +135513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130035] = 3, - ACTIONS(1689), 1, + [130479] = 3, + ACTIONS(1863), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 32, + ACTIONS(1861), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134818,16 +135552,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130077] = 3, + [130521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 4, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 29, + ACTIONS(1717), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134857,16 +135591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130119] = 3, + [130563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 29, + ACTIONS(1717), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134896,64 +135630,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130161] = 3, - ACTIONS(3), 2, + [130605] = 3, + ACTIONS(1799), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1619), 28, + ACTIONS(1797), 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_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, - [130203] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1711), 4, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1709), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134961,6 +135653,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, @@ -134968,19 +135661,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, - [130245] = 3, - ACTIONS(1871), 1, + [130647] = 3, + ACTIONS(1691), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 32, + ACTIONS(1689), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135013,55 +135708,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130287] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - 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, - [130329] = 3, + [130689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 4, + ACTIONS(1845), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 29, + ACTIONS(1847), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -135091,23 +135747,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130371] = 3, + [130731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, + ACTIONS(1657), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 29, - sym__newline, + ACTIONS(1659), 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, @@ -135130,25 +135786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130413] = 3, - ACTIONS(3), 2, + [130773] = 3, + ACTIONS(1867), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1433), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1438), 28, + ACTIONS(1865), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135156,6 +135809,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, @@ -135163,19 +135817,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, - [130455] = 3, - ACTIONS(1841), 1, + [130815] = 3, + ACTIONS(1871), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 32, + ACTIONS(1869), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135208,13 +135864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130497] = 3, - ACTIONS(1833), 1, + [130857] = 5, + ACTIONS(1641), 1, anon_sym_LF, + ACTIONS(2736), 1, + anon_sym_in, + ACTIONS(2740), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 32, + ACTIONS(1643), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135222,11 +135882,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, @@ -135247,20 +135905,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130539] = 5, - ACTIONS(2704), 1, - anon_sym_in, - ACTIONS(2720), 1, - anon_sym_not, + [130903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1723), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1721), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -135269,8 +135923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -135288,22 +135944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130585] = 3, - ACTIONS(1829), 1, - anon_sym_LF, - ACTIONS(5), 2, + [130945] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 32, + ACTIONS(1478), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 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, @@ -135311,7 +135970,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, @@ -135319,24 +135977,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, - [130627] = 3, + [130987] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2135), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 29, + ACTIONS(1641), 27, sym__newline, anon_sym_DOT, anon_sym_as, @@ -135345,10 +136005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -135366,22 +136024,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130669] = 3, - ACTIONS(1825), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131033] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 32, + ACTIONS(1731), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1729), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135389,7 +136050,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, @@ -135397,15 +136057,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130711] = 3, + [131075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -135444,13 +136102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130753] = 3, - ACTIONS(1805), 1, + [131117] = 3, + ACTIONS(1879), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 32, + ACTIONS(1877), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135483,23 +136141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130795] = 3, + [131159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, - anon_sym_EQ, + ACTIONS(1833), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 28, + ACTIONS(1835), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135522,23 +136180,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130837] = 3, + [131201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, - anon_sym_EQ, + ACTIONS(1735), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 28, + ACTIONS(1733), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135561,22 +136219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130879] = 3, - ACTIONS(1801), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131243] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 32, + ACTIONS(1829), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1831), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135584,7 +136245,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, @@ -135592,32 +136252,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, - [130921] = 4, - STATE(1888), 1, - aux_sym_comparison_operator_repeat1, + [131285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1825), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1827), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135640,30 +136297,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130965] = 3, - ACTIONS(1683), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131327] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2742), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 32, + ACTIONS(1643), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 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, @@ -135671,21 +136332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131007] = 3, - ACTIONS(1687), 1, + [131373] = 3, + ACTIONS(1853), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 32, + ACTIONS(1855), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135718,24 +136377,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131049] = 4, - STATE(1888), 1, - aux_sym_comparison_operator_repeat1, + [131415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1739), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1737), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135758,23 +136416,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131093] = 3, + [131457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_EQ, + ACTIONS(1743), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 28, + ACTIONS(1741), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135797,34 +136455,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131135] = 5, - ACTIONS(2123), 1, + [131499] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1747), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1745), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, - ACTIONS(2722), 1, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - ACTIONS(3), 2, + 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, + [131541] = 3, + ACTIONS(1693), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 5, + ACTIONS(1695), 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, + [131583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1751), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1749), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_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, @@ -135838,24 +136572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131181] = 4, - STATE(1888), 1, - aux_sym_comparison_operator_repeat1, + [131625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1821), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1823), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135878,24 +136611,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131225] = 4, - STATE(1888), 1, - aux_sym_comparison_operator_repeat1, + [131667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1817), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1819), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135918,22 +136650,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131269] = 3, - ACTIONS(1757), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131709] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 32, + ACTIONS(1755), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1753), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135941,7 +136676,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, @@ -135949,21 +136683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131311] = 3, - ACTIONS(1753), 1, + [131751] = 3, + ACTIONS(1849), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 32, + ACTIONS(1851), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135996,22 +136728,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131353] = 3, - ACTIONS(1779), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131793] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 32, + ACTIONS(1787), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1785), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136019,7 +136754,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, @@ -136027,30 +136761,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, - [131395] = 3, - ACTIONS(1727), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131835] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 32, + ACTIONS(1759), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136058,7 +136793,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, @@ -136066,25 +136800,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, - [131437] = 3, + [131877] = 4, + STATE(2267), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 5, - anon_sym_EQ, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 28, + ACTIONS(1641), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136113,22 +136846,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131479] = 3, - ACTIONS(1723), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131921] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 32, + ACTIONS(1763), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1761), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136136,7 +136872,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, @@ -136144,24 +136879,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_is, + anon_sym_QMARK_LBRACK, + [131963] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1767), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, + ACTIONS(1765), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131521] = 3, + [132005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1253), 4, + ACTIONS(1771), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 29, + ACTIONS(1769), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -136191,13 +136963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131563] = 3, - ACTIONS(1719), 1, + [132047] = 3, + ACTIONS(1813), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 32, + ACTIONS(1815), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136230,13 +137002,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131605] = 3, - ACTIONS(1715), 1, + [132089] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1809), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1811), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [132131] = 3, + ACTIONS(1805), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 32, + ACTIONS(1807), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136269,13 +137080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131647] = 3, - ACTIONS(1707), 1, + [132173] = 3, + ACTIONS(1741), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 32, + ACTIONS(1743), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136308,17 +137119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131689] = 5, - ACTIONS(1599), 1, + [132215] = 3, + ACTIONS(1801), 1, anon_sym_LF, - ACTIONS(1785), 1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1803), 32, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, - ACTIONS(1787), 1, + 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, + [132257] = 3, + ACTIONS(1697), 1, + anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 30, + ACTIONS(1699), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136326,9 +137172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -136349,13 +137197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131735] = 3, - ACTIONS(1703), 1, + [132299] = 3, + ACTIONS(1745), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 32, + ACTIONS(1747), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136388,25 +137236,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131777] = 3, - ACTIONS(3), 2, + [132341] = 3, + ACTIONS(1749), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 4, + ACTIONS(1751), 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, - ACTIONS(1703), 29, - sym__newline, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [132383] = 3, + ACTIONS(1705), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1707), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136414,6 +137298,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, @@ -136421,29 +137306,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, - [131819] = 3, + [132425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 5, - anon_sym_EQ, + ACTIONS(1797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 28, + ACTIONS(1799), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -136466,23 +137353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131861] = 3, + [132467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1619), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, - sym__newline, + ACTIONS(1617), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -136505,17 +137392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131903] = 5, - ACTIONS(1599), 1, + [132509] = 3, + ACTIONS(1753), 1, anon_sym_LF, - ACTIONS(2724), 1, - anon_sym_in, - ACTIONS(2726), 1, - anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 30, + ACTIONS(1755), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136523,9 +137406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -136546,13 +137431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131949] = 3, - ACTIONS(1765), 1, + [132551] = 3, + ACTIONS(1757), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 32, + ACTIONS(1759), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136585,13 +137470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131991] = 3, - ACTIONS(1773), 1, + [132593] = 3, + ACTIONS(1761), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 32, + ACTIONS(1763), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136624,22 +137509,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132033] = 3, - ACTIONS(1683), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132635] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 32, + ACTIONS(1793), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1795), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136647,7 +137535,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, @@ -136655,33 +137542,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, - [132075] = 3, + [132677] = 5, + ACTIONS(2744), 1, + anon_sym_in, + ACTIONS(2746), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1699), 29, + ACTIONS(1641), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + 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, + [132723] = 3, + ACTIONS(1713), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1715), 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, @@ -136689,6 +137612,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, @@ -136696,31 +137620,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, - [132117] = 3, - ACTIONS(3), 2, + [132765] = 3, + ACTIONS(1717), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, + ACTIONS(1719), 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, - ACTIONS(1757), 29, - sym__newline, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [132807] = 3, + ACTIONS(1717), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1719), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136728,6 +137690,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, @@ -136735,22 +137698,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, - [132159] = 3, + [132849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, + ACTIONS(1789), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 29, + ACTIONS(1791), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -136780,25 +137745,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132201] = 3, + [132891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 4, + ACTIONS(1643), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1727), 29, - sym__newline, + ACTIONS(1641), 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, + [132933] = 3, + ACTIONS(1721), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1723), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136806,6 +137807,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, @@ -136813,29 +137815,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, - [132243] = 3, + [132975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 4, + ACTIONS(1677), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1723), 29, - sym__newline, + ACTIONS(1679), 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, @@ -136858,18 +137862,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132285] = 4, - STATE(2256), 1, - aux_sym_comparison_operator_repeat1, + [133017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1673), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1675), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136898,25 +137901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132329] = 3, - ACTIONS(3), 2, + [133059] = 3, + ACTIONS(1765), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1719), 29, - sym__newline, + ACTIONS(1767), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136924,47 +137924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132371] = 5, - ACTIONS(2123), 1, - anon_sym_in, - ACTIONS(2728), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -136972,24 +137932,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, - [132417] = 4, - STATE(2239), 1, - aux_sym_comparison_operator_repeat1, + [133101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1669), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1671), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137018,32 +137979,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132461] = 5, - ACTIONS(1599), 1, - anon_sym_LF, - ACTIONS(2724), 1, + [133143] = 5, + ACTIONS(2744), 1, anon_sym_in, - ACTIONS(2730), 1, + ACTIONS(2748), 1, anon_sym_not, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 30, + ACTIONS(1643), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_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, @@ -137051,31 +138014,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, - [132507] = 3, + [133189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 4, + ACTIONS(1661), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1715), 29, - sym__newline, + ACTIONS(1663), 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, @@ -137098,16 +138059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132549] = 3, + [133231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 4, + ACTIONS(1689), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 29, + ACTIONS(1691), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -137137,23 +138098,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132591] = 3, + [133273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 5, - anon_sym_EQ, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 28, + ACTIONS(1641), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -137176,13 +138137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132633] = 3, - ACTIONS(1599), 1, + [133315] = 3, + ACTIONS(1769), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 32, + ACTIONS(1771), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137215,13 +138176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132675] = 3, - ACTIONS(1251), 1, + [133357] = 3, + ACTIONS(1729), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1253), 32, + ACTIONS(1731), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137254,16 +138215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132717] = 3, + [133399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1343), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1448), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -137293,62 +138254,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132759] = 3, - ACTIONS(1709), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1711), 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, - [132801] = 3, + [133441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_EQ, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1605), 28, + ACTIONS(1641), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -137371,13 +138293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132843] = 3, - ACTIONS(1599), 1, + [133483] = 3, + ACTIONS(1729), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 32, + ACTIONS(1731), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137410,13 +138332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132885] = 3, - ACTIONS(1729), 1, + [133525] = 3, + ACTIONS(1733), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 32, + ACTIONS(1735), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137449,24 +138371,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132927] = 3, - ACTIONS(3), 2, + [133567] = 3, + ACTIONS(1737), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1715), 28, + ACTIONS(1739), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -137474,77 +138394,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132968] = 13, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2732), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2738), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1542), 17, - 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, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, - [133029] = 3, + anon_sym_QMARK_LBRACK, + [133609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 4, + ACTIONS(1877), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 28, + ACTIONS(1879), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137573,16 +138448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133070] = 3, + [133650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 4, + ACTIONS(1793), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 28, + ACTIONS(1795), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137611,130 +138486,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133111] = 20, - ACTIONS(2042), 1, + [133691] = 20, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2104), 1, anon_sym_is, - ACTIONS(2167), 1, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2752), 1, anon_sym_STAR_STAR, - ACTIONS(2740), 1, + ACTIONS(2758), 1, anon_sym_PIPE, - ACTIONS(2742), 1, + ACTIONS(2760), 1, anon_sym_AMP, - ACTIONS(2744), 1, + ACTIONS(2762), 1, anon_sym_CARET, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2050), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2732), 2, + ACTIONS(2750), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2736), 2, + ACTIONS(2754), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2738), 2, + ACTIONS(2756), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2746), 2, + ACTIONS(2764), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [133186] = 5, - ACTIONS(2748), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1391), 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(1393), 17, + ACTIONS(1448), 5, 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, - [133231] = 8, - ACTIONS(2750), 1, - anon_sym_and, + [133766] = 10, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, ACTIONS(2752), 1, - anon_sym_or, - ACTIONS(2754), 1, - anon_sym_PLUS, + anon_sym_STAR_STAR, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1461), 4, + ACTIONS(1396), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 21, + ACTIONS(1398), 21, + anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -137748,38 +138586,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [133821] = 10, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [133282] = 10, - ACTIONS(2750), 1, - anon_sym_and, ACTIONS(2752), 1, - anon_sym_or, - ACTIONS(2754), 1, - anon_sym_PLUS, - ACTIONS(2756), 1, - anon_sym_as, - ACTIONS(2758), 1, - anon_sym_if, + anon_sym_STAR_STAR, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1449), 4, + ACTIONS(1396), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1398), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, 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, @@ -137793,34 +138631,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [133876] = 12, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [133337] = 3, + ACTIONS(2752), 1, + anon_sym_STAR_STAR, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 28, + ACTIONS(2750), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2756), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 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, @@ -137831,194 +138678,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [133378] = 11, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(1323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2748), 1, - anon_sym_PLUS, - ACTIONS(2762), 1, - anon_sym_as, - ACTIONS(2764), 1, - anon_sym_if, - ACTIONS(2768), 1, - anon_sym_and, - ACTIONS(2770), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2766), 11, - sym_string_start, - anon_sym_COMMA, + [133935] = 16, + ACTIONS(2175), 1, anon_sym_LPAREN, + ACTIONS(2177), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2752), 1, anon_sym_STAR_STAR, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2760), 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, - [133435] = 3, + ACTIONS(2760), 1, + anon_sym_AMP, + ACTIONS(2762), 1, + anon_sym_CARET, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 28, + ACTIONS(2750), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2756), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2764), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 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, + [134002] = 15, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [133476] = 3, + ACTIONS(2752), 1, + anon_sym_STAR_STAR, + ACTIONS(2762), 1, + anon_sym_CARET, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 28, + ACTIONS(2750), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2756), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2764), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 14, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [134067] = 14, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [133517] = 3, + ACTIONS(2752), 1, + anon_sym_STAR_STAR, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 28, + ACTIONS(2750), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2756), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2764), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1398), 15, 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, + [134130] = 13, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [133558] = 3, + ACTIONS(2752), 1, + anon_sym_STAR_STAR, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1396), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 28, + ACTIONS(2750), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2756), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1398), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -138029,55 +138876,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [134191] = 20, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - [133599] = 3, + ACTIONS(2752), 1, + anon_sym_STAR_STAR, + ACTIONS(2758), 1, + anon_sym_PIPE, + ACTIONS(2760), 1, + anon_sym_AMP, + ACTIONS(2762), 1, + anon_sym_CARET, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 28, + ACTIONS(2750), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2756), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2764), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + [134266] = 20, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2175), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2177), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2752), 1, + anon_sym_STAR_STAR, + ACTIONS(2758), 1, + anon_sym_PIPE, + ACTIONS(2760), 1, + anon_sym_AMP, + ACTIONS(2762), 1, + anon_sym_CARET, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2750), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2754), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2756), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2764), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1373), 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, - [133640] = 3, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [134341] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2135), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 28, + ACTIONS(1641), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138085,10 +139007,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, @@ -138106,68 +139026,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133681] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1739), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1737), 28, + [134386] = 11, + ACTIONS(1012), 1, anon_sym_DOT, + ACTIONS(1315), 1, + anon_sym_QMARK_DOT, + ACTIONS(2768), 1, anon_sym_as, + ACTIONS(2770), 1, anon_sym_if, + ACTIONS(2774), 1, + anon_sym_and, + ACTIONS(2776), 1, + anon_sym_or, + ACTIONS(2778), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2772), 11, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2766), 12, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, - anon_sym_and, - anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [134443] = 20, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2752), 1, + anon_sym_STAR_STAR, + ACTIONS(2758), 1, + anon_sym_PIPE, + ACTIONS(2760), 1, + anon_sym_AMP, + ACTIONS(2762), 1, + anon_sym_CARET, + STATE(1296), 1, + sym_argument_list, + STATE(2060), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1351), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2750), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2754), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2756), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2764), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1373), 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, - [133722] = 3, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [134518] = 8, + ACTIONS(2780), 1, + anon_sym_and, + ACTIONS(2782), 1, + anon_sym_or, + ACTIONS(2784), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 28, - anon_sym_DOT, + ACTIONS(1550), 21, 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, @@ -138182,30 +139170,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133763] = 3, + [134569] = 10, + ACTIONS(2780), 1, + anon_sym_and, + ACTIONS(2782), 1, + anon_sym_or, + ACTIONS(2784), 1, + anon_sym_PLUS, + ACTIONS(2786), 1, + anon_sym_as, + ACTIONS(2788), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 4, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1569), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1693), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(1567), 19, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138220,16 +139215,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133804] = 5, - ACTIONS(2748), 1, + [134624] = 11, + ACTIONS(1012), 1, + anon_sym_DOT, + ACTIONS(1315), 1, + anon_sym_QMARK_DOT, + ACTIONS(2768), 1, + anon_sym_as, + ACTIONS(2770), 1, + anon_sym_if, + ACTIONS(2774), 1, + anon_sym_and, + ACTIONS(2776), 1, + anon_sym_or, + ACTIONS(2778), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 12, + ACTIONS(2792), 11, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -138237,39 +139244,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1389), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2790), 12, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [133849] = 3, + [134681] = 5, + ACTIONS(2794), 1, + anon_sym_in, + ACTIONS(2796), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1689), 28, + ACTIONS(1641), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138277,6 +139282,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [134726] = 4, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 27, + sym__newline, + 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, @@ -138298,16 +139340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133890] = 3, + [134769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 4, + ACTIONS(1343), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 28, + ACTIONS(1448), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138336,22 +139378,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133931] = 3, + [134810] = 5, + ACTIONS(2784), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1428), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 28, + ACTIONS(1430), 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, @@ -138359,7 +139404,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, @@ -138374,22 +139418,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133972] = 3, + [134855] = 5, + ACTIONS(2784), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 4, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1289), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 28, + ACTIONS(1291), 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, @@ -138397,7 +139444,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, @@ -138412,62 +139458,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134013] = 11, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(1323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2748), 1, + [134900] = 5, + ACTIONS(2784), 1, anon_sym_PLUS, - ACTIONS(2762), 1, - anon_sym_as, - ACTIONS(2764), 1, - anon_sym_if, - ACTIONS(2768), 1, - anon_sym_and, - ACTIONS(2770), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2774), 11, - sym_string_start, - anon_sym_COMMA, + ACTIONS(1424), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1422), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_LPAREN, 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(2772), 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, - [134070] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [134945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 28, + ACTIONS(1641), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138496,16 +139536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134111] = 3, + [134986] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 4, + ACTIONS(1689), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 28, + ACTIONS(1691), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138534,16 +139574,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134152] = 3, + [135027] = 5, + ACTIONS(2794), 1, + anon_sym_in, + ACTIONS(2798), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1841), 28, + ACTIONS(1641), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138551,10 +139595,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, @@ -138572,16 +139614,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134193] = 3, + [135072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, + ACTIONS(1789), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 28, + ACTIONS(1791), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138610,16 +139652,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134234] = 3, + [135113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 4, + ACTIONS(1797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 28, + ACTIONS(1799), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138648,16 +139690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134275] = 3, + [135154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 4, + ACTIONS(1809), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 28, + ACTIONS(1811), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138686,16 +139728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134316] = 3, + [135195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 28, + ACTIONS(1641), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138724,16 +139766,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134357] = 3, + [135236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, + ACTIONS(1787), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1825), 28, + ACTIONS(1785), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138762,75 +139804,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134398] = 20, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - ACTIONS(2740), 1, - anon_sym_PIPE, - ACTIONS(2742), 1, - anon_sym_AMP, - ACTIONS(2744), 1, - anon_sym_CARET, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [135277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2732), 2, + ACTIONS(1817), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2736), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1819), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2738), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2746), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [134473] = 5, - ACTIONS(2776), 1, - anon_sym_in, - ACTIONS(2778), 1, - anon_sym_not, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [135318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1821), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1823), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138838,8 +139859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -138857,16 +139880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134518] = 3, + [135359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, + ACTIONS(1825), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 28, + ACTIONS(1827), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138895,133 +139918,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134559] = 20, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - ACTIONS(2740), 1, - anon_sym_PIPE, - ACTIONS(2742), 1, - anon_sym_AMP, - ACTIONS(2744), 1, - anon_sym_CARET, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [135400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2732), 2, + ACTIONS(1829), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2736), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1831), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2738), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2746), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [134634] = 9, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(1323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2748), 1, - anon_sym_PLUS, - ACTIONS(2768), 1, - anon_sym_and, - ACTIONS(2770), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 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(1461), 14, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [134687] = 10, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, + anon_sym_is, anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [135441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 4, + ACTIONS(1833), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1369), 21, + ACTIONS(1835), 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, @@ -139039,16 +139993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [134742] = 3, + anon_sym_QMARK_LBRACK, + [135482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 4, + ACTIONS(1841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 28, + ACTIONS(1843), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139077,16 +140032,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134783] = 3, + [135523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 4, + ACTIONS(1845), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1863), 28, + ACTIONS(1847), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139115,16 +140070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134824] = 3, + [135564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1253), 4, + ACTIONS(1861), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 28, + ACTIONS(1863), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139153,16 +140108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134865] = 3, + [135605] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1799), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139191,16 +140146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134906] = 3, + [135646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 4, + ACTIONS(1865), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 28, + ACTIONS(1867), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139229,63 +140184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134947] = 5, - ACTIONS(2748), 1, - anon_sym_PLUS, + [135687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1381), 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(1383), 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, - [134992] = 4, - STATE(2232), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1869), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, - sym__newline, + ACTIONS(1871), 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, @@ -139308,61 +140222,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135035] = 10, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [135728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1542), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [135090] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1803), 4, + ACTIONS(1873), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 28, + ACTIONS(1875), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139391,20 +140260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135131] = 5, - ACTIONS(2776), 1, - anon_sym_in, - ACTIONS(2780), 1, - anon_sym_not, + [135769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1855), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1853), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139412,8 +140277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -139431,34 +140298,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135176] = 10, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [135810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 4, + ACTIONS(1695), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1542), 21, + ACTIONS(1693), 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, @@ -139476,16 +140335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [135231] = 3, + anon_sym_QMARK_LBRACK, + [135851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1851), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1849), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139514,63 +140374,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135272] = 12, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2732), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2738), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1542), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [135331] = 3, + [135892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, + ACTIONS(1815), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 28, + ACTIONS(1813), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139599,34 +140412,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135372] = 7, - ACTIONS(2750), 1, - anon_sym_and, - ACTIONS(2754), 1, - anon_sym_PLUS, + [135933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1578), 4, + ACTIONS(1807), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 5, + ACTIONS(1805), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1580), 19, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -139641,16 +140450,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135421] = 3, + [135974] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 4, + ACTIONS(1803), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1703), 28, + ACTIONS(1801), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139679,16 +140488,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135462] = 3, + [136015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 4, + ACTIONS(1699), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 28, + ACTIONS(1697), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139717,62 +140526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135503] = 11, - ACTIONS(970), 1, - anon_sym_DOT, - ACTIONS(1323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2748), 1, - anon_sym_PLUS, - ACTIONS(2762), 1, - anon_sym_as, - ACTIONS(2764), 1, - anon_sym_if, - ACTIONS(2768), 1, - anon_sym_and, - ACTIONS(2770), 1, - anon_sym_or, + [136056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1455), 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(1449), 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, - [135560] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1857), 4, + ACTIONS(1707), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 28, + ACTIONS(1705), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139801,16 +140564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135601] = 3, + [136097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 4, + ACTIONS(1715), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 28, + ACTIONS(1713), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139839,16 +140602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135642] = 3, + [136138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 28, + ACTIONS(1717), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139877,16 +140640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135683] = 3, + [136179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 4, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1851), 28, + ACTIONS(1717), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139915,16 +140678,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135724] = 3, + [136220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 4, + ACTIONS(1723), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 28, + ACTIONS(1721), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139953,44 +140716,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135765] = 16, - ACTIONS(2167), 1, + [136261] = 20, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, anon_sym_QMARK_DOT, ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2752), 1, anon_sym_STAR_STAR, - ACTIONS(2742), 1, + ACTIONS(2758), 1, + anon_sym_PIPE, + ACTIONS(2760), 1, anon_sym_AMP, - ACTIONS(2744), 1, + ACTIONS(2762), 1, anon_sym_CARET, - STATE(1263), 1, + STATE(1296), 1, sym_argument_list, - STATE(2254), 1, + STATE(2266), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2732), 2, + ACTIONS(2750), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2736), 2, + ACTIONS(2754), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2738), 2, + ACTIONS(2756), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2746), 2, + ACTIONS(2764), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1542), 13, + ACTIONS(1373), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [136336] = 10, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2183), 1, + anon_sym_QMARK_DOT, + ACTIONS(2199), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2752), 1, + anon_sym_STAR_STAR, + STATE(1296), 1, + sym_argument_list, + STATE(2266), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1544), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139998,22 +140802,30 @@ 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, - [135832] = 3, + [136391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 4, + ACTIONS(1731), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 28, + ACTIONS(1729), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140042,20 +140854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135873] = 5, - ACTIONS(2123), 1, - anon_sym_in, - ACTIONS(2125), 1, - anon_sym_not, + [136432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1731), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1729), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140063,8 +140871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -140082,16 +140892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135918] = 3, + [136473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 4, + ACTIONS(1735), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1723), 28, + ACTIONS(1733), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140120,33 +140930,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135959] = 6, - ACTIONS(2750), 1, + [136514] = 7, + ACTIONS(2780), 1, anon_sym_and, - ACTIONS(2754), 1, + ACTIONS(2784), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, + ACTIONS(1297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 24, + ACTIONS(1291), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1299), 19, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_or, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -140161,140 +140972,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136006] = 20, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - ACTIONS(2740), 1, - anon_sym_PIPE, - ACTIONS(2742), 1, - anon_sym_AMP, - ACTIONS(2744), 1, - anon_sym_CARET, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [136563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2732), 2, + ACTIONS(1739), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2738), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2746), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1251), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1737), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [136081] = 20, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - ACTIONS(2167), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2169), 1, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2740), 1, - anon_sym_PIPE, - ACTIONS(2742), 1, - anon_sym_AMP, - ACTIONS(2744), 1, - anon_sym_CARET, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2732), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2736), 2, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2738), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2746), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1251), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1528), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [136156] = 3, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [136604] = 6, + ACTIONS(2780), 1, + anon_sym_and, + ACTIONS(2784), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 4, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1331), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 28, + ACTIONS(1333), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -140309,74 +141051,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136197] = 15, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - ACTIONS(2744), 1, - anon_sym_CARET, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [136651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2732), 2, + ACTIONS(1743), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2738), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2746), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 14, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1741), 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, - [136262] = 5, - ACTIONS(2782), 1, - anon_sym_EQ, - STATE(1436), 1, - aux_sym_union_type_repeat1, + anon_sym_QMARK_LBRACK, + [136692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + ACTIONS(1747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 26, + ACTIONS(1745), 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, @@ -140399,7 +141127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136307] = 3, + [136733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -140437,16 +141165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136348] = 3, + [136774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 4, + ACTIONS(1755), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1727), 28, + ACTIONS(1753), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140475,33 +141203,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136389] = 6, - ACTIONS(2750), 1, - anon_sym_and, - ACTIONS(2754), 1, - anon_sym_PLUS, + [136815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + ACTIONS(1759), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 24, + ACTIONS(1757), 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, @@ -140516,70 +141241,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136436] = 14, - ACTIONS(2167), 1, - anon_sym_LPAREN, - ACTIONS(2169), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2734), 1, - anon_sym_STAR_STAR, - STATE(1263), 1, - sym_argument_list, - STATE(2254), 1, - aux_sym_comparison_operator_repeat1, + [136856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2732), 2, + ACTIONS(1763), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2736), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2738), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2746), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1542), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1761), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + 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, - [136499] = 5, - ACTIONS(2754), 1, + anon_sym_QMARK_LBRACK, + [136897] = 6, + ACTIONS(2780), 1, + anon_sym_and, + ACTIONS(2784), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1393), 4, + ACTIONS(1289), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 25, + ACTIONS(1291), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140589,7 +141305,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, @@ -140605,25 +141320,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136544] = 5, - ACTIONS(2754), 1, - anon_sym_PLUS, + [136944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1383), 4, + ACTIONS(1767), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 25, + ACTIONS(1765), 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, @@ -140631,6 +141343,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, @@ -140645,25 +141358,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136589] = 5, - ACTIONS(2754), 1, - anon_sym_PLUS, + [136985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1389), 4, + ACTIONS(1771), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 25, + ACTIONS(1769), 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, @@ -140671,6 +141381,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, @@ -140685,60 +141396,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136634] = 8, - ACTIONS(2787), 1, + [137026] = 5, + ACTIONS(2778), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1430), 12, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1428), 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, - ACTIONS(2793), 1, - anon_sym_is, - STATE(2044), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [137071] = 5, + ACTIONS(2778), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2790), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2784), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1655), 19, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 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(1289), 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, + [137116] = 5, + ACTIONS(2778), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1422), 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(1424), 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, + [137161] = 9, + ACTIONS(1012), 1, + anon_sym_DOT, + ACTIONS(1315), 1, + anon_sym_QMARK_DOT, + ACTIONS(2774), 1, anon_sym_and, + ACTIONS(2776), 1, anon_sym_or, + ACTIONS(2778), 1, anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1550), 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_QMARK_LBRACK, - [136684] = 4, - STATE(2048), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_TILDE, + sym_float, + ACTIONS(1548), 14, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [137214] = 11, + ACTIONS(1012), 1, + anon_sym_DOT, + ACTIONS(1315), 1, + anon_sym_QMARK_DOT, + ACTIONS(2768), 1, + anon_sym_as, + ACTIONS(2770), 1, + anon_sym_if, + ACTIONS(2774), 1, + anon_sym_and, + ACTIONS(2776), 1, + anon_sym_or, + ACTIONS(2778), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1567), 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(1569), 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, + [137271] = 5, + ACTIONS(2800), 1, + anon_sym_EQ, + STATE(1450), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1490), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140765,18 +141646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136726] = 4, - STATE(2044), 1, - aux_sym_comparison_operator_repeat1, + [137316] = 4, + ACTIONS(2800), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 26, + ACTIONS(1490), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140803,18 +141684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136768] = 4, - STATE(2044), 1, - aux_sym_comparison_operator_repeat1, + [137358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 26, + ACTIONS(1641), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140841,18 +141721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136810] = 4, - STATE(2044), 1, + [137398] = 4, + STATE(2061), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1643), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 26, + ACTIONS(1641), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140879,18 +141759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136852] = 4, - ACTIONS(2782), 1, - anon_sym_EQ, + [137440] = 4, + STATE(2065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1397), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 26, + ACTIONS(1611), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140917,18 +141797,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136894] = 4, - STATE(2044), 1, + [137482] = 4, + STATE(2065), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 26, + ACTIONS(1611), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140955,17 +141835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136936] = 3, + [137524] = 4, + STATE(2065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, - sym__newline, + ACTIONS(1611), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140992,27 +141873,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136976] = 5, - ACTIONS(2123), 1, - anon_sym_in, - ACTIONS(2796), 1, - anon_sym_not, + [137566] = 4, + STATE(2065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 4, + ACTIONS(1609), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 24, + ACTIONS(1611), 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, @@ -141030,23 +141911,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137019] = 5, - STATE(1051), 1, + [137608] = 5, + STATE(1037), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2798), 2, + ACTIONS(2802), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1587), 4, + ACTIONS(1323), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 23, + ACTIONS(1325), 24, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_in, @@ -141068,13 +141950,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137062] = 4, - ACTIONS(2802), 1, + [137652] = 8, + ACTIONS(2807), 1, + anon_sym_not, + ACTIONS(2813), 1, + anon_sym_is, + STATE(2065), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2804), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1625), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK_LBRACK, + [137702] = 5, + ACTIONS(2133), 1, + anon_sym_in, + ACTIONS(2816), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1641), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [137745] = 4, + ACTIONS(2820), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2804), 12, + ACTIONS(2822), 12, sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, @@ -141087,7 +142049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2800), 13, + ACTIONS(2818), 13, anon_sym_DOT, anon_sym_lambda, anon_sym_all, @@ -141101,41 +142063,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [137099] = 14, - ACTIONS(792), 1, + [137782] = 14, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, - anon_sym_RPAREN, - ACTIONS(2812), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2830), 1, + anon_sym_RBRACK, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2836), 1, sym_float, - STATE(1877), 1, + STATE(1540), 1, sym_string, - STATE(1900), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2676), 1, + STATE(2861), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141143,41 +142105,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137155] = 14, - ACTIONS(792), 1, + [137838] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2842), 1, + anon_sym_RPAREN, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2822), 1, - anon_sym_RPAREN, - STATE(1877), 1, + STATE(1963), 1, sym_string, - STATE(1900), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2657), 1, + STATE(2692), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141185,8 +142147,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137211] = 14, - ACTIONS(431), 1, + [137894] = 14, + ACTIONS(547), 1, sym_string_start, ACTIONS(2824), 1, sym_identifier, @@ -141194,32 +142156,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, - anon_sym_LBRACE, ACTIONS(2832), 1, - anon_sym_RBRACE, - ACTIONS(2838), 1, + anon_sym_LBRACE, + ACTIONS(2836), 1, sym_float, - STATE(1400), 1, + ACTIONS(2854), 1, + anon_sym_RBRACK, + STATE(1540), 1, sym_string, - STATE(1401), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2840), 1, + STATE(2757), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141227,41 +142189,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137267] = 14, - ACTIONS(467), 1, + [137950] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2842), 1, - anon_sym_COLON, - ACTIONS(2844), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2852), 1, sym_float, - STATE(1229), 1, + ACTIONS(2856), 1, + anon_sym_RPAREN, + STATE(1963), 1, sym_string, - STATE(1230), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2761), 1, + STATE(2681), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141269,41 +142231,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137323] = 14, - ACTIONS(539), 1, + [138006] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2856), 1, - sym_identifier, ACTIONS(2858), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2860), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2862), 1, - anon_sym_RBRACK, + anon_sym_LBRACK, ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2866), 1, + anon_sym_RBRACE, + ACTIONS(2872), 1, sym_float, - STATE(1487), 1, + STATE(1377), 1, sym_string, - STATE(1488), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2861), 1, + STATE(2779), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141311,41 +142273,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137379] = 14, - ACTIONS(431), 1, + [138062] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2876), 1, + anon_sym_COLON, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2870), 1, - anon_sym_RBRACE, - STATE(1400), 1, + STATE(1245), 1, sym_string, - STATE(1401), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2736), 1, + STATE(2760), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141353,41 +142315,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137435] = 14, - ACTIONS(539), 1, + [138118] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2856), 1, - sym_identifier, ACTIONS(2858), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, - sym_float, ACTIONS(2872), 1, - anon_sym_RBRACK, - STATE(1487), 1, + sym_float, + ACTIONS(2890), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1488), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2862), 1, + STATE(2772), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141395,41 +142357,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137491] = 14, - ACTIONS(431), 1, + [138174] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2874), 1, + ACTIONS(2892), 1, anon_sym_RBRACE, - STATE(1400), 1, + STATE(1377), 1, sym_string, - STATE(1401), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2823), 1, + STATE(2758), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141437,41 +142399,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137547] = 14, - ACTIONS(792), 1, + [138230] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2876), 1, - anon_sym_RPAREN, - STATE(1877), 1, + ACTIONS(2894), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1900), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2666), 1, + STATE(2894), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141479,41 +142441,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137603] = 14, - ACTIONS(431), 1, + [138286] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2878), 1, - anon_sym_RBRACE, - STATE(1400), 1, + ACTIONS(2896), 1, + anon_sym_COLON, + STATE(1245), 1, sym_string, - STATE(1401), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2844), 1, + STATE(2769), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141521,41 +142483,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137659] = 14, - ACTIONS(431), 1, + [138342] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2880), 1, + ACTIONS(2898), 1, anon_sym_RBRACE, - STATE(1400), 1, + STATE(1377), 1, sym_string, - STATE(1401), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2842), 1, + STATE(2907), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141563,41 +142525,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137715] = 14, - ACTIONS(792), 1, + [138398] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2882), 1, + ACTIONS(2900), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1963), 1, sym_string, - STATE(1900), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2668), 1, + STATE(2686), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141605,41 +142567,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137771] = 14, - ACTIONS(467), 1, + [138454] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2884), 1, + ACTIONS(2902), 1, anon_sym_COLON, - STATE(1229), 1, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2878), 1, + STATE(2807), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141647,41 +142609,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137827] = 14, - ACTIONS(539), 1, + [138510] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2856), 1, - sym_identifier, ACTIONS(2858), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2886), 1, - anon_sym_RBRACK, - STATE(1487), 1, + ACTIONS(2904), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1488), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2897), 1, + STATE(2789), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141689,41 +142651,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137883] = 14, - ACTIONS(792), 1, + [138566] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2888), 1, + ACTIONS(2906), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1963), 1, sym_string, - STATE(1900), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2674), 1, + STATE(2695), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141731,41 +142693,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137939] = 14, - ACTIONS(792), 1, + [138622] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2890), 1, + ACTIONS(2908), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1963), 1, sym_string, - STATE(1900), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2673), 1, + STATE(2699), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141773,41 +142735,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [137995] = 14, - ACTIONS(539), 1, + [138678] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2858), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2892), 1, - anon_sym_RBRACK, - STATE(1487), 1, + ACTIONS(2910), 1, + anon_sym_COLON, + STATE(1245), 1, sym_string, - STATE(1488), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2899), 1, + STATE(2833), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141815,8 +142777,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138051] = 14, - ACTIONS(431), 1, + [138734] = 14, + ACTIONS(547), 1, sym_string_start, ACTIONS(2824), 1, sym_identifier, @@ -141824,32 +142786,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(2894), 1, - anon_sym_RBRACE, - STATE(1400), 1, + ACTIONS(2912), 1, + anon_sym_RBRACK, + STATE(1540), 1, sym_string, - STATE(1401), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2894), 1, + STATE(2823), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141857,41 +142819,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138107] = 14, - ACTIONS(792), 1, + [138790] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2896), 1, + ACTIONS(2914), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1963), 1, sym_string, - STATE(1900), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2678), 1, + STATE(2697), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141899,41 +142861,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138163] = 14, - ACTIONS(55), 1, + [138846] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2898), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2900), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2852), 1, sym_float, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + ACTIONS(2916), 1, + anon_sym_RPAREN, + STATE(1963), 1, sym_string, - STATE(2703), 1, + STATE(1964), 1, + sym_dotted_name, + STATE(2702), 1, sym_type, - STATE(3121), 1, - sym_schema_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141941,41 +142903,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138219] = 14, - ACTIONS(792), 1, + [138902] = 14, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(2912), 1, - anon_sym_RPAREN, - STATE(1877), 1, + ACTIONS(2918), 1, + anon_sym_RBRACK, + STATE(1540), 1, sym_string, - STATE(1900), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2661), 1, + STATE(2884), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141983,41 +142945,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138275] = 14, - ACTIONS(431), 1, + [138958] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2914), 1, - anon_sym_RBRACE, - STATE(1400), 1, + ACTIONS(2920), 1, + anon_sym_RPAREN, + STATE(1963), 1, sym_string, - STATE(1401), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2750), 1, + STATE(2698), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142025,41 +142987,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138331] = 14, - ACTIONS(539), 1, + [139014] = 14, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2858), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(2916), 1, + ACTIONS(2922), 1, anon_sym_RBRACK, - STATE(1487), 1, + STATE(1540), 1, sym_string, - STATE(1488), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2826), 1, + STATE(2780), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142067,41 +143029,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138387] = 14, - ACTIONS(467), 1, + [139070] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2918), 1, - anon_sym_COLON, - STATE(1229), 1, + ACTIONS(2924), 1, + anon_sym_RPAREN, + STATE(1963), 1, sym_string, - STATE(1230), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2880), 1, + STATE(2701), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142109,41 +143071,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138443] = 14, - ACTIONS(431), 1, + [139126] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2920), 1, + ACTIONS(2926), 1, anon_sym_RBRACE, - STATE(1400), 1, + STATE(1377), 1, sym_string, - STATE(1401), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2851), 1, + STATE(2914), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142151,41 +143113,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138499] = 14, - ACTIONS(792), 1, + [139182] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2922), 1, - anon_sym_RPAREN, - STATE(1877), 1, + ACTIONS(2928), 1, + anon_sym_COLON, + STATE(1245), 1, sym_string, - STATE(1900), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2672), 1, + STATE(2859), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142193,41 +143155,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138555] = 14, - ACTIONS(467), 1, + [139238] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2924), 1, - anon_sym_COLON, - STATE(1229), 1, + ACTIONS(2930), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1230), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2748), 1, + STATE(2842), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142235,41 +143197,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138611] = 14, - ACTIONS(431), 1, + [139294] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2926), 1, - anon_sym_RBRACE, - STATE(1400), 1, + ACTIONS(2932), 1, + anon_sym_COLON, + STATE(1245), 1, sym_string, - STATE(1401), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2790), 1, + STATE(2890), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142277,41 +143239,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138667] = 14, - ACTIONS(467), 1, + [139350] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2928), 1, - anon_sym_COLON, - STATE(1229), 1, + ACTIONS(2934), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1230), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2871), 1, + STATE(2892), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142319,41 +143281,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138723] = 14, - ACTIONS(539), 1, + [139406] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2856), 1, - sym_identifier, ACTIONS(2858), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2930), 1, - anon_sym_RBRACK, - STATE(1487), 1, + ACTIONS(2936), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1488), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2740), 1, + STATE(2887), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142361,41 +143323,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138779] = 14, - ACTIONS(431), 1, + [139462] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2932), 1, + ACTIONS(2938), 1, anon_sym_RBRACE, - STATE(1400), 1, + STATE(1377), 1, sym_string, - STATE(1401), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2738), 1, + STATE(2849), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142403,41 +143365,72 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138835] = 14, - ACTIONS(431), 1, + [139518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(657), 12, sym_string_start, - ACTIONS(2824), 1, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2940), 13, + anon_sym_DOT, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + sym_integer, sym_identifier, - ACTIONS(2826), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [139552] = 14, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(2942), 1, + sym_identifier, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(2934), 1, - anon_sym_RBRACE, - STATE(1400), 1, - sym_string, - STATE(1401), 1, + STATE(1720), 1, sym_dotted_name, - STATE(2784), 1, + STATE(1724), 1, + sym_string, + STATE(2724), 1, sym_type, + STATE(3005), 1, + sym_schema_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142445,41 +143438,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138891] = 14, - ACTIONS(792), 1, + [139608] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2936), 1, - anon_sym_RPAREN, - STATE(1877), 1, + ACTIONS(2956), 1, + anon_sym_COLON, + STATE(1245), 1, sym_string, - STATE(1900), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2679), 1, + STATE(2882), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142487,41 +143480,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [138947] = 14, - ACTIONS(467), 1, + [139664] = 14, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(2938), 1, - anon_sym_COLON, - STATE(1229), 1, + ACTIONS(2958), 1, + anon_sym_RBRACK, + STATE(1540), 1, sym_string, - STATE(1230), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2808), 1, + STATE(2891), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142529,41 +143522,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139003] = 14, - ACTIONS(539), 1, + [139720] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2858), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2940), 1, - anon_sym_RBRACK, - STATE(1487), 1, + ACTIONS(2960), 1, + anon_sym_RPAREN, + STATE(1963), 1, sym_string, - STATE(1488), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2799), 1, + STATE(2690), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142571,41 +143564,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139059] = 14, - ACTIONS(431), 1, + [139776] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2942), 1, + ACTIONS(2962), 1, anon_sym_RBRACE, - STATE(1400), 1, + STATE(1377), 1, sym_string, - STATE(1401), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2767), 1, + STATE(2771), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142613,41 +143606,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139115] = 14, - ACTIONS(792), 1, + [139832] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2944), 1, + ACTIONS(2964), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1963), 1, sym_string, - STATE(1900), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2653), 1, + STATE(2687), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142655,41 +143648,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139171] = 14, - ACTIONS(431), 1, + [139888] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2946), 1, - anon_sym_RBRACE, - STATE(1400), 1, + ACTIONS(2966), 1, + anon_sym_COLON, + STATE(1245), 1, sym_string, - STATE(1401), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2768), 1, + STATE(2870), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142697,41 +143690,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139227] = 14, - ACTIONS(792), 1, + [139944] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2948), 1, - anon_sym_RPAREN, - STATE(1877), 1, + ACTIONS(2968), 1, + anon_sym_COLON, + STATE(1245), 1, sym_string, - STATE(1900), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2658), 1, + STATE(2800), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142739,41 +143732,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139283] = 14, - ACTIONS(467), 1, + [140000] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2950), 1, - anon_sym_COLON, - STATE(1229), 1, + ACTIONS(2970), 1, + anon_sym_RPAREN, + STATE(1963), 1, sym_string, - STATE(1230), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2792), 1, + STATE(2688), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142781,41 +143774,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139339] = 14, - ACTIONS(539), 1, + [140056] = 14, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2858), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(2952), 1, + ACTIONS(2972), 1, anon_sym_RBRACK, - STATE(1487), 1, + STATE(1540), 1, sym_string, - STATE(1488), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2830), 1, + STATE(2810), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142823,41 +143816,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139395] = 14, - ACTIONS(431), 1, + [140112] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2954), 1, + ACTIONS(2974), 1, anon_sym_RBRACE, - STATE(1400), 1, + STATE(1377), 1, sym_string, - STATE(1401), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2876), 1, + STATE(2752), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142865,41 +143858,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139451] = 14, - ACTIONS(431), 1, + [140168] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2956), 1, - anon_sym_RBRACE, - STATE(1400), 1, + ACTIONS(2976), 1, + anon_sym_RPAREN, + STATE(1963), 1, sym_string, - STATE(1401), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2769), 1, + STATE(2700), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142907,72 +143900,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139507] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(603), 12, - sym_string_start, - 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(2958), 13, - anon_sym_DOT, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [139541] = 14, - ACTIONS(431), 1, + [140224] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2960), 1, + ACTIONS(2978), 1, anon_sym_RBRACE, - STATE(1400), 1, + STATE(1377), 1, sym_string, - STATE(1401), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2781), 1, + STATE(2852), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142980,41 +143942,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139597] = 14, - ACTIONS(431), 1, + [140280] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2962), 1, + ACTIONS(2980), 1, anon_sym_RBRACE, - STATE(1400), 1, + STATE(1377), 1, sym_string, - STATE(1401), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2860), 1, + STATE(2866), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143022,41 +143984,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139653] = 14, - ACTIONS(467), 1, + [140336] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2964), 1, - anon_sym_COLON, - STATE(1229), 1, + ACTIONS(2982), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1230), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2835), 1, + STATE(2843), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143064,41 +144026,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139709] = 14, - ACTIONS(431), 1, + [140392] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2966), 1, - anon_sym_RBRACE, - STATE(1400), 1, + ACTIONS(2984), 1, + anon_sym_RPAREN, + STATE(1963), 1, sym_string, - STATE(1401), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2755), 1, + STATE(2693), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143106,41 +144068,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139765] = 14, - ACTIONS(539), 1, + [140448] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2856), 1, - sym_identifier, ACTIONS(2858), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2968), 1, - anon_sym_RBRACK, - STATE(1487), 1, + ACTIONS(2986), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1488), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2807), 1, + STATE(2846), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143148,41 +144110,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139821] = 14, - ACTIONS(467), 1, + [140504] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2970), 1, - anon_sym_COLON, - STATE(1229), 1, + ACTIONS(2988), 1, + anon_sym_RBRACE, + STATE(1377), 1, sym_string, - STATE(1230), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2853), 1, + STATE(2762), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143190,41 +144152,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139877] = 14, - ACTIONS(792), 1, + [140560] = 14, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(2972), 1, - anon_sym_RPAREN, - STATE(1877), 1, + ACTIONS(2990), 1, + anon_sym_RBRACK, + STATE(1540), 1, sym_string, - STATE(1900), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2660), 1, + STATE(2811), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143232,41 +144194,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139933] = 14, - ACTIONS(792), 1, + [140616] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2974), 1, + ACTIONS(2992), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1963), 1, sym_string, - STATE(1900), 1, + STATE(1964), 1, sym_dotted_name, - STATE(2677), 1, + STATE(2689), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143274,41 +144236,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139989] = 14, - ACTIONS(792), 1, + [140672] = 14, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(2976), 1, - anon_sym_RPAREN, - STATE(1877), 1, + ACTIONS(2994), 1, + anon_sym_RBRACK, + STATE(1540), 1, sym_string, - STATE(1900), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2656), 1, + STATE(2829), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143316,80 +144278,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140045] = 14, - ACTIONS(1014), 1, + [140728] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2978), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2980), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(2982), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2984), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2990), 1, + ACTIONS(2852), 1, sym_float, - STATE(423), 1, - sym_type, - STATE(863), 1, - sym_dotted_name, - STATE(864), 1, + STATE(1963), 1, sym_string, - STATE(875), 1, - sym_union_type, + STATE(1964), 1, + sym_dotted_name, + STATE(2715), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2986), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(862), 6, + STATE(1966), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [140100] = 13, - ACTIONS(467), 1, + [140781] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2836), 1, sym_float, - STATE(1229), 1, + STATE(1540), 1, sym_string, - STATE(1230), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2785), 1, + STATE(2832), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143397,39 +144358,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140153] = 13, - ACTIONS(467), 1, + [140834] = 13, + ACTIONS(958), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(2996), 1, + sym_identifier, + ACTIONS(2998), 1, + anon_sym_LPAREN, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(3002), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(3008), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(1444), 1, + STATE(1492), 1, sym_type, + STATE(1837), 1, + sym_dotted_name, + STATE(1838), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3006), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3004), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1836), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143437,39 +144398,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140206] = 13, - ACTIONS(539), 1, + [140887] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(3010), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(3012), 1, anon_sym_LPAREN, - STATE(1467), 1, + STATE(1321), 1, sym_type, - STATE(1487), 1, + STATE(1377), 1, sym_string, - STATE(1488), 1, + STATE(1379), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143477,39 +144438,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140259] = 13, - ACTIONS(932), 1, + [140940] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(3000), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(3002), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - ACTIONS(3004), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(3006), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(3012), 1, + ACTIONS(2852), 1, sym_float, - STATE(868), 1, + STATE(1963), 1, sym_string, - STATE(869), 1, + STATE(1964), 1, sym_dotted_name, - STATE(897), 1, + STATE(2743), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(3008), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(872), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143517,39 +144478,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140312] = 13, - ACTIONS(932), 1, + [140993] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(3000), 1, - sym_identifier, - ACTIONS(3002), 1, - anon_sym_LPAREN, - ACTIONS(3004), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(3006), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(3012), 1, + ACTIONS(2872), 1, sym_float, - STATE(526), 1, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3012), 1, + anon_sym_LPAREN, + STATE(1318), 1, sym_type, - STATE(868), 1, + STATE(1377), 1, sym_string, - STATE(869), 1, + STATE(1379), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(3008), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(872), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143557,39 +144518,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140365] = 13, - ACTIONS(55), 1, + [141046] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2900), 1, - anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2888), 1, sym_float, ACTIONS(3014), 1, sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + ACTIONS(3016), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(2702), 1, + STATE(1248), 1, + sym_dotted_name, + STATE(1472), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143597,39 +144558,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140418] = 13, - ACTIONS(539), 1, + [141099] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2856), 1, - sym_identifier, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2872), 1, sym_float, - STATE(1487), 1, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3012), 1, + anon_sym_LPAREN, + STATE(1314), 1, + sym_type, + STATE(1377), 1, sym_string, - STATE(1488), 1, + STATE(1379), 1, sym_dotted_name, - STATE(2800), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143637,74 +144598,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140471] = 8, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(1247), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1631), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [140514] = 13, - ACTIONS(990), 1, + [141152] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3016), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(3018), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2888), 1, sym_float, - STATE(1044), 1, - sym_type, - STATE(1057), 1, - sym_dotted_name, - STATE(1065), 1, + STATE(1245), 1, sym_string, + STATE(1248), 1, + sym_dotted_name, + STATE(2828), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1059), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143712,39 +144638,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140567] = 13, - ACTIONS(990), 1, + [141205] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3016), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(3018), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2888), 1, sym_float, - STATE(1035), 1, - sym_type, - STATE(1057), 1, - sym_dotted_name, - STATE(1065), 1, + STATE(1245), 1, sym_string, + STATE(1248), 1, + sym_dotted_name, + STATE(2876), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1059), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143752,39 +144678,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140620] = 13, - ACTIONS(55), 1, + [141258] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2900), 1, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(3014), 1, - sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1245), 1, sym_string, - STATE(2711), 1, + STATE(1248), 1, + sym_dotted_name, + STATE(2801), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143792,39 +144718,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140673] = 13, - ACTIONS(55), 1, + [141311] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2900), 1, - anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3010), 1, sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, - sym_string, - STATE(2726), 1, + ACTIONS(3012), 1, + anon_sym_LPAREN, + STATE(1306), 1, sym_type, + STATE(1377), 1, + sym_string, + STATE(1379), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143832,39 +144758,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140726] = 13, - ACTIONS(431), 1, + [141364] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2828), 1, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(2878), 1, + anon_sym_LPAREN, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(3030), 1, - sym_identifier, - ACTIONS(3032), 1, - anon_sym_LPAREN, - STATE(1289), 1, - sym_type, - STATE(1400), 1, + STATE(1245), 1, sym_string, - STATE(1401), 1, + STATE(1248), 1, sym_dotted_name, + STATE(2799), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143872,120 +144798,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140779] = 14, - ACTIONS(467), 1, + [141417] = 13, + ACTIONS(924), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(3018), 1, + sym_identifier, + ACTIONS(3020), 1, + anon_sym_LPAREN, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(3030), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(1522), 1, + STATE(877), 1, sym_type, - STATE(1641), 1, - sym_union_type, + STATE(900), 1, + sym_dotted_name, + STATE(901), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3028), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3026), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 6, + STATE(898), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [140834] = 13, - ACTIONS(990), 1, + [141470] = 14, + ACTIONS(924), 1, sym_string_start, - ACTIONS(3016), 1, - sym_identifier, ACTIONS(3018), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(3020), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(3022), 1, + anon_sym_LBRACK, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3030), 1, sym_float, - STATE(1057), 1, + STATE(835), 1, + sym_type, + STATE(876), 1, + sym_union_type, + STATE(900), 1, sym_dotted_name, - STATE(1065), 1, + STATE(901), 1, sym_string, - STATE(1073), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(3028), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(3026), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1059), 7, + STATE(898), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [140887] = 13, + [141525] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2900), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3032), 1, sym_identifier, - STATE(1748), 1, + STATE(1720), 1, sym_dotted_name, - STATE(1749), 1, + STATE(1724), 1, sym_string, - STATE(2705), 1, + STATE(2739), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143993,80 +144919,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140940] = 14, - ACTIONS(990), 1, + [141578] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(3016), 1, + ACTIONS(2858), 1, sym_identifier, - ACTIONS(3018), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2872), 1, sym_float, - STATE(1032), 1, - sym_type, - STATE(1057), 1, - sym_dotted_name, - STATE(1065), 1, + STATE(1377), 1, sym_string, - STATE(1072), 1, - sym_union_type, + STATE(1379), 1, + sym_dotted_name, + STATE(2902), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1059), 6, + STATE(1383), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [140995] = 13, - ACTIONS(467), 1, + [141631] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(2944), 1, + anon_sym_LPAREN, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(3032), 1, sym_identifier, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1229), 1, - sym_string, - STATE(1230), 1, + STATE(1720), 1, sym_dotted_name, - STATE(1645), 1, + STATE(1724), 1, + sym_string, + STATE(2731), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144074,39 +144999,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141048] = 13, - ACTIONS(539), 1, + [141684] = 13, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(3034), 1, sym_identifier, - ACTIONS(2858), 1, + ACTIONS(3036), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(3046), 1, sym_float, - STATE(1487), 1, - sym_string, - STATE(1488), 1, - sym_dotted_name, - STATE(2849), 1, + STATE(436), 1, sym_type, + STATE(897), 1, + sym_dotted_name, + STATE(899), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(3044), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(3042), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(896), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144114,39 +145039,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141101] = 13, - ACTIONS(792), 1, + [141737] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2812), 1, + ACTIONS(2944), 1, + anon_sym_LPAREN, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(3036), 1, + ACTIONS(3032), 1, sym_identifier, - ACTIONS(3038), 1, - anon_sym_LPAREN, - STATE(1877), 1, + STATE(1720), 1, + sym_dotted_name, + STATE(1724), 1, sym_string, - STATE(1893), 1, + STATE(2741), 1, sym_type, - STATE(1900), 1, - sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144154,155 +145079,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141154] = 14, - ACTIONS(792), 1, + [141790] = 13, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(2812), 1, + ACTIONS(3034), 1, + sym_identifier, + ACTIONS(3036), 1, + anon_sym_LPAREN, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(3046), 1, sym_float, - ACTIONS(3036), 1, - sym_identifier, - ACTIONS(3038), 1, - anon_sym_LPAREN, - STATE(1773), 1, + STATE(447), 1, sym_type, - STATE(1877), 1, - sym_string, - STATE(1896), 1, - sym_union_type, - STATE(1900), 1, + STATE(897), 1, sym_dotted_name, + STATE(899), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(3044), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(3042), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 6, + STATE(896), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [141209] = 8, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(1247), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1631), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [141252] = 13, - ACTIONS(55), 1, + [141843] = 14, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2902), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(3040), 1, + ACTIONS(3048), 1, sym_identifier, - ACTIONS(3042), 1, + ACTIONS(3050), 1, anon_sym_LPAREN, - STATE(1604), 1, + STATE(1429), 1, sym_type, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1540), 1, sym_string, + STATE(1541), 1, + sym_dotted_name, + STATE(1620), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1542), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [141305] = 13, - ACTIONS(990), 1, + [141898] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3018), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2954), 1, sym_float, - STATE(1028), 1, - sym_type, - STATE(1057), 1, + ACTIONS(3032), 1, + sym_identifier, + STATE(1720), 1, sym_dotted_name, - STATE(1065), 1, + STATE(1724), 1, sym_string, + STATE(2725), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1059), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144310,79 +145200,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141358] = 13, - ACTIONS(467), 1, + [141951] = 14, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(3034), 1, + sym_identifier, + ACTIONS(3036), 1, + anon_sym_LPAREN, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(3046), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(1620), 1, + STATE(549), 1, sym_type, + STATE(892), 1, + sym_union_type, + STATE(897), 1, + sym_dotted_name, + STATE(899), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3044), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3042), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(896), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [141411] = 13, - ACTIONS(792), 1, + [142006] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2812), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(3036), 1, + ACTIONS(3048), 1, sym_identifier, - ACTIONS(3038), 1, + ACTIONS(3050), 1, anon_sym_LPAREN, - STATE(1740), 1, - sym_type, - STATE(1877), 1, + STATE(1540), 1, sym_string, - STATE(1900), 1, + STATE(1541), 1, sym_dotted_name, + STATE(1612), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144390,39 +145281,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141464] = 13, - ACTIONS(467), 1, + [142059] = 13, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(2846), 1, - anon_sym_LBRACK, - ACTIONS(2848), 1, - anon_sym_LBRACE, - ACTIONS(2854), 1, - sym_float, - ACTIONS(2992), 1, + ACTIONS(3034), 1, sym_identifier, - ACTIONS(2994), 1, + ACTIONS(3036), 1, anon_sym_LPAREN, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(1447), 1, + ACTIONS(3038), 1, + anon_sym_LBRACK, + ACTIONS(3040), 1, + anon_sym_LBRACE, + ACTIONS(3046), 1, + sym_float, + STATE(889), 1, sym_type, + STATE(897), 1, + sym_dotted_name, + STATE(899), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3044), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3042), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(896), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144430,121 +145321,224 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141517] = 14, - ACTIONS(467), 1, + [142112] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(2944), 1, + anon_sym_LPAREN, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(3032), 1, sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1229), 1, - sym_string, - STATE(1230), 1, + STATE(1720), 1, sym_dotted_name, - STATE(2036), 1, + STATE(1724), 1, + sym_string, + STATE(2722), 1, sym_type, - STATE(2049), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 6, + STATE(1719), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [141572] = 14, - ACTIONS(467), 1, + [142165] = 8, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + STATE(1291), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 12, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [142208] = 8, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + STATE(1291), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 12, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [142251] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(2858), 1, + sym_identifier, + ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1229), 1, + STATE(1377), 1, sym_string, - STATE(1230), 1, + STATE(1379), 1, sym_dotted_name, - STATE(1445), 1, + STATE(2904), 1, sym_type, - STATE(1507), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 6, + STATE(1383), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [141627] = 13, - ACTIONS(467), 1, + [142304] = 8, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + STATE(1291), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 12, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [142347] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(3052), 1, sym_identifier, - ACTIONS(2994), 1, + ACTIONS(3054), 1, anon_sym_LPAREN, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(1437), 1, + STATE(1506), 1, sym_type, + STATE(1720), 1, + sym_dotted_name, + STATE(1724), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144552,39 +145546,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141680] = 13, - ACTIONS(1014), 1, + [142400] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2980), 1, - anon_sym_LPAREN, - ACTIONS(2982), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2984), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2990), 1, + ACTIONS(2954), 1, sym_float, - STATE(618), 1, + ACTIONS(3052), 1, + sym_identifier, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1503), 1, sym_type, - STATE(863), 1, + STATE(1720), 1, sym_dotted_name, - STATE(864), 1, + STATE(1724), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2986), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(862), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144592,39 +145586,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141733] = 13, - ACTIONS(55), 1, + [142453] = 13, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(2902), 1, + ACTIONS(3034), 1, + sym_identifier, + ACTIONS(3036), 1, + anon_sym_LPAREN, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(3046), 1, sym_float, - ACTIONS(3040), 1, - sym_identifier, - ACTIONS(3042), 1, - anon_sym_LPAREN, - STATE(1612), 1, + STATE(487), 1, sym_type, - STATE(1748), 1, + STATE(897), 1, sym_dotted_name, - STATE(1749), 1, + STATE(899), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(3044), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(3042), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(896), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144632,39 +145626,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141786] = 13, - ACTIONS(1014), 1, + [142506] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2980), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2982), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2984), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2990), 1, + ACTIONS(2954), 1, sym_float, - STATE(575), 1, - sym_type, - STATE(863), 1, + ACTIONS(3032), 1, + sym_identifier, + STATE(1720), 1, sym_dotted_name, - STATE(864), 1, + STATE(1724), 1, sym_string, + STATE(2738), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2986), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(862), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144672,39 +145666,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141839] = 13, - ACTIONS(966), 1, + [142559] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3044), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(3046), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(3056), 1, + ACTIONS(2888), 1, sym_float, - STATE(1552), 1, - sym_type, - STATE(1639), 1, - sym_dotted_name, - STATE(1640), 1, + STATE(1245), 1, sym_string, + STATE(1248), 1, + sym_dotted_name, + STATE(2841), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(3052), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1637), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144712,39 +145706,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141892] = 13, + [142612] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2900), 1, - anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3052), 1, sym_identifier, - STATE(1748), 1, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1530), 1, + sym_type, + STATE(1720), 1, sym_dotted_name, - STATE(1749), 1, + STATE(1724), 1, sym_string, - STATE(2700), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144752,39 +145746,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141945] = 13, - ACTIONS(467), 1, + [142665] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2840), 1, - sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2954), 1, sym_float, - STATE(1229), 1, - sym_string, - STATE(1230), 1, + ACTIONS(3032), 1, + sym_identifier, + STATE(1720), 1, sym_dotted_name, - STATE(2783), 1, + STATE(1724), 1, + sym_string, + STATE(2737), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144792,39 +145786,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141998] = 13, - ACTIONS(467), 1, + [142718] = 13, + ACTIONS(1106), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(3034), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(3036), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(3040), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(3046), 1, sym_float, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(2655), 1, + STATE(522), 1, sym_type, + STATE(897), 1, + sym_dotted_name, + STATE(899), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3044), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3042), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(896), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144832,39 +145826,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142051] = 13, - ACTIONS(792), 1, + [142771] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2808), 1, - anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2888), 1, sym_float, - STATE(1877), 1, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(1900), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2695), 1, + STATE(2670), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144872,39 +145866,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142104] = 13, - ACTIONS(431), 1, + [142824] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2828), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(3030), 1, + ACTIONS(3052), 1, sym_identifier, - ACTIONS(3032), 1, + ACTIONS(3054), 1, anon_sym_LPAREN, - STATE(1243), 1, + STATE(1567), 1, sym_type, - STATE(1400), 1, - sym_string, - STATE(1401), 1, + STATE(1720), 1, sym_dotted_name, + STATE(1724), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144912,39 +145906,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142157] = 13, - ACTIONS(55), 1, + [142877] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2902), 1, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(2878), 1, + anon_sym_LPAREN, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(3040), 1, - sym_identifier, - ACTIONS(3042), 1, - anon_sym_LPAREN, - STATE(1625), 1, - sym_type, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1245), 1, sym_string, + STATE(1248), 1, + sym_dotted_name, + STATE(2631), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144952,39 +145946,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142210] = 13, - ACTIONS(792), 1, + [142930] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2812), 1, + ACTIONS(2858), 1, + sym_identifier, + ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(3036), 1, - sym_identifier, - ACTIONS(3038), 1, - anon_sym_LPAREN, - STATE(1739), 1, - sym_type, - STATE(1877), 1, + STATE(1377), 1, sym_string, - STATE(1900), 1, + STATE(1379), 1, sym_dotted_name, + STATE(2905), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144992,39 +145986,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142263] = 13, - ACTIONS(792), 1, + [142983] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2812), 1, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(2878), 1, + anon_sym_LPAREN, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(3036), 1, - sym_identifier, - ACTIONS(3038), 1, - anon_sym_LPAREN, - STATE(1730), 1, - sym_type, - STATE(1877), 1, + STATE(1245), 1, sym_string, - STATE(1900), 1, + STATE(1248), 1, sym_dotted_name, + STATE(2637), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145032,39 +146026,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142316] = 13, - ACTIONS(55), 1, + [143036] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2900), 1, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(3014), 1, - sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1245), 1, sym_string, - STATE(2857), 1, + STATE(1248), 1, + sym_dotted_name, + STATE(2804), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145072,74 +146066,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142369] = 8, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(1247), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1631), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [142412] = 13, - ACTIONS(792), 1, + [143089] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2812), 1, + ACTIONS(2838), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_LPAREN, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(3036), 1, - sym_identifier, - ACTIONS(3038), 1, - anon_sym_LPAREN, - STATE(1727), 1, - sym_type, - STATE(1877), 1, + STATE(1963), 1, sym_string, - STATE(1900), 1, + STATE(1964), 1, sym_dotted_name, + STATE(2703), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145147,39 +146106,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142465] = 13, - ACTIONS(467), 1, + [143142] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2840), 1, - sym_identifier, - ACTIONS(2844), 1, - anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - STATE(1229), 1, + ACTIONS(3014), 1, + sym_identifier, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2682), 1, + STATE(1517), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145187,39 +146146,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142518] = 13, - ACTIONS(1014), 1, + [143195] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2980), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2982), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2984), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2990), 1, + ACTIONS(2954), 1, sym_float, - STATE(657), 1, - sym_type, - STATE(863), 1, + ACTIONS(3032), 1, + sym_identifier, + STATE(1720), 1, sym_dotted_name, - STATE(864), 1, + STATE(1724), 1, sym_string, + STATE(2708), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2986), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(862), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145227,39 +146186,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142571] = 13, - ACTIONS(431), 1, + [143248] = 13, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(3058), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(3060), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(3064), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(3070), 1, sym_float, - STATE(1400), 1, + STATE(1040), 1, + sym_type, + STATE(1075), 1, sym_string, - STATE(1401), 1, + STATE(1076), 1, sym_dotted_name, - STATE(2888), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(3068), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(3066), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1077), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145267,80 +146226,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142624] = 14, - ACTIONS(539), 1, + [143301] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(2878), 1, + anon_sym_LPAREN, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(2998), 1, - anon_sym_LPAREN, - STATE(1454), 1, - sym_type, - STATE(1487), 1, + STATE(1245), 1, sym_string, - STATE(1488), 1, + STATE(1248), 1, sym_dotted_name, - STATE(1594), 1, - sym_union_type, + STATE(2815), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 6, + STATE(1249), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [142679] = 13, - ACTIONS(55), 1, + [143354] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2900), 1, + ACTIONS(2858), 1, + sym_identifier, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(3014), 1, - sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1377), 1, sym_string, - STATE(2696), 1, + STATE(1379), 1, + sym_dotted_name, + STATE(2906), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145348,39 +146306,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142732] = 13, - ACTIONS(467), 1, + [143407] = 13, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(3058), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(3060), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(3064), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(3070), 1, sym_float, - STATE(1229), 1, + STATE(1048), 1, + sym_type, + STATE(1075), 1, sym_string, - STATE(1230), 1, + STATE(1076), 1, sym_dotted_name, - STATE(2775), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3068), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3066), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1077), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145388,39 +146346,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142785] = 13, - ACTIONS(55), 1, + [143460] = 13, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(2900), 1, + ACTIONS(3058), 1, + sym_identifier, + ACTIONS(3060), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(3064), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(3070), 1, sym_float, - ACTIONS(3014), 1, - sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, - sym_string, - STATE(2724), 1, + STATE(1062), 1, sym_type, + STATE(1075), 1, + sym_string, + STATE(1076), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(3068), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(3066), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1077), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145428,80 +146386,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142838] = 14, - ACTIONS(55), 1, + [143513] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2902), 1, + ACTIONS(2838), 1, + sym_identifier, + ACTIONS(2840), 1, + anon_sym_LPAREN, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(3040), 1, - sym_identifier, - ACTIONS(3042), 1, - anon_sym_LPAREN, - STATE(1623), 1, - sym_type, - STATE(1655), 1, - sym_union_type, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1963), 1, sym_string, + STATE(1964), 1, + sym_dotted_name, + STATE(2716), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 6, + STATE(1966), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [142893] = 13, - ACTIONS(431), 1, + [143566] = 13, + ACTIONS(958), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2996), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2998), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(3002), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(3008), 1, sym_float, - STATE(1400), 1, - sym_string, - STATE(1401), 1, - sym_dotted_name, - STATE(2887), 1, + STATE(1769), 1, sym_type, + STATE(1837), 1, + sym_dotted_name, + STATE(1838), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(3006), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(3004), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1836), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145509,79 +146466,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142946] = 13, - ACTIONS(932), 1, + [143619] = 14, + ACTIONS(958), 1, sym_string_start, - ACTIONS(3000), 1, + ACTIONS(2996), 1, sym_identifier, - ACTIONS(3002), 1, + ACTIONS(2998), 1, anon_sym_LPAREN, - ACTIONS(3004), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(3006), 1, + ACTIONS(3002), 1, anon_sym_LBRACE, - ACTIONS(3012), 1, + ACTIONS(3008), 1, sym_float, - STATE(553), 1, + STATE(1592), 1, sym_type, - STATE(868), 1, - sym_string, - STATE(869), 1, + STATE(1770), 1, + sym_union_type, + STATE(1837), 1, sym_dotted_name, + STATE(1838), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 3, + ACTIONS(3006), 3, sym_integer, sym_true, sym_false, - ACTIONS(3008), 5, + ACTIONS(3004), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(872), 7, + STATE(1836), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [142999] = 13, - ACTIONS(467), 1, + [143674] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(2878), 1, + anon_sym_LPAREN, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1229), 1, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(1451), 1, + STATE(2817), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145589,120 +146547,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143052] = 14, - ACTIONS(932), 1, + [143727] = 13, + ACTIONS(924), 1, sym_string_start, - ACTIONS(3000), 1, + ACTIONS(3018), 1, sym_identifier, - ACTIONS(3002), 1, + ACTIONS(3020), 1, anon_sym_LPAREN, - ACTIONS(3004), 1, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(3006), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(3012), 1, + ACTIONS(3030), 1, sym_float, - STATE(666), 1, + STATE(741), 1, sym_type, - STATE(868), 1, - sym_string, - STATE(869), 1, + STATE(900), 1, sym_dotted_name, - STATE(896), 1, - sym_union_type, + STATE(901), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 3, + ACTIONS(3028), 3, sym_integer, sym_true, sym_false, - ACTIONS(3008), 5, + ACTIONS(3026), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(872), 6, + STATE(898), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143107] = 13, - ACTIONS(539), 1, + [143780] = 14, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(3072), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(3074), 1, anon_sym_LPAREN, - STATE(1462), 1, + STATE(1845), 1, sym_type, - STATE(1487), 1, + STATE(1855), 1, + sym_union_type, + STATE(1963), 1, sym_string, - STATE(1488), 1, + STATE(1964), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1966), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143160] = 13, - ACTIONS(55), 1, + [143835] = 13, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(2902), 1, + ACTIONS(3058), 1, + sym_identifier, + ACTIONS(3060), 1, + anon_sym_LPAREN, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(3064), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(3070), 1, sym_float, - ACTIONS(3040), 1, - sym_identifier, - ACTIONS(3042), 1, - anon_sym_LPAREN, - STATE(1661), 1, + STATE(1026), 1, sym_type, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1075), 1, sym_string, + STATE(1076), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(3068), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(3066), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1077), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145710,39 +146668,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143213] = 13, - ACTIONS(932), 1, + [143888] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3000), 1, - sym_identifier, - ACTIONS(3002), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(3004), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(3006), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(3012), 1, + ACTIONS(2954), 1, sym_float, - STATE(433), 1, - sym_type, - STATE(868), 1, - sym_string, - STATE(869), 1, + ACTIONS(3032), 1, + sym_identifier, + STATE(1720), 1, sym_dotted_name, + STATE(1724), 1, + sym_string, + STATE(2744), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(3008), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(872), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145750,39 +146708,75 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143266] = 13, - ACTIONS(1014), 1, + [143941] = 9, + ACTIONS(2349), 1, + anon_sym_not, + ACTIONS(2365), 1, + anon_sym_is, + ACTIONS(3076), 1, + anon_sym_COLON, + ACTIONS(3078), 1, + anon_sym_EQ, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2363), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2341), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(3080), 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, + [143986] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2978), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2980), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2982), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2984), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2990), 1, + ACTIONS(2888), 1, sym_float, - STATE(606), 1, - sym_type, - STATE(863), 1, - sym_dotted_name, - STATE(864), 1, + STATE(1245), 1, sym_string, + STATE(1248), 1, + sym_dotted_name, + STATE(2812), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2986), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(862), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145790,39 +146784,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143319] = 13, - ACTIONS(539), 1, + [144039] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(3052), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(3054), 1, anon_sym_LPAREN, - STATE(1463), 1, - sym_type, - STATE(1487), 1, - sym_string, - STATE(1488), 1, + STATE(1720), 1, sym_dotted_name, + STATE(1724), 1, + sym_string, + STATE(1742), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145830,39 +146824,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143372] = 13, - ACTIONS(431), 1, + [144092] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2954), 1, sym_float, - STATE(1400), 1, - sym_string, - STATE(1401), 1, + ACTIONS(3032), 1, + sym_identifier, + STATE(1720), 1, sym_dotted_name, - STATE(2886), 1, + STATE(1724), 1, + sym_string, + STATE(2710), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145870,119 +146864,121 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143425] = 13, - ACTIONS(467), 1, + [144145] = 14, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2840), 1, - sym_identifier, - ACTIONS(2844), 1, - anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2954), 1, sym_float, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(2665), 1, + ACTIONS(3052), 1, + sym_identifier, + ACTIONS(3054), 1, + anon_sym_LPAREN, + STATE(1523), 1, sym_type, + STATE(1720), 1, + sym_dotted_name, + STATE(1724), 1, + sym_string, + STATE(1741), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1719), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143478] = 13, - ACTIONS(467), 1, + [144200] = 14, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(3058), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(3060), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(3064), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(3070), 1, sym_float, - STATE(1229), 1, + STATE(1047), 1, + sym_type, + STATE(1072), 1, + sym_union_type, + STATE(1075), 1, sym_string, - STATE(1230), 1, + STATE(1076), 1, sym_dotted_name, - STATE(2788), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3068), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3066), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1077), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143531] = 13, - ACTIONS(539), 1, + [144255] = 13, + ACTIONS(1032), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(3058), 1, sym_identifier, - ACTIONS(2858), 1, + ACTIONS(3060), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(3064), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(3070), 1, sym_float, - STATE(1487), 1, + STATE(1073), 1, + sym_type, + STATE(1075), 1, sym_string, - STATE(1488), 1, + STATE(1076), 1, sym_dotted_name, - STATE(2734), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(3068), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(3066), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1077), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145990,8 +146986,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143584] = 13, - ACTIONS(431), 1, + [144308] = 13, + ACTIONS(547), 1, sym_string_start, ACTIONS(2824), 1, sym_identifier, @@ -145999,30 +146995,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2836), 1, sym_float, - STATE(1400), 1, + STATE(1540), 1, sym_string, - STATE(1401), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2884), 1, + STATE(2874), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146030,39 +147026,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143637] = 13, - ACTIONS(966), 1, + [144361] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(3044), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(3046), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(3056), 1, + ACTIONS(2836), 1, sym_float, - STATE(1567), 1, - sym_type, - STATE(1639), 1, - sym_dotted_name, - STATE(1640), 1, + STATE(1540), 1, sym_string, + STATE(1541), 1, + sym_dotted_name, + STATE(2808), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(3052), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1637), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146070,39 +147066,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143690] = 13, - ACTIONS(792), 1, + [144414] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2806), 1, - sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2954), 1, sym_float, - STATE(1877), 1, - sym_string, - STATE(1900), 1, + ACTIONS(3032), 1, + sym_identifier, + STATE(1720), 1, sym_dotted_name, - STATE(2688), 1, + STATE(1724), 1, + sym_string, + STATE(2901), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146110,79 +147106,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143743] = 13, - ACTIONS(539), 1, + [144467] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(3014), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(3056), 1, anon_sym_LPAREN, - STATE(1465), 1, - sym_type, - STATE(1487), 1, + STATE(1245), 1, sym_string, - STATE(1488), 1, + STATE(1248), 1, sym_dotted_name, + STATE(1499), 1, + sym_type, + STATE(1692), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1249), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143796] = 13, - ACTIONS(467), 1, + [144522] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2840), 1, - sym_identifier, - ACTIONS(2844), 1, - anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - STATE(1229), 1, + ACTIONS(3014), 1, + sym_identifier, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2779), 1, + STATE(1647), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146190,79 +147187,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143849] = 13, - ACTIONS(55), 1, + [144575] = 14, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2900), 1, - anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2872), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3010), 1, sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, - sym_string, - STATE(2687), 1, + ACTIONS(3012), 1, + anon_sym_LPAREN, + STATE(1278), 1, sym_type, + STATE(1377), 1, + sym_string, + STATE(1379), 1, + sym_dotted_name, + STATE(1413), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1383), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143902] = 13, - ACTIONS(966), 1, + [144630] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3044), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(3046), 1, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(3056), 1, + ACTIONS(2888), 1, sym_float, - STATE(1639), 1, - sym_dotted_name, - STATE(1640), 1, + STATE(1245), 1, sym_string, - STATE(1721), 1, + STATE(1248), 1, + sym_dotted_name, + STATE(2806), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(3052), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1637), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146270,80 +147268,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143955] = 14, - ACTIONS(431), 1, + [144683] = 13, + ACTIONS(924), 1, sym_string_start, - ACTIONS(2828), 1, + ACTIONS(3018), 1, + sym_identifier, + ACTIONS(3020), 1, + anon_sym_LPAREN, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, - sym_float, ACTIONS(3030), 1, - sym_identifier, - ACTIONS(3032), 1, - anon_sym_LPAREN, - STATE(1251), 1, + sym_float, + STATE(714), 1, sym_type, - STATE(1363), 1, - sym_union_type, - STATE(1400), 1, - sym_string, - STATE(1401), 1, + STATE(900), 1, sym_dotted_name, + STATE(901), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(3028), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(3026), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 6, + STATE(898), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [144010] = 13, - ACTIONS(431), 1, + [144736] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2828), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(3030), 1, + ACTIONS(3072), 1, sym_identifier, - ACTIONS(3032), 1, + ACTIONS(3074), 1, anon_sym_LPAREN, - STATE(1249), 1, + STATE(1763), 1, sym_type, - STATE(1400), 1, + STATE(1963), 1, sym_string, - STATE(1401), 1, + STATE(1964), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146351,39 +147348,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144063] = 13, - ACTIONS(55), 1, + [144789] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2902), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(3040), 1, + ACTIONS(3048), 1, sym_identifier, - ACTIONS(3042), 1, + ACTIONS(3050), 1, anon_sym_LPAREN, - STATE(1607), 1, + STATE(1420), 1, sym_type, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1540), 1, sym_string, + STATE(1541), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146391,74 +147388,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144116] = 8, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(1247), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1631), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [144159] = 13, - ACTIONS(539), 1, + [144842] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(3072), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(3074), 1, anon_sym_LPAREN, - STATE(1487), 1, + STATE(1765), 1, + sym_type, + STATE(1963), 1, sym_string, - STATE(1488), 1, + STATE(1964), 1, sym_dotted_name, - STATE(1597), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146466,39 +147428,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144212] = 13, - ACTIONS(431), 1, + [144895] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2828), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(3030), 1, + ACTIONS(3072), 1, sym_identifier, - ACTIONS(3032), 1, + ACTIONS(3074), 1, anon_sym_LPAREN, - STATE(1237), 1, + STATE(1767), 1, sym_type, - STATE(1400), 1, + STATE(1963), 1, sym_string, - STATE(1401), 1, + STATE(1964), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146506,39 +147468,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144265] = 13, - ACTIONS(55), 1, + [144948] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2900), 1, - anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2852), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3072), 1, sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, - sym_string, - STATE(2713), 1, + ACTIONS(3074), 1, + anon_sym_LPAREN, + STATE(1773), 1, sym_type, + STATE(1963), 1, + sym_string, + STATE(1964), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146546,39 +147508,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144318] = 13, - ACTIONS(467), 1, + [145001] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2836), 1, sym_float, - STATE(1229), 1, + STATE(1540), 1, sym_string, - STATE(1230), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2787), 1, + STATE(2872), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146586,39 +147548,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144371] = 13, - ACTIONS(467), 1, + [145054] = 13, + ACTIONS(924), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(3018), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(3020), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(3030), 1, sym_float, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(2791), 1, + STATE(726), 1, sym_type, + STATE(900), 1, + sym_dotted_name, + STATE(901), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3028), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3026), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(898), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146626,80 +147588,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144424] = 14, - ACTIONS(966), 1, + [145107] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(3044), 1, - sym_identifier, - ACTIONS(3046), 1, - anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(3056), 1, + ACTIONS(2852), 1, sym_float, - STATE(1595), 1, + ACTIONS(3072), 1, + sym_identifier, + ACTIONS(3074), 1, + anon_sym_LPAREN, + STATE(1852), 1, sym_type, - STATE(1639), 1, - sym_dotted_name, - STATE(1640), 1, + STATE(1963), 1, sym_string, - STATE(1719), 1, - sym_union_type, + STATE(1964), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(3052), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1637), 6, + STATE(1966), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [144479] = 13, - ACTIONS(966), 1, + [145160] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(3044), 1, - sym_identifier, - ACTIONS(3046), 1, - anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(3056), 1, + ACTIONS(2836), 1, sym_float, - STATE(1494), 1, + ACTIONS(3048), 1, + sym_identifier, + ACTIONS(3050), 1, + anon_sym_LPAREN, + STATE(1421), 1, sym_type, - STATE(1639), 1, - sym_dotted_name, - STATE(1640), 1, + STATE(1540), 1, sym_string, + STATE(1541), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(3052), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1637), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146707,39 +147668,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144532] = 13, - ACTIONS(539), 1, + [145213] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2858), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2836), 1, sym_float, - STATE(1487), 1, + STATE(1540), 1, sym_string, - STATE(1488), 1, + STATE(1541), 1, sym_dotted_name, - STATE(2900), 1, + STATE(2819), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146747,39 +147708,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144585] = 13, - ACTIONS(467), 1, + [145266] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2846), 1, + ACTIONS(2878), 1, + anon_sym_LPAREN, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(1229), 1, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2630), 1, + STATE(2642), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146787,39 +147748,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144638] = 13, - ACTIONS(966), 1, + [145319] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(3044), 1, - sym_identifier, - ACTIONS(3046), 1, - anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(3056), 1, + ACTIONS(2836), 1, sym_float, - STATE(1526), 1, + ACTIONS(3048), 1, + sym_identifier, + ACTIONS(3050), 1, + anon_sym_LPAREN, + STATE(1425), 1, sym_type, - STATE(1639), 1, - sym_dotted_name, - STATE(1640), 1, + STATE(1540), 1, sym_string, + STATE(1541), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(3052), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1637), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146827,39 +147788,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144691] = 13, - ACTIONS(431), 1, + [145372] = 13, + ACTIONS(796), 1, sym_string_start, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2830), 1, - anon_sym_LBRACE, ACTIONS(2838), 1, - sym_float, - ACTIONS(3030), 1, sym_identifier, - ACTIONS(3032), 1, + ACTIONS(2840), 1, anon_sym_LPAREN, - STATE(1228), 1, - sym_type, - STATE(1400), 1, + ACTIONS(2844), 1, + anon_sym_LBRACK, + ACTIONS(2846), 1, + anon_sym_LBRACE, + ACTIONS(2852), 1, + sym_float, + STATE(1963), 1, sym_string, - STATE(1401), 1, + STATE(1964), 1, sym_dotted_name, + STATE(2721), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2850), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2848), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1368), 7, + STATE(1966), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146867,75 +147828,74 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144744] = 9, - ACTIONS(2406), 1, + [145425] = 8, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2422), 1, + ACTIONS(2070), 1, anon_sym_is, - ACTIONS(3058), 1, - anon_sym_COLON, - ACTIONS(3060), 1, - anon_sym_EQ, - STATE(2233), 1, + STATE(1291), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2420), 2, + ACTIONS(1609), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(3062), 12, + ACTIONS(1611), 12, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_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, - [144789] = 13, - ACTIONS(792), 1, + [145468] = 13, + ACTIONS(958), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2996), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2998), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(3002), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(3008), 1, sym_float, - STATE(1877), 1, - sym_string, - STATE(1900), 1, - sym_dotted_name, - STATE(2720), 1, + STATE(1634), 1, sym_type, + STATE(1837), 1, + sym_dotted_name, + STATE(1838), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(3006), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(3004), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1836), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146943,39 +147903,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144842] = 13, - ACTIONS(539), 1, + [145521] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(2874), 1, sym_identifier, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2888), 1, sym_float, - STATE(1487), 1, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(1488), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2828), 1, + STATE(2639), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1490), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146983,39 +147943,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144895] = 13, - ACTIONS(932), 1, + [145574] = 13, + ACTIONS(439), 1, sym_string_start, - ACTIONS(3000), 1, - sym_identifier, - ACTIONS(3002), 1, - anon_sym_LPAREN, - ACTIONS(3004), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(3006), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(3012), 1, + ACTIONS(2872), 1, sym_float, - STATE(610), 1, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3012), 1, + anon_sym_LPAREN, + STATE(1280), 1, sym_type, - STATE(868), 1, + STATE(1377), 1, sym_string, - STATE(869), 1, + STATE(1379), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 3, + ACTIONS(2870), 3, sym_integer, sym_true, sym_false, - ACTIONS(3008), 5, + ACTIONS(2868), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(872), 7, + STATE(1383), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147023,39 +147983,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144948] = 13, - ACTIONS(1014), 1, + [145627] = 13, + ACTIONS(958), 1, sym_string_start, - ACTIONS(2978), 1, + ACTIONS(2996), 1, sym_identifier, - ACTIONS(2980), 1, + ACTIONS(2998), 1, anon_sym_LPAREN, - ACTIONS(2982), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2984), 1, + ACTIONS(3002), 1, anon_sym_LBRACE, - ACTIONS(2990), 1, + ACTIONS(3008), 1, sym_float, - STATE(863), 1, + STATE(1627), 1, + sym_type, + STATE(1837), 1, sym_dotted_name, - STATE(864), 1, + STATE(1838), 1, sym_string, - STATE(878), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2988), 3, + ACTIONS(3006), 3, sym_integer, sym_true, sym_false, - ACTIONS(2986), 5, + ACTIONS(3004), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(862), 7, + STATE(1836), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147063,39 +148023,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145001] = 13, - ACTIONS(467), 1, + [145680] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2846), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(3014), 1, sym_identifier, - ACTIONS(2994), 1, + ACTIONS(3016), 1, anon_sym_LPAREN, - STATE(1229), 1, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(1449), 1, + STATE(1476), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147103,79 +148063,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145054] = 13, - ACTIONS(467), 1, + [145733] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2840), 1, - sym_identifier, - ACTIONS(2844), 1, - anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - STATE(1229), 1, + ACTIONS(3014), 1, + sym_identifier, + ACTIONS(3016), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2814), 1, + STATE(2056), 1, sym_type, + STATE(2057), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [145107] = 13, - ACTIONS(990), 1, + [145788] = 13, + ACTIONS(958), 1, sym_string_start, - ACTIONS(3016), 1, + ACTIONS(2996), 1, sym_identifier, - ACTIONS(3018), 1, + ACTIONS(2998), 1, anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3002), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3008), 1, sym_float, - STATE(1024), 1, + STATE(1624), 1, sym_type, - STATE(1057), 1, + STATE(1837), 1, sym_dotted_name, - STATE(1065), 1, + STATE(1838), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(3006), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(3004), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1059), 7, + STATE(1836), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147183,39 +148144,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145160] = 13, - ACTIONS(467), 1, + [145841] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2840), 1, - sym_identifier, - ACTIONS(2844), 1, - anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - STATE(1229), 1, + ACTIONS(3014), 1, + sym_identifier, + ACTIONS(3016), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2869), 1, + STATE(1467), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147223,39 +148184,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145213] = 13, - ACTIONS(467), 1, + [145894] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2840), 1, - sym_identifier, - ACTIONS(2846), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(3034), 1, + ACTIONS(3014), 1, + sym_identifier, + ACTIONS(3016), 1, anon_sym_LPAREN, - STATE(1229), 1, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2605), 1, + STATE(1460), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147263,39 +148224,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145266] = 13, - ACTIONS(55), 1, + [145947] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2900), 1, + ACTIONS(2874), 1, + sym_identifier, + ACTIONS(2878), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2888), 1, sym_float, - ACTIONS(3014), 1, - sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, + STATE(1245), 1, sym_string, - STATE(2690), 1, + STATE(1248), 1, + sym_dotted_name, + STATE(2669), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147303,79 +148264,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145319] = 13, - ACTIONS(467), 1, + [146000] = 14, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2840), 1, - sym_identifier, - ACTIONS(2844), 1, - anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2888), 1, sym_float, - STATE(1229), 1, + ACTIONS(3014), 1, + sym_identifier, + ACTIONS(3016), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(1230), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2654), 1, + STATE(1464), 1, sym_type, + STATE(1623), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(1249), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [145372] = 13, - ACTIONS(792), 1, + [146055] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2806), 1, - sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2954), 1, sym_float, - STATE(1877), 1, - sym_string, - STATE(1900), 1, + ACTIONS(3032), 1, + sym_identifier, + STATE(1720), 1, sym_dotted_name, - STATE(2722), 1, + STATE(1724), 1, + sym_string, + STATE(2736), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147383,39 +148345,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145425] = 13, - ACTIONS(792), 1, + [146108] = 13, + ACTIONS(475), 1, sym_string_start, - ACTIONS(2806), 1, - sym_identifier, - ACTIONS(2808), 1, - anon_sym_LPAREN, - ACTIONS(2812), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2882), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, + ACTIONS(2888), 1, sym_float, - STATE(1877), 1, + ACTIONS(3014), 1, + sym_identifier, + ACTIONS(3016), 1, + anon_sym_LPAREN, + STATE(1245), 1, sym_string, - STATE(1900), 1, + STATE(1248), 1, sym_dotted_name, - STATE(2716), 1, + STATE(1458), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2818), 3, + ACTIONS(2886), 3, sym_integer, sym_true, sym_false, - ACTIONS(2816), 5, + ACTIONS(2884), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1837), 7, + STATE(1249), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147423,39 +148385,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145478] = 13, - ACTIONS(55), 1, + [146161] = 13, + ACTIONS(547), 1, sym_string_start, - ACTIONS(2900), 1, - anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2836), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3048), 1, sym_identifier, - STATE(1748), 1, - sym_dotted_name, - STATE(1749), 1, - sym_string, - STATE(2698), 1, + ACTIONS(3050), 1, + anon_sym_LPAREN, + STATE(1423), 1, sym_type, + STATE(1540), 1, + sym_string, + STATE(1541), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2834), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(541), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1542), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147463,39 +148425,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145531] = 13, - ACTIONS(467), 1, + [146214] = 13, + ACTIONS(924), 1, sym_string_start, - ACTIONS(2840), 1, + ACTIONS(3018), 1, sym_identifier, - ACTIONS(2844), 1, + ACTIONS(3020), 1, anon_sym_LPAREN, - ACTIONS(2846), 1, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(2848), 1, + ACTIONS(3024), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, + ACTIONS(3030), 1, sym_float, - STATE(1229), 1, - sym_string, - STATE(1230), 1, - sym_dotted_name, - STATE(2794), 1, + STATE(782), 1, sym_type, + STATE(900), 1, + sym_dotted_name, + STATE(901), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2852), 3, + ACTIONS(3028), 3, sym_integer, sym_true, sym_false, - ACTIONS(2850), 5, + ACTIONS(3026), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1231), 7, + STATE(898), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147503,39 +148465,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145584] = 13, + [146267] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2900), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2904), 1, + ACTIONS(2948), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2954), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3032), 1, sym_identifier, - STATE(1748), 1, + STATE(1720), 1, sym_dotted_name, - STATE(1749), 1, + STATE(1724), 1, sym_string, - STATE(2692), 1, + STATE(2730), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2908), 3, + ACTIONS(2952), 3, sym_integer, sym_true, sym_false, - ACTIONS(2906), 5, + ACTIONS(2950), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1747), 7, + STATE(1719), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147543,158 +148505,162 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145637] = 8, - ACTIONS(2179), 1, + [146320] = 8, + ACTIONS(2203), 1, anon_sym_not, - ACTIONS(2197), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1412), 1, + STATE(1468), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(1609), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2195), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 5, + ACTIONS(2201), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, + ACTIONS(1611), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [145678] = 8, - ACTIONS(2179), 1, + [146362] = 8, + ACTIONS(2203), 1, anon_sym_not, - ACTIONS(2197), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1412), 1, + STATE(1468), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(1609), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2195), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 5, + ACTIONS(2201), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, + ACTIONS(1611), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [145719] = 8, - ACTIONS(2179), 1, + [146404] = 8, + ACTIONS(2203), 1, anon_sym_not, - ACTIONS(2197), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1412), 1, + STATE(1468), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(1609), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2195), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 5, + ACTIONS(2201), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, + ACTIONS(1611), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [145760] = 8, - ACTIONS(2179), 1, + [146446] = 8, + ACTIONS(2203), 1, anon_sym_not, - ACTIONS(2197), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1412), 1, + STATE(1468), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(1609), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2195), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 5, + ACTIONS(2201), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, + ACTIONS(1611), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [145801] = 7, - ACTIONS(2290), 1, + [146488] = 7, + ACTIONS(2263), 1, anon_sym_not, - ACTIONS(2294), 1, + ACTIONS(2267), 1, anon_sym_is, - STATE(1598), 1, + STATE(1633), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2292), 2, + ACTIONS(2265), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2288), 5, + ACTIONS(2261), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 11, + ACTIONS(1611), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147706,26 +148672,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [145839] = 7, - ACTIONS(2290), 1, + [146526] = 7, + ACTIONS(2263), 1, anon_sym_not, - ACTIONS(2294), 1, + ACTIONS(2267), 1, anon_sym_is, - STATE(1598), 1, + STATE(1633), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2292), 2, + ACTIONS(2265), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2288), 5, + ACTIONS(2261), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 11, + ACTIONS(1611), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147737,26 +148703,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [145877] = 7, - ACTIONS(2290), 1, + [146564] = 7, + ACTIONS(2263), 1, anon_sym_not, - ACTIONS(2294), 1, + ACTIONS(2267), 1, anon_sym_is, - STATE(1598), 1, + STATE(1633), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2292), 2, + ACTIONS(2265), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2288), 5, + ACTIONS(2261), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 11, + ACTIONS(1611), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147768,26 +148734,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [145915] = 7, - ACTIONS(2290), 1, + [146602] = 7, + ACTIONS(2263), 1, anon_sym_not, - ACTIONS(2294), 1, + ACTIONS(2267), 1, anon_sym_is, - STATE(1598), 1, + STATE(1633), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2292), 2, + ACTIONS(2265), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2288), 5, + ACTIONS(2261), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 11, + ACTIONS(1611), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147799,19 +148765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [145953] = 7, - ACTIONS(1629), 1, + [146640] = 7, + ACTIONS(1611), 1, anon_sym_LF, - ACTIONS(2357), 1, + ACTIONS(2435), 1, anon_sym_not, - ACTIONS(2369), 1, + ACTIONS(2447), 1, anon_sym_is, - STATE(1724), 1, + STATE(1764), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2349), 7, + ACTIONS(2427), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -147819,7 +148785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1631), 9, + ACTIONS(1609), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147829,49 +148795,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [145990] = 7, - ACTIONS(2406), 1, + [146677] = 7, + ACTIONS(2414), 1, anon_sym_not, - ACTIONS(2422), 1, + ACTIONS(2418), 1, anon_sym_is, - STATE(1669), 1, + STATE(1710), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2420), 2, + ACTIONS(2416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 5, + ACTIONS(2412), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, - sym__newline, + ACTIONS(1611), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146027] = 7, - ACTIONS(1629), 1, + [146714] = 7, + ACTIONS(1611), 1, anon_sym_LF, - ACTIONS(2357), 1, + ACTIONS(2435), 1, anon_sym_not, - ACTIONS(2369), 1, + ACTIONS(2447), 1, anon_sym_is, - STATE(1724), 1, + STATE(1764), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2349), 7, + ACTIONS(2427), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -147879,7 +148845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1631), 9, + ACTIONS(1609), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147889,49 +148855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146064] = 7, - ACTIONS(2455), 1, - anon_sym_not, - ACTIONS(2459), 1, - anon_sym_is, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2457), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2453), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 10, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [146101] = 7, - ACTIONS(1629), 1, + [146751] = 7, + ACTIONS(1611), 1, anon_sym_LF, - ACTIONS(2357), 1, + ACTIONS(2435), 1, anon_sym_not, - ACTIONS(2369), 1, + ACTIONS(2447), 1, anon_sym_is, - STATE(1724), 1, + STATE(1764), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2349), 7, + ACTIONS(2427), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -147939,7 +148875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1631), 9, + ACTIONS(1609), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147949,302 +148885,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146138] = 7, - ACTIONS(2455), 1, + [146788] = 7, + ACTIONS(2349), 1, anon_sym_not, - ACTIONS(2459), 1, + ACTIONS(2365), 1, anon_sym_is, - STATE(1764), 1, + STATE(1748), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 2, + ACTIONS(2363), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 5, + ACTIONS(2341), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, + ACTIONS(1611), 10, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146175] = 7, - ACTIONS(1629), 1, - anon_sym_LF, - ACTIONS(2357), 1, + [146825] = 7, + ACTIONS(2349), 1, anon_sym_not, - ACTIONS(2369), 1, + ACTIONS(2365), 1, anon_sym_is, - STATE(1724), 1, + STATE(1748), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2349), 7, - anon_sym_in, + ACTIONS(2363), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(2341), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(1631), 9, + ACTIONS(1611), 10, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146212] = 7, - ACTIONS(2455), 1, + [146862] = 7, + ACTIONS(2349), 1, anon_sym_not, - ACTIONS(2459), 1, + ACTIONS(2365), 1, anon_sym_is, - STATE(1764), 1, + STATE(1748), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 2, + ACTIONS(2363), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 5, + ACTIONS(2341), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, + ACTIONS(1611), 10, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146249] = 7, - ACTIONS(2406), 1, + [146899] = 7, + ACTIONS(2414), 1, anon_sym_not, - ACTIONS(2422), 1, + ACTIONS(2418), 1, anon_sym_is, - STATE(1669), 1, + STATE(1710), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2420), 2, + ACTIONS(2416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 5, + ACTIONS(2412), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, - sym__newline, + ACTIONS(1611), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146286] = 7, - ACTIONS(2455), 1, + [146936] = 7, + ACTIONS(1611), 1, + anon_sym_LF, + ACTIONS(2435), 1, anon_sym_not, - ACTIONS(2459), 1, + ACTIONS(2447), 1, anon_sym_is, STATE(1764), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2453), 5, + ACTIONS(2427), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, + anon_sym_GT, + ACTIONS(1609), 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, - [146323] = 7, - ACTIONS(2406), 1, + [146973] = 7, + ACTIONS(2414), 1, anon_sym_not, - ACTIONS(2422), 1, + ACTIONS(2418), 1, anon_sym_is, - STATE(1669), 1, + STATE(1710), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2420), 2, + ACTIONS(2416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 5, + ACTIONS(2412), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, - sym__newline, + ACTIONS(1611), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146360] = 7, - ACTIONS(2406), 1, + [147010] = 7, + ACTIONS(2414), 1, anon_sym_not, - ACTIONS(2422), 1, + ACTIONS(2418), 1, anon_sym_is, - STATE(1669), 1, + STATE(1710), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2420), 2, + ACTIONS(2416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 5, + ACTIONS(2412), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 10, - sym__newline, + ACTIONS(1611), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146397] = 7, - ACTIONS(2527), 1, + [147047] = 7, + ACTIONS(2349), 1, anon_sym_not, - ACTIONS(2543), 1, + ACTIONS(2365), 1, anon_sym_is, - STATE(1888), 1, + STATE(1748), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 2, + ACTIONS(2363), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 5, + ACTIONS(2341), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 9, + ACTIONS(1611), 10, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146433] = 15, - ACTIONS(403), 1, + [147084] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(417), 1, + ACTIONS(425), 1, anon_sym_STAR_STAR, - ACTIONS(445), 1, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(461), 1, - anon_sym_LF, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3064), 1, + ACTIONS(487), 1, + anon_sym_LF, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3066), 1, + ACTIONS(3084), 1, anon_sym_LBRACE, - ACTIONS(3068), 1, + ACTIONS(3086), 1, anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3076), 1, + STATE(2997), 1, sym_config_entries, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, + ACTIONS(3088), 2, sym_integer, sym_float, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [146485] = 7, - ACTIONS(2527), 1, + [147136] = 7, + ACTIONS(2544), 1, anon_sym_not, - ACTIONS(2543), 1, + ACTIONS(2560), 1, anon_sym_is, - STATE(1888), 1, + STATE(1851), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 2, + ACTIONS(2558), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 5, + ACTIONS(2536), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 9, + ACTIONS(1611), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148254,26 +149191,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146521] = 7, - ACTIONS(2527), 1, + [147172] = 7, + ACTIONS(2544), 1, anon_sym_not, - ACTIONS(2543), 1, + ACTIONS(2560), 1, anon_sym_is, - STATE(1888), 1, + STATE(1851), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 2, + ACTIONS(2558), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 5, + ACTIONS(2536), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 9, + ACTIONS(1611), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148283,63 +149220,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146557] = 15, - ACTIONS(403), 1, + [147208] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(417), 1, + ACTIONS(425), 1, anon_sym_STAR_STAR, - ACTIONS(437), 1, - anon_sym_LF, - ACTIONS(445), 1, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3064), 1, + ACTIONS(481), 1, + anon_sym_LF, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3066), 1, + ACTIONS(3084), 1, anon_sym_LBRACE, - ACTIONS(3072), 1, + ACTIONS(3090), 1, anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3086), 1, + STATE(3131), 1, sym_config_entries, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, + ACTIONS(3088), 2, sym_integer, sym_float, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [146609] = 7, - ACTIONS(2527), 1, + [147260] = 7, + ACTIONS(2544), 1, anon_sym_not, - ACTIONS(2543), 1, + ACTIONS(2560), 1, anon_sym_is, - STATE(1888), 1, + STATE(1851), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 2, + ACTIONS(2558), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 5, + ACTIONS(2536), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 9, + ACTIONS(1611), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148349,586 +149286,519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146645] = 15, - ACTIONS(403), 1, + [147296] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(417), 1, + ACTIONS(425), 1, anon_sym_STAR_STAR, - ACTIONS(445), 1, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(473), 1, + ACTIONS(469), 1, anon_sym_LF, - ACTIONS(3064), 1, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3066), 1, + ACTIONS(3084), 1, anon_sym_LBRACE, - ACTIONS(3074), 1, + ACTIONS(3092), 1, anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3120), 1, + STATE(3248), 1, sym_config_entries, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, + ACTIONS(3088), 2, sym_integer, sym_float, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [146697] = 15, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3064), 1, - sym_identifier, - ACTIONS(3070), 1, - sym_integer, - ACTIONS(3076), 1, - anon_sym_LBRACE, - ACTIONS(3078), 1, - anon_sym_RBRACE, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, - sym_float, - STATE(2714), 1, - sym_config_entry, - STATE(2858), 1, - sym_test, - STATE(3029), 1, - sym_config_entries, + [147348] = 7, + ACTIONS(2544), 1, + anon_sym_not, + ACTIONS(2560), 1, + anon_sym_is, + STATE(1851), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2733), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [146748] = 15, - ACTIONS(403), 1, + ACTIONS(2558), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2536), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1611), 9, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(467), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [147384] = 15, + ACTIONS(411), 1, + anon_sym_if, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3096), 1, + anon_sym_RBRACE, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3084), 1, - anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3008), 1, + STATE(3070), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [146799] = 15, - ACTIONS(403), 1, + [147435] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, - sym_identifier, - ACTIONS(3070), 1, - sym_integer, - ACTIONS(3076), 1, - anon_sym_LBRACE, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, ACTIONS(3082), 1, - sym_float, - ACTIONS(3086), 1, - anon_sym_RBRACE, - STATE(2714), 1, - sym_config_entry, - STATE(2858), 1, - sym_test, - STATE(3051), 1, - sym_config_entries, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2864), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2733), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [146850] = 14, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(417), 1, - anon_sym_STAR_STAR, - ACTIONS(445), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(3064), 1, sym_identifier, - ACTIONS(3066), 1, - anon_sym_LBRACE, ACTIONS(3088), 1, - anon_sym_RBRACE, - ACTIONS(3090), 1, - anon_sym_LF, - STATE(2810), 1, - sym_config_entry, - STATE(2858), 1, - sym_test, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3070), 2, sym_integer, - sym_float, - STATE(2864), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2733), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [146899] = 15, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3064), 1, - sym_identifier, - ACTIONS(3070), 1, - sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3092), 1, + ACTIONS(3102), 1, anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3083), 1, + STATE(3090), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [146950] = 15, - ACTIONS(403), 1, + [147486] = 14, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3064), 1, - sym_identifier, - ACTIONS(3070), 1, - sym_integer, - ACTIONS(3076), 1, - anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(425), 1, anon_sym_STAR_STAR, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(475), 1, + sym_string_start, ACTIONS(3082), 1, - sym_float, - ACTIONS(3094), 1, + sym_identifier, + ACTIONS(3084), 1, + anon_sym_LBRACE, + ACTIONS(3104), 1, anon_sym_RBRACE, - STATE(2714), 1, - sym_config_entry, - STATE(2858), 1, + ACTIONS(3106), 1, + anon_sym_LF, + STATE(2749), 1, sym_test, - STATE(2973), 1, - sym_config_entries, - ACTIONS(3), 2, + STATE(2857), 1, + sym_config_entry, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + ACTIONS(3088), 2, + sym_integer, + sym_float, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147001] = 15, - ACTIONS(403), 1, + [147535] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3096), 1, + ACTIONS(3108), 1, anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3111), 1, + STATE(3134), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147052] = 15, - ACTIONS(403), 1, + [147586] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3098), 1, + ACTIONS(3110), 1, anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3244), 1, + STATE(3043), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147103] = 15, - ACTIONS(403), 1, + [147637] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, - sym_float, ACTIONS(3100), 1, + sym_float, + ACTIONS(3112), 1, anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3099), 1, + STATE(3140), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147154] = 14, - ACTIONS(403), 1, + [147688] = 14, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(417), 1, + ACTIONS(425), 1, anon_sym_STAR_STAR, - ACTIONS(445), 1, + ACTIONS(453), 1, anon_sym_LPAREN, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3066), 1, + ACTIONS(3084), 1, anon_sym_LBRACE, - ACTIONS(3102), 1, + ACTIONS(3114), 1, anon_sym_RBRACE, - ACTIONS(3104), 1, + ACTIONS(3116), 1, anon_sym_LF, - STATE(2810), 1, - sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, + STATE(2857), 1, + sym_config_entry, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, + ACTIONS(3088), 2, sym_integer, sym_float, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147203] = 15, - ACTIONS(403), 1, + [147737] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3106), 1, + ACTIONS(3118), 1, anon_sym_RBRACE, - STATE(2714), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, - STATE(3145), 1, + STATE(3209), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147254] = 14, - ACTIONS(403), 1, + [147788] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3108), 1, + ACTIONS(3120), 1, anon_sym_RBRACE, - STATE(2820), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, + STATE(3033), 1, + sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147302] = 14, - ACTIONS(403), 1, + [147839] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3110), 1, + ACTIONS(3122), 1, anon_sym_RBRACE, - STATE(2820), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, + STATE(3257), 1, + sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147350] = 7, - ACTIONS(2042), 1, - anon_sym_not, - ACTIONS(2058), 1, - anon_sym_is, - STATE(2044), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1629), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [147384] = 14, - ACTIONS(403), 1, + [147890] = 15, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3112), 1, + ACTIONS(3124), 1, anon_sym_RBRACE, - STATE(2810), 1, + STATE(2735), 1, sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, + STATE(2988), 1, + sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147432] = 7, - ACTIONS(2042), 1, + [147941] = 13, + ACTIONS(411), 1, + anon_sym_if, + ACTIONS(425), 1, + anon_sym_STAR_STAR, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(3082), 1, + sym_identifier, + ACTIONS(3084), 1, + anon_sym_LBRACE, + ACTIONS(3126), 1, + anon_sym_LF, + STATE(2749), 1, + sym_test, + STATE(2857), 1, + sym_config_entry, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3088), 2, + sym_integer, + sym_float, + STATE(2869), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2837), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [147987] = 7, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2104), 1, anon_sym_is, - STATE(2044), 1, + STATE(2065), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1528), 5, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 7, + ACTIONS(1611), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148936,26 +149806,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147466] = 7, - ACTIONS(2042), 1, + [148021] = 7, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2104), 1, anon_sym_is, - STATE(2044), 1, + STATE(2065), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1528), 5, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 7, + ACTIONS(1611), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148963,26 +149833,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147500] = 7, - ACTIONS(2042), 1, + [148055] = 7, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2104), 1, anon_sym_is, - STATE(2044), 1, + STATE(2065), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1528), 5, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1629), 7, + ACTIONS(1611), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148990,165 +149860,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147534] = 14, - ACTIONS(403), 1, + [148089] = 14, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - ACTIONS(3110), 1, + ACTIONS(3128), 1, anon_sym_RBRACE, - STATE(2810), 1, - sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, + STATE(2857), 1, + sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147582] = 13, - ACTIONS(403), 1, + [148137] = 14, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(417), 1, - anon_sym_STAR_STAR, - ACTIONS(445), 1, - anon_sym_LPAREN, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3064), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3066), 1, + ACTIONS(3088), 1, + sym_integer, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3114), 1, - anon_sym_LF, - STATE(2810), 1, - sym_config_entry, - STATE(2858), 1, + ACTIONS(3098), 1, + anon_sym_STAR_STAR, + ACTIONS(3100), 1, + sym_float, + ACTIONS(3130), 1, + anon_sym_RBRACE, + STATE(2749), 1, sym_test, - ACTIONS(5), 2, + STATE(2860), 1, + sym_config_entry, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, - sym_integer, - sym_float, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147628] = 7, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3120), 1, - anon_sym_PLUS, + [148185] = 14, + ACTIONS(411), 1, + anon_sym_if, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, + sym_identifier, + ACTIONS(3088), 1, + sym_integer, + ACTIONS(3094), 1, + anon_sym_LBRACE, + ACTIONS(3098), 1, + anon_sym_STAR_STAR, + ACTIONS(3100), 1, + sym_float, + ACTIONS(3130), 1, + anon_sym_RBRACE, + STATE(2749), 1, + sym_test, + STATE(2857), 1, + sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 9, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [147661] = 5, - STATE(1505), 1, - aux_sym_dotted_name_repeat1, + STATE(2869), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2837), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [148233] = 7, + ACTIONS(2102), 1, + anon_sym_not, + ACTIONS(2104), 1, + anon_sym_is, + STATE(2065), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3122), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1587), 3, - anon_sym_EQ, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 10, - sym__newline, - anon_sym_as, + ACTIONS(1373), 5, anon_sym_in, - anon_sym_not, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [147690] = 13, - ACTIONS(403), 1, + ACTIONS(1611), 7, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - ACTIONS(467), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [148267] = 14, + ACTIONS(411), 1, + anon_sym_if, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - STATE(2810), 1, - sym_config_entry, - STATE(2858), 1, + ACTIONS(3132), 1, + anon_sym_RBRACE, + STATE(2749), 1, sym_test, + STATE(2860), 1, + sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147735] = 4, - ACTIONS(3120), 1, + [148315] = 4, + ACTIONS(3134), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1391), 13, + ACTIONS(1291), 13, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -149162,16 +150046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [147762] = 4, - ACTIONS(3120), 1, + [148342] = 4, + ACTIONS(3134), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 13, + ACTIONS(1422), 13, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -149185,50 +150069,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [147789] = 4, - ACTIONS(3120), 1, + [148369] = 9, + ACTIONS(3134), 1, anon_sym_PLUS, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, + anon_sym_if, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1567), 7, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_RBRACE, anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, - [147816] = 9, - ACTIONS(3116), 1, + [148406] = 7, + ACTIONS(3134), 1, + anon_sym_PLUS, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3120), 1, - anon_sym_PLUS, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1455), 7, + ACTIONS(1550), 9, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, @@ -149236,793 +150123,893 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_for, anon_sym_PLUS_EQ, - [147853] = 13, - ACTIONS(403), 1, + [148439] = 13, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(467), 1, + ACTIONS(475), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(3064), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(3070), 1, + ACTIONS(3088), 1, sym_integer, - ACTIONS(3076), 1, + ACTIONS(3094), 1, anon_sym_LBRACE, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3100), 1, sym_float, - STATE(2820), 1, - sym_config_entry, - STATE(2858), 1, + STATE(2749), 1, sym_test, + STATE(2860), 1, + sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2864), 2, + STATE(2869), 2, sym_dictionary_splat, sym_if_entry, - STATE(2733), 4, + STATE(2837), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [147898] = 14, - ACTIONS(3128), 1, - anon_sym_as, - ACTIONS(3130), 1, + [148484] = 13, + ACTIONS(411), 1, anon_sym_if, - ACTIONS(3132), 1, - anon_sym_COMMA, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, + sym_identifier, + ACTIONS(3088), 1, + sym_integer, + ACTIONS(3094), 1, + anon_sym_LBRACE, + ACTIONS(3098), 1, + anon_sym_STAR_STAR, + ACTIONS(3100), 1, + sym_float, + STATE(2749), 1, + sym_test, + STATE(2857), 1, + sym_config_entry, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2869), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2837), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [148529] = 4, ACTIONS(3134), 1, - anon_sym_RBRACK, - ACTIONS(3136), 1, - anon_sym_for, - ACTIONS(3138), 1, - anon_sym_and, - ACTIONS(3140), 1, - anon_sym_or, - ACTIONS(3142), 1, anon_sym_PLUS, - STATE(2636), 1, - sym_for_in_clause, - STATE(2777), 1, - aux_sym__collection_elements_repeat1, - STATE(3100), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [147944] = 14, - ACTIONS(3128), 1, + ACTIONS(1430), 13, + anon_sym_DOT, anon_sym_as, - ACTIONS(3130), 1, anon_sym_if, - ACTIONS(3132), 1, anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_RBRACK, - ACTIONS(3136), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_for, - ACTIONS(3138), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3140), 1, anon_sym_or, - ACTIONS(3142), 1, - anon_sym_PLUS, - STATE(2636), 1, - sym_for_in_clause, - STATE(2777), 1, - aux_sym__collection_elements_repeat1, - STATE(2993), 1, - sym__comprehension_clauses, + anon_sym_PLUS_EQ, + [148556] = 5, + STATE(1622), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(3144), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [147990] = 14, - ACTIONS(3128), 1, + ACTIONS(1323), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1325), 10, + sym__newline, anon_sym_as, - ACTIONS(3130), 1, + anon_sym_in, + anon_sym_not, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [148585] = 14, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3132), 1, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3154), 1, anon_sym_for, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - STATE(2636), 1, + STATE(2651), 1, sym_for_in_clause, - STATE(2777), 1, + STATE(2867), 1, aux_sym__collection_elements_repeat1, - STATE(3052), 1, + STATE(3206), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1413), 2, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [148631] = 4, + ACTIONS(3162), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148036] = 14, - ACTIONS(3128), 1, + ACTIONS(1430), 12, + anon_sym_DOT, anon_sym_as, - ACTIONS(3130), 1, anon_sym_if, - ACTIONS(3132), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [148657] = 14, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3154), 1, anon_sym_for, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - STATE(2636), 1, + STATE(2651), 1, sym_for_in_clause, - STATE(2777), 1, + STATE(2867), 1, aux_sym__collection_elements_repeat1, - STATE(3242), 1, + STATE(3034), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148082] = 14, - ACTIONS(3128), 1, + [148703] = 14, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3132), 1, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3154), 1, anon_sym_for, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - STATE(2636), 1, + STATE(2651), 1, sym_for_in_clause, - STATE(2777), 1, + STATE(2867), 1, aux_sym__collection_elements_repeat1, - STATE(3006), 1, + STATE(3256), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148128] = 14, - ACTIONS(3128), 1, + [148749] = 14, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3132), 1, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3154), 1, anon_sym_for, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - STATE(2636), 1, + STATE(2651), 1, sym_for_in_clause, - STATE(2777), 1, + STATE(2867), 1, aux_sym__collection_elements_repeat1, - STATE(3107), 1, + STATE(3092), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148174] = 10, + [148795] = 10, ACTIONS(41), 1, anon_sym_AT, - ACTIONS(3144), 1, + ACTIONS(3164), 1, anon_sym_LBRACK, - ACTIONS(3146), 1, + ACTIONS(3166), 1, anon_sym_schema, - ACTIONS(3148), 1, + ACTIONS(3168), 1, anon_sym_mixin, - ACTIONS(3150), 1, + ACTIONS(3170), 1, anon_sym_protocol, - ACTIONS(3152), 1, + ACTIONS(3172), 1, anon_sym_rule, - ACTIONS(3154), 1, + ACTIONS(3174), 1, anon_sym_check, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2569), 2, + STATE(2561), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - STATE(1771), 6, + STATE(1684), 6, sym_schema_index_signature, sym_schema_statement, sym_mixin_statement, sym_protocol_statement, sym_rule_statement, sym_check_statement, - [148212] = 10, - ACTIONS(41), 1, - anon_sym_AT, - ACTIONS(3156), 1, - anon_sym_LBRACK, - ACTIONS(3158), 1, - anon_sym_schema, - ACTIONS(3160), 1, - anon_sym_mixin, + [148833] = 4, ACTIONS(3162), 1, - anon_sym_protocol, - ACTIONS(3164), 1, - anon_sym_rule, - ACTIONS(3166), 1, - anon_sym_check, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2569), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(1796), 6, - sym_schema_index_signature, - sym_schema_statement, - sym_mixin_statement, - sym_protocol_statement, - sym_rule_statement, - sym_check_statement, - [148250] = 14, - ACTIONS(3128), 1, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1422), 12, + anon_sym_DOT, anon_sym_as, - ACTIONS(3130), 1, anon_sym_if, - ACTIONS(3132), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [148859] = 14, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3154), 1, anon_sym_for, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - STATE(2636), 1, + STATE(2651), 1, sym_for_in_clause, - STATE(2777), 1, + STATE(2867), 1, aux_sym__collection_elements_repeat1, - STATE(3030), 1, + STATE(3061), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148296] = 14, - ACTIONS(3128), 1, + [148905] = 10, + ACTIONS(41), 1, + anon_sym_AT, + ACTIONS(3176), 1, + anon_sym_LBRACK, + ACTIONS(3178), 1, + anon_sym_schema, + ACTIONS(3180), 1, + anon_sym_mixin, + ACTIONS(3182), 1, + anon_sym_protocol, + ACTIONS(3184), 1, + anon_sym_rule, + ACTIONS(3186), 1, + anon_sym_check, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2561), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(1640), 6, + sym_schema_index_signature, + sym_schema_statement, + sym_mixin_statement, + sym_protocol_statement, + sym_rule_statement, + sym_check_statement, + [148943] = 14, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3132), 1, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3154), 1, anon_sym_for, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - STATE(2636), 1, + STATE(2651), 1, sym_for_in_clause, - STATE(2777), 1, + STATE(2867), 1, aux_sym__collection_elements_repeat1, - STATE(3142), 1, + STATE(3176), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148342] = 14, - ACTIONS(3128), 1, + [148989] = 14, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3132), 1, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - ACTIONS(3136), 1, + ACTIONS(3154), 1, anon_sym_for, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - STATE(2636), 1, + STATE(2651), 1, sym_for_in_clause, - STATE(2777), 1, + STATE(2867), 1, aux_sym__collection_elements_repeat1, - STATE(3075), 1, + STATE(2989), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148388] = 4, - ACTIONS(3168), 1, + [149035] = 4, + ACTIONS(3162), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 11, + ACTIONS(1291), 12, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [148413] = 7, - ACTIONS(3168), 1, - anon_sym_PLUS, - ACTIONS(3170), 1, + [149061] = 14, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3150), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_RBRACK, + ACTIONS(3154), 1, + anon_sym_for, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3158), 1, anon_sym_or, + ACTIONS(3160), 1, + anon_sym_PLUS, + STATE(2651), 1, + sym_for_in_clause, + STATE(2867), 1, + aux_sym__collection_elements_repeat1, + STATE(3069), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 7, + [149107] = 14, + ACTIONS(3146), 1, anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_then, - [148444] = 4, - ACTIONS(3168), 1, + ACTIONS(3150), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_RBRACK, + ACTIONS(3154), 1, + anon_sym_for, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, anon_sym_PLUS, + STATE(2651), 1, + sym_for_in_clause, + STATE(2867), 1, + aux_sym__collection_elements_repeat1, + STATE(3139), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1391), 11, - anon_sym_DOT, + [149153] = 9, + ACTIONS(3162), 1, + anon_sym_PLUS, + ACTIONS(3188), 1, anon_sym_as, + ACTIONS(3190), 1, anon_sym_if, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1567), 5, anon_sym_COLON, anon_sym_else, anon_sym_EQ, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [148469] = 4, - ACTIONS(3168), 1, + [149188] = 7, + ACTIONS(3162), 1, anon_sym_PLUS, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 11, - anon_sym_DOT, + ACTIONS(1550), 7, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [148494] = 9, - ACTIONS(3168), 1, + [149219] = 10, + ACTIONS(3134), 1, anon_sym_PLUS, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3138), 1, anon_sym_if, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3198), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1455), 5, + ACTIONS(3196), 3, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PLUS_EQ, - anon_sym_then, - [148529] = 4, - ACTIONS(3142), 1, + [149255] = 7, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 10, - anon_sym_DOT, + ACTIONS(1550), 6, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [148553] = 8, - ACTIONS(2179), 1, - anon_sym_not, - ACTIONS(2197), 1, - anon_sym_is, - ACTIONS(3180), 1, - anon_sym_EQ, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2195), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3178), 2, - anon_sym_COLON, - anon_sym_PLUS_EQ, - ACTIONS(2171), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [148585] = 12, - ACTIONS(3128), 1, + [149285] = 12, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3182), 1, + ACTIONS(3200), 1, anon_sym_COMMA, - ACTIONS(3184), 1, + ACTIONS(3202), 1, anon_sym_COLON, - ACTIONS(3186), 1, + ACTIONS(3204), 1, anon_sym_RBRACK, - STATE(2874), 1, + STATE(2784), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148625] = 12, - ACTIONS(3128), 1, + [149325] = 10, + ACTIONS(3134), 1, + anon_sym_PLUS, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, ACTIONS(3138), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3140), 1, - anon_sym_or, + anon_sym_and, ACTIONS(3142), 1, - anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3188), 1, - anon_sym_COMMA, - ACTIONS(3190), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + anon_sym_or, + ACTIONS(3206), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148665] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3120), 1, + ACTIONS(3196), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [149361] = 10, + ACTIONS(3134), 1, anon_sym_PLUS, - ACTIONS(3124), 1, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3194), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3208), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(3196), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [148701] = 12, - ACTIONS(3128), 1, + [149397] = 12, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3184), 1, + ACTIONS(3202), 1, anon_sym_COLON, - ACTIONS(3196), 1, + ACTIONS(3210), 1, anon_sym_COMMA, - ACTIONS(3198), 1, + ACTIONS(3212), 1, anon_sym_RBRACK, - STATE(2770), 1, + STATE(2847), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148741] = 12, - ACTIONS(3128), 1, + [149437] = 12, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3184), 1, + ACTIONS(3202), 1, anon_sym_COLON, - ACTIONS(3200), 1, + ACTIONS(3214), 1, anon_sym_COMMA, - ACTIONS(3202), 1, + ACTIONS(3216), 1, anon_sym_RBRACK, - STATE(2742), 1, + STATE(2864), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148781] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3120), 1, + [149477] = 10, + ACTIONS(3134), 1, anon_sym_PLUS, - ACTIONS(3124), 1, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3204), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3218), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(3196), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [148817] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3120), 1, + [149513] = 10, + ACTIONS(3134), 1, anon_sym_PLUS, - ACTIONS(3124), 1, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3206), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3220), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(3196), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [148853] = 12, - ACTIONS(3128), 1, + [149549] = 8, + ACTIONS(2203), 1, + anon_sym_not, + ACTIONS(2207), 1, + anon_sym_is, + ACTIONS(3224), 1, + anon_sym_EQ, + STATE(2228), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2205), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3222), 2, + anon_sym_COLON, + anon_sym_PLUS_EQ, + ACTIONS(2201), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [149581] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3208), 1, - anon_sym_COMMA, - ACTIONS(3210), 1, - anon_sym_RBRACK, - STATE(2751), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [148893] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3120), 1, + ACTIONS(1567), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + [149615] = 4, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(1422), 10, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [148929] = 4, - ACTIONS(3142), 1, + anon_sym_RBRACK, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [149639] = 4, + ACTIONS(3160), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1391), 10, + ACTIONS(1291), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -150033,96 +151020,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [148953] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3120), 1, + [149663] = 10, + ACTIONS(3134), 1, anon_sym_PLUS, - ACTIONS(3124), 1, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3214), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3226), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(3196), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [148989] = 9, - ACTIONS(3128), 1, + [149699] = 12, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, + ACTIONS(3202), 1, + anon_sym_COLON, + ACTIONS(3228), 1, + anon_sym_COMMA, + ACTIONS(3230), 1, + anon_sym_RBRACK, + STATE(2766), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1455), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - [149023] = 10, - ACTIONS(3116), 1, + [149739] = 12, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3120), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3124), 1, + ACTIONS(3202), 1, + anon_sym_COLON, + ACTIONS(3232), 1, + anon_sym_COMMA, + ACTIONS(3234), 1, + anon_sym_RBRACK, + STATE(2767), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [149779] = 10, + ACTIONS(3134), 1, + anon_sym_PLUS, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3216), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3236), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(3196), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [149059] = 5, - STATE(663), 1, + [149815] = 5, + STATE(832), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 2, + ACTIONS(1323), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3218), 2, + ACTIONS(3238), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1589), 8, + ACTIONS(1325), 8, sym_string_start, anon_sym_in, anon_sym_not, @@ -150131,1942 +151149,2182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [149085] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3120), 1, + [149841] = 10, + ACTIONS(3134), 1, anon_sym_PLUS, - ACTIONS(3124), 1, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3220), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3240), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(3196), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [149121] = 4, - ACTIONS(3142), 1, + [149877] = 10, + ACTIONS(3134), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1387), 10, - anon_sym_DOT, + ACTIONS(3136), 1, anon_sym_as, + ACTIONS(3138), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [149145] = 10, - ACTIONS(3116), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3120), 1, - anon_sym_PLUS, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3222), 1, + ACTIONS(3242), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(3196), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [149181] = 7, - ACTIONS(3138), 1, + [149913] = 12, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, + ACTIONS(3202), 1, + anon_sym_COLON, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RBRACK, + STATE(2886), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [149953] = 4, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 6, + ACTIONS(1430), 10, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_for, - [149211] = 12, - ACTIONS(3128), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [149977] = 8, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(3224), 1, + anon_sym_EQ, + STATE(2210), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3222), 2, + anon_sym_COLON, + anon_sym_PLUS_EQ, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [150009] = 12, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3184), 1, + ACTIONS(3202), 1, anon_sym_COLON, - ACTIONS(3224), 1, + ACTIONS(3248), 1, anon_sym_COMMA, - ACTIONS(3226), 1, + ACTIONS(3250), 1, anon_sym_RBRACK, - STATE(2847), 1, + STATE(2868), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149251] = 10, - ACTIONS(3116), 1, + [150049] = 12, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3120), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3124), 1, + ACTIONS(3202), 1, + anon_sym_COLON, + ACTIONS(3252), 1, + anon_sym_COMMA, + ACTIONS(3254), 1, + anon_sym_RBRACK, + STATE(2899), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150089] = 12, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3228), 1, - anon_sym_RBRACE, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3202), 1, + anon_sym_COLON, + ACTIONS(3256), 1, + anon_sym_COMMA, + ACTIONS(3258), 1, + anon_sym_RBRACK, + STATE(2777), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149287] = 8, - ACTIONS(2115), 1, + [150129] = 8, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - ACTIONS(3180), 1, - anon_sym_EQ, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, + STATE(2950), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3178), 2, - anon_sym_COLON, - anon_sym_PLUS_EQ, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [149319] = 12, - ACTIONS(3128), 1, + [150160] = 8, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + STATE(2210), 1, + aux_sym_comparison_operator_repeat1, + STATE(2930), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [150191] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, - ACTIONS(3138), 1, - anon_sym_and, ACTIONS(3140), 1, - anon_sym_or, + anon_sym_and, ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3262), 1, + anon_sym_COMMA, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3230), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(3260), 3, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_for, + [150224] = 11, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3270), 1, anon_sym_COMMA, - ACTIONS(3232), 1, - anon_sym_RBRACK, - STATE(2765), 1, - aux_sym_subscript_repeat1, + ACTIONS(3272), 1, + anon_sym_RPAREN, + ACTIONS(3274), 1, + anon_sym_and, + ACTIONS(3276), 1, + anon_sym_or, + ACTIONS(3278), 1, + anon_sym_PLUS, + STATE(2871), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149359] = 12, - ACTIONS(3128), 1, + [150261] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3234), 1, - anon_sym_COMMA, - ACTIONS(3236), 1, - anon_sym_RBRACK, - STATE(2773), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149399] = 12, - ACTIONS(3128), 1, + ACTIONS(1567), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + [150294] = 11, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3238), 1, + ACTIONS(3290), 1, anon_sym_COMMA, - ACTIONS(3240), 1, - anon_sym_RBRACK, - STATE(2762), 1, - aux_sym_subscript_repeat1, + ACTIONS(3292), 1, + anon_sym_RPAREN, + STATE(2765), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149439] = 11, - ACTIONS(3242), 1, + [150331] = 11, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3246), 1, - anon_sym_COMMA, - ACTIONS(3248), 1, - anon_sym_else, - ACTIONS(3250), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3256), 1, - sym__newline, + ACTIONS(3294), 1, + anon_sym_COMMA, + ACTIONS(3296), 1, + anon_sym_RPAREN, + STATE(2888), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149476] = 4, - ACTIONS(3254), 1, + [150368] = 8, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + STATE(2210), 1, + aux_sym_comparison_operator_repeat1, + STATE(2951), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [150399] = 7, + ACTIONS(3284), 1, + anon_sym_and, + ACTIONS(3286), 1, + anon_sym_or, + ACTIONS(3288), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1391), 9, + ACTIONS(1550), 5, sym__newline, - anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [149499] = 11, - ACTIONS(3258), 1, + [150428] = 8, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + STATE(2210), 1, + aux_sym_comparison_operator_repeat1, + STATE(2943), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [150459] = 11, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3262), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - anon_sym_RPAREN, - ACTIONS(3266), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - STATE(2764), 1, + ACTIONS(3298), 1, + anon_sym_COMMA, + ACTIONS(3300), 1, + anon_sym_RPAREN, + STATE(2903), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149536] = 8, - ACTIONS(431), 1, + [150496] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2925), 1, + STATE(2938), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [149567] = 9, - ACTIONS(3272), 1, + [150527] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3274), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3278), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3280), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3282), 1, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3276), 3, + ACTIONS(2792), 3, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [149600] = 8, - ACTIONS(431), 1, + anon_sym_RBRACE, + anon_sym_for, + [150560] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2914), 1, + STATE(2963), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [149631] = 4, - ACTIONS(3254), 1, + [150591] = 10, + ACTIONS(872), 1, + anon_sym_COLON, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(870), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150626] = 9, + ACTIONS(3302), 1, + anon_sym_as, + ACTIONS(3304), 1, + anon_sym_if, + ACTIONS(3306), 1, + anon_sym_and, + ACTIONS(3308), 1, + anon_sym_or, + ACTIONS(3310), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1567), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [150659] = 10, + ACTIONS(1567), 1, + anon_sym_LF, + ACTIONS(3312), 1, + anon_sym_as, + ACTIONS(3314), 1, + anon_sym_if, + ACTIONS(3316), 1, + anon_sym_and, + ACTIONS(3318), 1, + anon_sym_or, + ACTIONS(3320), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(938), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1569), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150694] = 9, + ACTIONS(3302), 1, + anon_sym_as, + ACTIONS(3304), 1, + anon_sym_if, + ACTIONS(3306), 1, + anon_sym_and, + ACTIONS(3308), 1, + anon_sym_or, + ACTIONS(3310), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 9, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3322), 3, anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [149654] = 8, - ACTIONS(431), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [150727] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2964), 1, + STATE(2926), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [149685] = 8, - ACTIONS(431), 1, + [150758] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2942), 1, + STATE(2967), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [149716] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(2185), 1, - aux_sym_comparison_operator_repeat1, - STATE(2926), 1, - sym_string, + [150789] = 4, + ACTIONS(3288), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [149747] = 9, - ACTIONS(3272), 1, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1422), 9, + sym__newline, + anon_sym_DOT, anon_sym_as, - ACTIONS(3274), 1, anon_sym_if, - ACTIONS(3278), 1, + anon_sym_COMMA, + anon_sym_else, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3280), 1, anon_sym_or, - ACTIONS(3282), 1, + [150812] = 11, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, + anon_sym_and, + ACTIONS(3276), 1, + anon_sym_or, + ACTIONS(3278), 1, anon_sym_PLUS, + ACTIONS(3324), 1, + anon_sym_COMMA, + ACTIONS(3326), 1, + anon_sym_RPAREN, + STATE(2787), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1455), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [149780] = 8, - ACTIONS(431), 1, + [150849] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2953), 1, + STATE(2927), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [149811] = 10, - ACTIONS(3128), 1, + [150880] = 11, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3278), 1, anon_sym_PLUS, + ACTIONS(3328), 1, + anon_sym_COMMA, + ACTIONS(3330), 1, + anon_sym_RPAREN, + STATE(2862), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(784), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150917] = 11, + ACTIONS(3280), 1, + anon_sym_as, + ACTIONS(3282), 1, + anon_sym_if, ACTIONS(3284), 1, - anon_sym_COLON, + anon_sym_and, + ACTIONS(3286), 1, + anon_sym_or, + ACTIONS(3288), 1, + anon_sym_PLUS, + ACTIONS(3332), 1, + anon_sym_COMMA, + ACTIONS(3334), 1, + anon_sym_else, + ACTIONS(3336), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1020), 2, + STATE(1508), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150954] = 9, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3338), 1, anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(3260), 3, + anon_sym_if, anon_sym_RBRACK, - STATE(1413), 2, + anon_sym_for, + [150987] = 4, + ACTIONS(3288), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149846] = 8, - ACTIONS(431), 1, + ACTIONS(1291), 9, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [151010] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2933), 1, + STATE(2932), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [149877] = 10, - ACTIONS(3128), 1, + [151041] = 10, + ACTIONS(2772), 1, + anon_sym_LF, + ACTIONS(3312), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3314), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3316), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3318), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3320), 1, anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(938), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3286), 2, + ACTIONS(2766), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1413), 2, + anon_sym_RBRACE, + STATE(1569), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149912] = 5, - ACTIONS(1391), 1, - anon_sym_LF, - ACTIONS(3288), 1, + [151076] = 10, + ACTIONS(3312), 1, + anon_sym_as, + ACTIONS(3314), 1, + anon_sym_if, + ACTIONS(3316), 1, + anon_sym_and, + ACTIONS(3318), 1, + anon_sym_or, + ACTIONS(3320), 1, anon_sym_PLUS, + ACTIONS(3342), 1, + anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, + ACTIONS(938), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(3340), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1569), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1393), 8, + [151111] = 7, + ACTIONS(3306), 1, + anon_sym_and, + ACTIONS(3308), 1, + anon_sym_or, + ACTIONS(3310), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1550), 5, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [151140] = 10, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3156), 1, anon_sym_and, + ACTIONS(3158), 1, anon_sym_or, - [149937] = 11, - ACTIONS(3258), 1, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3344), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1176), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [151175] = 11, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3290), 1, + ACTIONS(3346), 1, anon_sym_COMMA, - ACTIONS(3292), 1, + ACTIONS(3348), 1, anon_sym_RPAREN, - STATE(2868), 1, + STATE(2773), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149974] = 8, - ACTIONS(431), 1, + [151212] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2951), 1, + STATE(2931), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [150005] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(2185), 1, - aux_sym_comparison_operator_repeat1, - STATE(2954), 1, - sym_string, + [151243] = 4, + ACTIONS(3310), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150036] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(2185), 1, - aux_sym_comparison_operator_repeat1, - STATE(2950), 1, - sym_string, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1422), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [151266] = 11, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, + anon_sym_and, + ACTIONS(3276), 1, + anon_sym_or, + ACTIONS(3278), 1, + anon_sym_PLUS, + ACTIONS(3350), 1, + anon_sym_COMMA, + ACTIONS(3352), 1, + anon_sym_RPAREN, + STATE(2848), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150067] = 8, - ACTIONS(431), 1, + ACTIONS(784), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [151303] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2932), 1, + STATE(2969), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [150098] = 5, - ACTIONS(1381), 1, - anon_sym_LF, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1383), 8, - anon_sym_DOT, + [151334] = 9, + ACTIONS(3302), 1, anon_sym_as, + ACTIONS(3304), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, + ACTIONS(3306), 1, anon_sym_and, + ACTIONS(3308), 1, anon_sym_or, - [150123] = 9, - ACTIONS(3168), 1, + ACTIONS(3310), 1, anon_sym_PLUS, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3294), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150156] = 5, - ACTIONS(1387), 1, - anon_sym_LF, - ACTIONS(3288), 1, + ACTIONS(3354), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [151367] = 4, + ACTIONS(3310), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1389), 8, + ACTIONS(1291), 9, 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, - [150181] = 8, - ACTIONS(1463), 1, - anon_sym_LF, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3296), 1, + [151390] = 11, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3298), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(5), 2, + ACTIONS(3278), 1, + anon_sym_PLUS, + ACTIONS(3356), 1, + anon_sym_COMMA, + ACTIONS(3358), 1, + anon_sym_RPAREN, + STATE(2788), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1613), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1461), 4, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - [150212] = 8, - ACTIONS(431), 1, + [151427] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2919), 1, + STATE(2940), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [150243] = 8, - ACTIONS(431), 1, + [151458] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2917), 1, + STATE(2970), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [150274] = 10, - ACTIONS(2766), 1, - anon_sym_LF, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3296), 1, - anon_sym_and, - ACTIONS(3298), 1, - anon_sym_or, - ACTIONS(3300), 1, - anon_sym_as, - ACTIONS(3302), 1, - anon_sym_if, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(946), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2760), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150309] = 11, - ACTIONS(3258), 1, - anon_sym_as, - ACTIONS(3260), 1, - anon_sym_if, - ACTIONS(3266), 1, - anon_sym_and, - ACTIONS(3268), 1, - anon_sym_or, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3304), 1, - anon_sym_COMMA, - ACTIONS(3306), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_argument_list_repeat1, + [151489] = 8, + ACTIONS(439), 1, + sym_string_start, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + STATE(2210), 1, + aux_sym_comparison_operator_repeat1, + STATE(2981), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150346] = 8, - ACTIONS(431), 1, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [151520] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2944), 1, + STATE(2939), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [150377] = 10, + [151551] = 4, ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3296), 1, - anon_sym_and, - ACTIONS(3298), 1, - anon_sym_or, - ACTIONS(3300), 1, - anon_sym_as, - ACTIONS(3302), 1, - anon_sym_if, - ACTIONS(3310), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3308), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1613), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150412] = 11, - ACTIONS(3258), 1, + ACTIONS(1430), 9, + sym__newline, + anon_sym_DOT, anon_sym_as, - ACTIONS(3260), 1, anon_sym_if, - ACTIONS(3266), 1, + anon_sym_COMMA, + anon_sym_else, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3268), 1, anon_sym_or, - ACTIONS(3270), 1, + [151574] = 9, + ACTIONS(3162), 1, anon_sym_PLUS, - ACTIONS(3312), 1, - anon_sym_COMMA, - ACTIONS(3314), 1, - anon_sym_RPAREN, - STATE(2778), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(780), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150449] = 10, - ACTIONS(806), 1, - anon_sym_COLON, - ACTIONS(3128), 1, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3142), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(804), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1413), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150484] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(2185), 1, - aux_sym_comparison_operator_repeat1, - STATE(2909), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150515] = 9, - ACTIONS(3272), 1, + ACTIONS(3360), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [151607] = 10, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3274), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3278), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3280), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3282), 1, + ACTIONS(3160), 1, anon_sym_PLUS, + ACTIONS(3202), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + ACTIONS(3362), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3316), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [150548] = 8, - ACTIONS(431), 1, + [151642] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2903), 1, + STATE(2971), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [150579] = 10, - ACTIONS(1455), 1, + [151673] = 8, + ACTIONS(1550), 1, anon_sym_LF, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3296), 1, + ACTIONS(3316), 1, anon_sym_and, - ACTIONS(3298), 1, + ACTIONS(3318), 1, anon_sym_or, - ACTIONS(3300), 1, - anon_sym_as, - ACTIONS(3302), 1, - anon_sym_if, + ACTIONS(3320), 1, + anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(946), 2, + ACTIONS(938), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1449), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150614] = 4, - ACTIONS(3282), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1173), 2, + STATE(1569), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 9, - anon_sym_DOT, + ACTIONS(1548), 4, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [150637] = 9, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, - anon_sym_and, - ACTIONS(3252), 1, - anon_sym_or, - ACTIONS(3254), 1, + anon_sym_RBRACE, + [151704] = 5, + ACTIONS(1291), 1, + anon_sym_LF, + ACTIONS(3320), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1569), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1455), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - [150670] = 11, - ACTIONS(3258), 1, + ACTIONS(1289), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(3260), 1, anon_sym_if, - ACTIONS(3266), 1, - anon_sym_and, - ACTIONS(3268), 1, - anon_sym_or, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3318), 1, anon_sym_COMMA, - ACTIONS(3320), 1, - anon_sym_RPAREN, - STATE(2732), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(780), 2, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150707] = 11, - ACTIONS(3258), 1, - anon_sym_as, - ACTIONS(3260), 1, - anon_sym_if, - ACTIONS(3266), 1, anon_sym_and, - ACTIONS(3268), 1, anon_sym_or, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3322), 1, - anon_sym_COMMA, - ACTIONS(3324), 1, - anon_sym_RPAREN, - STATE(2746), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(780), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150744] = 8, - ACTIONS(431), 1, + [151729] = 8, + ACTIONS(439), 1, sym_string_start, - ACTIONS(2115), 1, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2119), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2185), 1, + STATE(2210), 1, aux_sym_comparison_operator_repeat1, - STATE(2902), 1, + STATE(2942), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2113), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [150775] = 9, - ACTIONS(3168), 1, + [151760] = 4, + ACTIONS(3310), 1, anon_sym_PLUS, - ACTIONS(3170), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1430), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3172), 1, anon_sym_or, - ACTIONS(3174), 1, + [151783] = 9, + ACTIONS(3162), 1, + anon_sym_PLUS, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3192), 3, + ACTIONS(3196), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [150808] = 7, - ACTIONS(3278), 1, - anon_sym_and, - ACTIONS(3280), 1, - anon_sym_or, - ACTIONS(3282), 1, + [151816] = 5, + ACTIONS(1422), 1, + anon_sym_LF, + ACTIONS(3320), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1424), 8, anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_QMARK_DOT, - STATE(1173), 2, + anon_sym_and, + anon_sym_or, + [151841] = 5, + ACTIONS(1430), 1, + anon_sym_LF, + ACTIONS(3320), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(1569), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 5, + ACTIONS(1428), 8, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [150837] = 11, - ACTIONS(3258), 1, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [151866] = 9, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(3328), 1, - anon_sym_RPAREN, - STATE(2752), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + ACTIONS(3364), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150874] = 9, - ACTIONS(3128), 1, + [151898] = 10, + ACTIONS(3136), 1, anon_sym_as, ACTIONS(3138), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3140), 1, - anon_sym_or, + anon_sym_and, ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3332), 1, - anon_sym_COMMA, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3368), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3330), 3, + [151932] = 10, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [150907] = 9, - ACTIONS(3116), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3370), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2774), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_for, - [150940] = 9, - ACTIONS(3116), 1, + [151966] = 10, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, + anon_sym_if, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3336), 1, - anon_sym_COMMA, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3372), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3330), 3, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_for, - [150973] = 11, - ACTIONS(3258), 1, + [152000] = 9, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3376), 1, + anon_sym_LBRACE, + ACTIONS(3378), 1, + sym_integer, + ACTIONS(3380), 1, + sym_float, + STATE(3218), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3099), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [152032] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3338), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, - anon_sym_RPAREN, - STATE(2744), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3382), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151010] = 7, - ACTIONS(3250), 1, + [152066] = 9, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, + anon_sym_if, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3160), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + ACTIONS(3384), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 5, - sym__newline, + [152098] = 7, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LBRACK, + ACTIONS(3390), 1, + anon_sym_LBRACE, + STATE(3219), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3095), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [152126] = 9, + ACTIONS(958), 1, + sym_string_start, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(3392), 1, + sym_identifier, + ACTIONS(3394), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + sym_integer, + ACTIONS(3398), 1, + sym_float, + STATE(2915), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2910), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [152158] = 7, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LBRACK, + ACTIONS(3390), 1, + anon_sym_LBRACE, + STATE(3223), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3095), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [152186] = 10, + ACTIONS(3136), 1, anon_sym_as, + ACTIONS(3138), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - [151039] = 4, - ACTIONS(3282), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3400), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 9, - anon_sym_DOT, + [152220] = 9, + ACTIONS(3146), 1, anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, + ACTIONS(3156), 1, anon_sym_and, + ACTIONS(3158), 1, anon_sym_or, - [151062] = 4, - ACTIONS(3282), 1, + ACTIONS(3160), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1391), 9, + ACTIONS(533), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151085] = 11, - ACTIONS(3258), 1, + ACTIONS(3402), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [152252] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_RPAREN, - STATE(2838), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3404), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151122] = 4, - ACTIONS(3254), 1, + [152286] = 7, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LBRACK, + ACTIONS(3390), 1, + anon_sym_LBRACE, + STATE(3171), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3095), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [152314] = 4, + ACTIONS(3278), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 9, - sym__newline, + ACTIONS(1430), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [151145] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(2185), 1, - aux_sym_comparison_operator_repeat1, - STATE(2908), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151176] = 7, - ACTIONS(467), 1, + [152336] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3195), 1, + STATE(3220), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [151204] = 9, - ACTIONS(3128), 1, + [152364] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, ACTIONS(3138), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3140), 1, - anon_sym_or, - ACTIONS(3142), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3352), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151236] = 10, - ACTIONS(3116), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, + ACTIONS(3366), 1, anon_sym_else, - ACTIONS(3356), 1, + ACTIONS(3406), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151270] = 7, - ACTIONS(467), 1, + [152398] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3147), 1, + STATE(3227), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [151298] = 8, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + [152426] = 9, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3376), 1, + anon_sym_LBRACE, + ACTIONS(3378), 1, + sym_integer, + ACTIONS(3380), 1, + sym_float, + STATE(3148), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3099), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [152458] = 4, + ACTIONS(3278), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3358), 3, + ACTIONS(1291), 8, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - anon_sym_RBRACE, - anon_sym_for, - [151328] = 7, - ACTIONS(467), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [152480] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(2982), 1, + STATE(3224), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [151356] = 10, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3250), 1, + [152508] = 9, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3408), 1, + anon_sym_as, + ACTIONS(3410), 1, + anon_sym_if, + ACTIONS(3412), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3360), 1, - anon_sym_if, - ACTIONS(3362), 1, - anon_sym_COMMA, - ACTIONS(3364), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151390] = 4, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1646), 2, + ACTIONS(3322), 2, + anon_sym_COLON, + anon_sym_LPAREN, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1391), 8, - anon_sym_DOT, + [152540] = 9, + ACTIONS(3146), 1, anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151412] = 10, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3250), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_if, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + ACTIONS(1152), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151446] = 7, - ACTIONS(467), 1, + [152572] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3208), 1, + STATE(3228), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [151474] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [152600] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3372), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + ACTIONS(2772), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151508] = 10, - ACTIONS(3116), 1, + [152632] = 8, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3374), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151542] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + ACTIONS(3416), 3, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_for, + [152662] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, + ACTIONS(3366), 1, anon_sym_else, - ACTIONS(3376), 1, + ACTIONS(3418), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151576] = 8, - ACTIONS(3128), 1, + [152696] = 10, + ACTIONS(3136), 1, anon_sym_as, ACTIONS(3138), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3140), 1, - anon_sym_or, + anon_sym_and, ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3420), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3358), 3, + [152730] = 10, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [151606] = 10, - ACTIONS(3116), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, + ACTIONS(3366), 1, anon_sym_else, - ACTIONS(3378), 1, + ACTIONS(3422), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151640] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3380), 1, - sym_identifier, - ACTIONS(3382), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - sym_integer, - ACTIONS(3386), 1, - sym_float, - STATE(3041), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3228), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [151672] = 10, - ACTIONS(3116), 1, + [152764] = 7, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3388), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151706] = 10, - ACTIONS(3242), 1, + ACTIONS(1550), 4, anon_sym_as, - ACTIONS(3250), 1, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + [152792] = 10, + ACTIONS(3280), 1, + anon_sym_as, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3390), 1, + ACTIONS(3424), 1, anon_sym_if, - ACTIONS(3392), 1, + ACTIONS(3426), 1, anon_sym_COMMA, - ACTIONS(3394), 1, + ACTIONS(3428), 1, sym__newline, ACTIONS(3), 2, sym_comment, @@ -152074,1417 +153332,1080 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151740] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2766), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1210), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151772] = 7, - ACTIONS(2406), 1, - anon_sym_not, - ACTIONS(2422), 1, - anon_sym_is, - ACTIONS(3396), 1, - sym__newline, - STATE(2233), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2420), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2398), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151800] = 7, - ACTIONS(467), 1, + [152826] = 9, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3348), 1, - anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3376), 1, anon_sym_LBRACE, - STATE(3183), 1, - sym_quant_target, + ACTIONS(3378), 1, + sym_integer, + ACTIONS(3380), 1, + sym_float, + STATE(3084), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3099), 4, + sym_dotted_name, + sym_paren_expression, sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, sym_string, - [151828] = 7, - ACTIONS(467), 1, + [152858] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3184), 1, + STATE(3216), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [151856] = 7, - ACTIONS(467), 1, + [152886] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3187), 1, + STATE(3215), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [151884] = 9, - ACTIONS(3128), 1, + [152914] = 9, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3408), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3410), 1, anon_sym_if, - ACTIONS(3138), 1, - anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3412), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3414), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3398), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1413), 2, + ACTIONS(1567), 2, + anon_sym_COLON, + anon_sym_LPAREN, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151916] = 7, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(3346), 1, - sym_identifier, - ACTIONS(3348), 1, - anon_sym_LBRACK, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(3188), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3009), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [151944] = 9, - ACTIONS(3128), 1, - anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, - ACTIONS(3138), 1, + [152946] = 7, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3412), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3414), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(884), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1413), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151976] = 7, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(3346), 1, - sym_identifier, - ACTIONS(3348), 1, - anon_sym_LBRACK, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(3191), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3009), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152004] = 7, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(3346), 1, - sym_identifier, - ACTIONS(3348), 1, - anon_sym_LBRACK, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(3192), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3009), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152032] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + ACTIONS(1550), 4, anon_sym_as, - ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3334), 1, + anon_sym_COLON, + anon_sym_LPAREN, + [152974] = 10, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, + anon_sym_if, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, + ACTIONS(3366), 1, anon_sym_else, - ACTIONS(3400), 1, + ACTIONS(3430), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152066] = 9, - ACTIONS(3128), 1, + [153008] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, ACTIONS(3138), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3140), 1, - anon_sym_or, + anon_sym_and, ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3432), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3402), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152098] = 10, - ACTIONS(3116), 1, + [153042] = 9, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + ACTIONS(3408), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3410), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3412), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3404), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + ACTIONS(3354), 2, + anon_sym_COLON, + anon_sym_LPAREN, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152132] = 7, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(3346), 1, - sym_identifier, - ACTIONS(3348), 1, - anon_sym_LBRACK, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(3151), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3009), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152160] = 7, - ACTIONS(467), 1, + [153074] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3196), 1, + STATE(3091), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [152188] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [153102] = 9, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3274), 1, + anon_sym_and, + ACTIONS(3276), 1, + anon_sym_or, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3406), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + ACTIONS(1567), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152222] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3380), 1, - sym_identifier, - ACTIONS(3382), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - sym_integer, - ACTIONS(3386), 1, - sym_float, - STATE(3077), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3228), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [152254] = 9, - ACTIONS(3258), 1, + [153134] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3160), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1455), 2, + ACTIONS(3434), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1646), 2, + anon_sym_RBRACK, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152286] = 10, - ACTIONS(3116), 1, + [153166] = 10, + ACTIONS(3280), 1, + anon_sym_as, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3408), 1, - anon_sym_RBRACE, + ACTIONS(3436), 1, + anon_sym_if, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3440), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152320] = 9, - ACTIONS(3258), 1, + [153200] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3442), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3410), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1646), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152352] = 7, - ACTIONS(467), 1, + [153234] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3152), 1, + STATE(3225), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [152380] = 9, - ACTIONS(3258), 1, + [153262] = 7, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LBRACK, + ACTIONS(3390), 1, + anon_sym_LBRACE, + STATE(3203), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3095), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [153290] = 7, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LBRACK, + ACTIONS(3390), 1, + anon_sym_LBRACE, + STATE(3167), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3095), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [153318] = 9, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3278), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3412), 2, + ACTIONS(3444), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1646), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152412] = 9, - ACTIONS(3128), 1, - anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, - ACTIONS(3138), 1, - anon_sym_and, - ACTIONS(3140), 1, - anon_sym_or, - ACTIONS(3142), 1, - anon_sym_PLUS, + [153350] = 7, + ACTIONS(475), 1, + sym_string_start, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LBRACK, + ACTIONS(3390), 1, + anon_sym_LBRACE, + STATE(3212), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1020), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152444] = 9, + STATE(3095), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [153378] = 9, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3382), 1, + ACTIONS(3376), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_integer, - ACTIONS(3386), 1, + ACTIONS(3380), 1, sym_float, - STATE(3259), 1, + STATE(3265), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3228), 4, + STATE(3099), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [152476] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [153410] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, + ACTIONS(3366), 1, anon_sym_else, - ACTIONS(3414), 1, + ACTIONS(3446), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152510] = 9, + [153444] = 7, + ACTIONS(2349), 1, + anon_sym_not, + ACTIONS(2365), 1, + anon_sym_is, + ACTIONS(3448), 1, + sym__newline, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2363), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2341), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [153472] = 9, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3382), 1, + ACTIONS(3376), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_integer, - ACTIONS(3386), 1, + ACTIONS(3380), 1, sym_float, - STATE(3251), 1, + STATE(3267), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3228), 4, + STATE(3099), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [152542] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [153504] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3416), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152576] = 7, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(3346), 1, - sym_identifier, - ACTIONS(3348), 1, - anon_sym_LBRACK, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(3199), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3009), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152604] = 10, - ACTIONS(3116), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, + ACTIONS(3366), 1, anon_sym_else, - ACTIONS(3418), 1, + ACTIONS(3450), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152638] = 7, - ACTIONS(3266), 1, + [153538] = 8, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(3416), 3, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_for, + [153568] = 9, + ACTIONS(3146), 1, anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - [152666] = 10, - ACTIONS(3116), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3420), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152700] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3380), 1, - sym_identifier, - ACTIONS(3382), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - sym_integer, - ACTIONS(3386), 1, - sym_float, - STATE(3248), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3228), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [152732] = 4, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1646), 2, + ACTIONS(1176), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 8, - anon_sym_DOT, + [153600] = 10, + ACTIONS(3136), 1, anon_sym_as, + ACTIONS(3138), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [152754] = 10, - ACTIONS(3116), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, + ACTIONS(3366), 1, anon_sym_else, - ACTIONS(3422), 1, + ACTIONS(3452), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152788] = 7, - ACTIONS(467), 1, + [153634] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3200), 1, + STATE(3211), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [152816] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [153662] = 10, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3354), 1, + ACTIONS(3366), 1, anon_sym_else, - ACTIONS(3424), 1, + ACTIONS(3454), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152850] = 9, - ACTIONS(966), 1, - sym_string_start, - ACTIONS(1303), 1, - anon_sym_LPAREN, - ACTIONS(3426), 1, - sym_identifier, - ACTIONS(3428), 1, - anon_sym_LBRACE, - ACTIONS(3430), 1, - sym_integer, - ACTIONS(3432), 1, - sym_float, - STATE(2822), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2731), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [152882] = 10, - ACTIONS(3116), 1, + [153696] = 10, + ACTIONS(3280), 1, + anon_sym_as, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3434), 1, - anon_sym_RBRACE, + ACTIONS(3456), 1, + anon_sym_if, + ACTIONS(3458), 1, + anon_sym_COMMA, + ACTIONS(3460), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152916] = 9, + [153730] = 9, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3382), 1, + ACTIONS(3376), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_integer, - ACTIONS(3386), 1, + ACTIONS(3380), 1, sym_float, - STATE(3089), 1, + STATE(3268), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3228), 4, + STATE(3099), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [152948] = 7, - ACTIONS(467), 1, - sym_string_start, - ACTIONS(3346), 1, - sym_identifier, - ACTIONS(3348), 1, - anon_sym_LBRACK, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(3203), 1, - sym_quant_target, + [153762] = 10, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, + anon_sym_if, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, + anon_sym_PLUS, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3462), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152976] = 7, - ACTIONS(467), 1, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [153796] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, - STATE(3204), 1, + STATE(3208), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153004] = 4, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1381), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [153026] = 7, - ACTIONS(467), 1, + [153824] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3346), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(3388), 1, anon_sym_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3390), 1, anon_sym_LBRACE, STATE(3207), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3009), 6, + STATE(3095), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153054] = 9, + [153852] = 9, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3380), 1, + ACTIONS(3374), 1, sym_identifier, - ACTIONS(3382), 1, + ACTIONS(3376), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3378), 1, sym_integer, - ACTIONS(3386), 1, + ACTIONS(3380), 1, sym_float, - STATE(3245), 1, + STATE(3271), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3228), 4, + STATE(3099), 4, sym_dotted_name, sym_paren_expression, sym_config_expr, sym_string, - [153086] = 10, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3436), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153120] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, + [153884] = 7, + ACTIONS(475), 1, sym_string_start, - ACTIONS(3380), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3382), 1, + ACTIONS(3388), 1, + anon_sym_LBRACK, + ACTIONS(3390), 1, anon_sym_LBRACE, - ACTIONS(3384), 1, - sym_integer, - ACTIONS(3386), 1, - sym_float, - STATE(3093), 1, - sym_test, + STATE(3204), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3228), 4, - sym_dotted_name, - sym_paren_expression, + STATE(3095), 6, sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, sym_string, - [153152] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153183] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3442), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153214] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3276), 1, - anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_PLUS, + [153912] = 9, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3376), 1, + anon_sym_LBRACE, + ACTIONS(3378), 1, + sym_integer, + ACTIONS(3380), 1, + sym_float, + STATE(3156), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153245] = 9, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, - anon_sym_and, - ACTIONS(3252), 1, - anon_sym_or, - ACTIONS(3254), 1, + STATE(3099), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [153944] = 4, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3444), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153276] = 9, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, - anon_sym_and, - ACTIONS(3252), 1, - anon_sym_or, - ACTIONS(3254), 1, - anon_sym_PLUS, - ACTIONS(3446), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1422), 8, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1565), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153307] = 6, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(2185), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [153332] = 9, - ACTIONS(3258), 1, anon_sym_as, - ACTIONS(3260), 1, anon_sym_if, - ACTIONS(3266), 1, - anon_sym_and, - ACTIONS(3268), 1, - anon_sym_or, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(780), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153363] = 9, - ACTIONS(3116), 1, anon_sym_and, - ACTIONS(3118), 1, anon_sym_or, - ACTIONS(3124), 1, + [153966] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3450), 1, + ACTIONS(3464), 1, anon_sym_if, - ACTIONS(3452), 1, + ACTIONS(3466), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153394] = 9, - ACTIONS(3116), 1, + [153997] = 9, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3454), 1, - anon_sym_if, - ACTIONS(3456), 1, - anon_sym_RBRACE, + ACTIONS(3468), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153425] = 9, - ACTIONS(3128), 1, + [154028] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3458), 1, - anon_sym_RBRACK, + ACTIONS(3470), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153456] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [154059] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3460), 1, + ACTIONS(3472), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153487] = 9, - ACTIONS(3258), 1, + [154090] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3462), 1, - anon_sym_RPAREN, + ACTIONS(3474), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153518] = 6, - ACTIONS(2290), 1, + [154121] = 6, + ACTIONS(2052), 1, anon_sym_not, - ACTIONS(2294), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2220), 1, + STATE(1285), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2292), 2, + ACTIONS(2068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2288), 5, + ACTIONS(2044), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [153543] = 9, - ACTIONS(3258), 1, + [154146] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3464), 1, - anon_sym_RPAREN, + ACTIONS(3476), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153574] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3466), 1, - anon_sym_RBRACE, + [154177] = 6, + ACTIONS(2052), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + STATE(2210), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153605] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3468), 1, - anon_sym_RBRACE, + ACTIONS(2068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154202] = 6, + ACTIONS(2263), 1, + anon_sym_not, + ACTIONS(2267), 1, + anon_sym_is, + STATE(1580), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153636] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(2265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2261), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154227] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3470), 1, + ACTIONS(3478), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153667] = 9, - ACTIONS(3242), 1, + [154258] = 6, + ACTIONS(3480), 1, + anon_sym_not, + ACTIONS(3482), 1, + anon_sym_is, + STATE(1202), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1921), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154283] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3256), 1, + ACTIONS(3484), 1, sym__newline, ACTIONS(3), 2, sym_comment, @@ -153492,43 +154413,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153698] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [154314] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3472), 1, - anon_sym_else, + ACTIONS(3486), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153729] = 9, - ACTIONS(3242), 1, + [154345] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3370), 1, + ACTIONS(3448), 1, sym__newline, ACTIONS(3), 2, sym_comment, @@ -153536,1654 +154457,1553 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153760] = 9, - ACTIONS(3116), 1, + [154376] = 9, + ACTIONS(3188), 1, + anon_sym_as, + ACTIONS(3190), 1, + anon_sym_if, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3474), 1, - anon_sym_if, - ACTIONS(3476), 1, - anon_sym_RBRACE, + ACTIONS(3488), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153791] = 9, - ACTIONS(3116), 1, + [154407] = 9, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3478), 1, - anon_sym_if, - ACTIONS(3480), 1, - anon_sym_RBRACE, + ACTIONS(3490), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153822] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3482), 1, - anon_sym_if, - ACTIONS(3484), 1, - anon_sym_RBRACE, + [154438] = 6, + ACTIONS(2349), 1, + anon_sym_not, + ACTIONS(2365), 1, + anon_sym_is, + STATE(1645), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153853] = 6, - ACTIONS(2527), 1, + ACTIONS(2363), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2341), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154463] = 6, + ACTIONS(2263), 1, anon_sym_not, - ACTIONS(2543), 1, + ACTIONS(2267), 1, anon_sym_is, - STATE(2237), 1, + STATE(2233), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 2, + ACTIONS(2265), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 5, + ACTIONS(2261), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [153878] = 9, - ACTIONS(3258), 1, + [154488] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3486), 1, - anon_sym_RPAREN, + ACTIONS(3492), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153909] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [154519] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3488), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3490), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153940] = 9, - ACTIONS(3116), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3492), 1, - anon_sym_if, ACTIONS(3494), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153971] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [154550] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, anon_sym_PLUS, ACTIONS(3496), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154002] = 6, - ACTIONS(2042), 1, + [154581] = 6, + ACTIONS(2544), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2560), 1, anon_sym_is, - STATE(2047), 1, + STATE(1901), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(2558), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1528), 5, + ACTIONS(2536), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154027] = 9, - ACTIONS(3116), 1, + [154606] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3498), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154058] = 9, - ACTIONS(3128), 1, - anon_sym_as, - ACTIONS(3130), 1, anon_sym_if, - ACTIONS(3138), 1, - anon_sym_and, - ACTIONS(3140), 1, - anon_sym_or, - ACTIONS(3142), 1, - anon_sym_PLUS, ACTIONS(3500), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154089] = 9, - ACTIONS(3258), 1, - anon_sym_as, - ACTIONS(3260), 1, - anon_sym_if, - ACTIONS(3266), 1, - anon_sym_and, - ACTIONS(3268), 1, - anon_sym_or, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3502), 1, - anon_sym_RPAREN, + [154637] = 6, + ACTIONS(3504), 1, + anon_sym_not, + ACTIONS(3506), 1, + anon_sym_is, + STATE(1820), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154120] = 9, - ACTIONS(3128), 1, + ACTIONS(2427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3502), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154662] = 9, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3138), 1, - anon_sym_and, - ACTIONS(3140), 1, - anon_sym_or, - ACTIONS(3142), 1, - anon_sym_PLUS, - ACTIONS(3504), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1413), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154151] = 9, - ACTIONS(3170), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3506), 1, - anon_sym_else, + ACTIONS(3508), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154182] = 9, - ACTIONS(3170), 1, + [154693] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3508), 1, - anon_sym_else, + ACTIONS(3510), 1, + anon_sym_if, + ACTIONS(3512), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154213] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [154724] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3510), 1, - anon_sym_COLON, + ACTIONS(3514), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154244] = 9, - ACTIONS(3128), 1, + [154755] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, ACTIONS(3138), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3140), 1, - anon_sym_or, + anon_sym_and, ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3512), 1, - anon_sym_RBRACK, + ACTIONS(3516), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154275] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [154786] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3514), 1, + ACTIONS(3518), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154306] = 9, - ACTIONS(3170), 1, + [154817] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, + anon_sym_if, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3264), 1, + anon_sym_PLUS, + ACTIONS(3520), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [154848] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3354), 1, - anon_sym_else, - ACTIONS(3440), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3522), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154337] = 9, - ACTIONS(3170), 1, + [154879] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3248), 1, - anon_sym_else, - ACTIONS(3440), 1, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3524), 1, + anon_sym_if, + ACTIONS(3526), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154368] = 6, - ACTIONS(2406), 1, + [154910] = 6, + ACTIONS(3528), 1, anon_sym_not, - ACTIONS(2422), 1, + ACTIONS(3530), 1, anon_sym_is, - STATE(2233), 1, + STATE(873), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2420), 2, + ACTIONS(1506), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 5, + ACTIONS(1528), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154393] = 9, - ACTIONS(3128), 1, + [154935] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3516), 1, - anon_sym_RBRACK, + ACTIONS(3532), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154424] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [154966] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3518), 1, - anon_sym_RBRACE, + ACTIONS(3534), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154455] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [154997] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3520), 1, - anon_sym_COLON, + ACTIONS(3536), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154486] = 9, - ACTIONS(3116), 1, + [155028] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3522), 1, + ACTIONS(3538), 1, + anon_sym_if, + ACTIONS(3540), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154517] = 6, - ACTIONS(3524), 1, - anon_sym_not, - ACTIONS(3526), 1, - anon_sym_is, - STATE(887), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1403), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154542] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [155059] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3528), 1, - anon_sym_COLON, + ACTIONS(3542), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154573] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [155090] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3284), 1, + anon_sym_and, + ACTIONS(3286), 1, + anon_sym_or, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3530), 1, - anon_sym_else, + ACTIONS(3336), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154604] = 6, - ACTIONS(3524), 1, - anon_sym_not, - ACTIONS(3526), 1, - anon_sym_is, - STATE(1131), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1403), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154629] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [155121] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3532), 1, + ACTIONS(3544), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154660] = 6, - ACTIONS(3534), 1, - anon_sym_not, - ACTIONS(3536), 1, - anon_sym_is, - STATE(1067), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1929), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1935), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154685] = 9, - ACTIONS(3242), 1, + [155152] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3538), 1, - sym__newline, + ACTIONS(3546), 1, + anon_sym_if, + ACTIONS(3548), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154716] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [155183] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3284), 1, + anon_sym_and, + ACTIONS(3286), 1, + anon_sym_or, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3540), 1, - anon_sym_else, + ACTIONS(3460), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154747] = 6, - ACTIONS(2455), 1, - anon_sym_not, - ACTIONS(2459), 1, - anon_sym_is, - STATE(1778), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2457), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2453), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154772] = 6, - ACTIONS(2179), 1, + [155214] = 6, + ACTIONS(2414), 1, anon_sym_not, - ACTIONS(2197), 1, + ACTIONS(2418), 1, anon_sym_is, - STATE(2215), 1, + STATE(1783), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2195), 2, + ACTIONS(2416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 5, + ACTIONS(2412), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154797] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [155239] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3542), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3544), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154828] = 9, - ACTIONS(3170), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3546), 1, + ACTIONS(3550), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154859] = 6, - ACTIONS(3548), 1, - anon_sym_not, - ACTIONS(3550), 1, - anon_sym_is, - STATE(871), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1259), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154884] = 9, - ACTIONS(3116), 1, + [155270] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, + anon_sym_if, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3552), 1, - anon_sym_if, - ACTIONS(3554), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154915] = 9, - ACTIONS(3258), 1, + [155301] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3334), 1, + anon_sym_else, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3556), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154946] = 6, - ACTIONS(2406), 1, + [155332] = 6, + ACTIONS(3480), 1, anon_sym_not, - ACTIONS(2422), 1, + ACTIONS(3482), 1, anon_sym_is, - STATE(1834), 1, + STATE(1085), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2420), 2, + ACTIONS(1899), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2398), 5, + ACTIONS(1921), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154971] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, - anon_sym_PLUS, - ACTIONS(3558), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1210), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155002] = 6, - ACTIONS(2042), 1, + [155357] = 6, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(2058), 1, + ACTIONS(2104), 1, anon_sym_is, - STATE(2257), 1, + STATE(2062), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1528), 5, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155027] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [155382] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3560), 1, - anon_sym_RBRACE, + ACTIONS(3554), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155058] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [155413] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3562), 1, - anon_sym_RBRACE, + ACTIONS(3556), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155089] = 9, - ACTIONS(3116), 1, + [155444] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3564), 1, + ACTIONS(3558), 1, anon_sym_if, - ACTIONS(3566), 1, + ACTIONS(3560), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155120] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [155475] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3440), 1, - anon_sym_PLUS, - ACTIONS(3568), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155151] = 9, - ACTIONS(3116), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3570), 1, + ACTIONS(3562), 1, anon_sym_if, - ACTIONS(3572), 1, + ACTIONS(3564), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155182] = 6, - ACTIONS(3576), 1, + [155506] = 6, + ACTIONS(3566), 1, anon_sym_not, - ACTIONS(3578), 1, + ACTIONS(3568), 1, anon_sym_is, - STATE(1810), 1, + STATE(1105), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2349), 2, + ACTIONS(1450), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3574), 5, + ACTIONS(1454), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155207] = 9, - ACTIONS(3170), 1, + [155531] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3264), 1, + anon_sym_PLUS, + ACTIONS(3570), 1, + anon_sym_if, + ACTIONS(3572), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [155562] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3580), 1, + ACTIONS(3574), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155238] = 9, - ACTIONS(3116), 1, + [155593] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, + anon_sym_if, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, + ACTIONS(3264), 1, + anon_sym_PLUS, + ACTIONS(3576), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [155624] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3582), 1, + ACTIONS(3578), 1, + anon_sym_if, + ACTIONS(3580), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155269] = 6, - ACTIONS(2179), 1, + [155655] = 6, + ACTIONS(3566), 1, anon_sym_not, - ACTIONS(2197), 1, + ACTIONS(3568), 1, anon_sym_is, - STATE(1448), 1, + STATE(868), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2195), 2, + ACTIONS(1450), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2171), 5, + ACTIONS(1454), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155294] = 6, - ACTIONS(3548), 1, - anon_sym_not, - ACTIONS(3550), 1, - anon_sym_is, - STATE(1123), 1, - aux_sym_comparison_operator_repeat1, + [155680] = 9, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, + anon_sym_and, + ACTIONS(3276), 1, + anon_sym_or, + ACTIONS(3278), 1, + anon_sym_PLUS, + ACTIONS(3582), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1281), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155319] = 9, - ACTIONS(3258), 1, + ACTIONS(784), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [155711] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3584), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155350] = 6, - ACTIONS(3534), 1, + [155742] = 6, + ACTIONS(2203), 1, anon_sym_not, - ACTIONS(3536), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1203), 1, + STATE(2228), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1929), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1935), 5, + ACTIONS(2201), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155375] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [155767] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3586), 1, - anon_sym_else, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155406] = 9, - ACTIONS(3128), 1, + [155798] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, - ACTIONS(3138), 1, - anon_sym_and, ACTIONS(3140), 1, - anon_sym_or, + anon_sym_and, ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3588), 1, - anon_sym_RBRACK, + anon_sym_if, + ACTIONS(3590), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155437] = 6, - ACTIONS(2115), 1, - anon_sym_not, - ACTIONS(2119), 1, - anon_sym_is, - STATE(1312), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2117), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2113), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155462] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [155829] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3590), 1, - anon_sym_else, + ACTIONS(3592), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155493] = 9, - ACTIONS(3116), 1, + [155860] = 9, + ACTIONS(3188), 1, + anon_sym_as, + ACTIONS(3190), 1, + anon_sym_if, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3592), 1, - anon_sym_if, ACTIONS(3594), 1, - anon_sym_RBRACE, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155524] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [155891] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, anon_sym_PLUS, ACTIONS(3596), 1, - anon_sym_else, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155555] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [155922] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3284), 1, + anon_sym_and, + ACTIONS(3286), 1, + anon_sym_or, + ACTIONS(3288), 1, anon_sym_PLUS, ACTIONS(3598), 1, - anon_sym_RBRACE, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155586] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [155953] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3600), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155617] = 9, - ACTIONS(3116), 1, + [155984] = 9, + ACTIONS(3188), 1, + anon_sym_as, + ACTIONS(3190), 1, + anon_sym_if, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3414), 1, anon_sym_PLUS, ACTIONS(3602), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156015] = 9, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, + ACTIONS(3156), 1, + anon_sym_and, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, + anon_sym_PLUS, ACTIONS(3604), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155648] = 6, - ACTIONS(2455), 1, + [156046] = 6, + ACTIONS(3528), 1, anon_sym_not, - ACTIONS(2459), 1, + ACTIONS(3530), 1, anon_sym_is, - STATE(2229), 1, + STATE(1124), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2457), 2, + ACTIONS(1506), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 5, + ACTIONS(1528), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155673] = 9, - ACTIONS(3116), 1, + [156071] = 9, + ACTIONS(3280), 1, + anon_sym_as, + ACTIONS(3282), 1, + anon_sym_if, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3606), 1, - anon_sym_if, - ACTIONS(3608), 1, - anon_sym_RBRACE, + ACTIONS(3428), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155704] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [156102] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3610), 1, + ACTIONS(3606), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155735] = 9, - ACTIONS(3258), 1, + [156133] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3612), 1, - anon_sym_RPAREN, + ACTIONS(3608), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155766] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [156164] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3284), 1, + anon_sym_and, + ACTIONS(3286), 1, + anon_sym_or, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3614), 1, - anon_sym_RBRACE, + ACTIONS(3610), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155797] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [156195] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3316), 1, - anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, + ACTIONS(3612), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155828] = 9, - ACTIONS(3116), 1, + [156226] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3614), 1, + anon_sym_if, ACTIONS(3616), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155859] = 6, - ACTIONS(2290), 1, - anon_sym_not, - ACTIONS(2294), 1, - anon_sym_is, - STATE(1553), 1, - aux_sym_comparison_operator_repeat1, + [156257] = 9, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, + anon_sym_and, + ACTIONS(3276), 1, + anon_sym_or, + ACTIONS(3278), 1, + anon_sym_PLUS, + ACTIONS(3618), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2292), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2288), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155884] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(784), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1740), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156288] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3618), 1, + ACTIONS(3620), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155915] = 9, - ACTIONS(3116), 1, + [156319] = 9, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3278), 1, anon_sym_PLUS, - ACTIONS(3620), 1, - anon_sym_if, ACTIONS(3622), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155946] = 9, - ACTIONS(3128), 1, + [156350] = 6, + ACTIONS(3504), 1, + anon_sym_not, + ACTIONS(3506), 1, + anon_sym_is, + STATE(2238), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2427), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3502), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [156375] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3158), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3160), 1, anon_sym_PLUS, ACTIONS(3624), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155977] = 6, - ACTIONS(2527), 1, + [156406] = 6, + ACTIONS(2544), 1, anon_sym_not, - ACTIONS(2543), 1, + ACTIONS(2560), 1, anon_sym_is, - STATE(1924), 1, + STATE(2253), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2541), 2, + ACTIONS(2558), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 5, + ACTIONS(2536), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [156002] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [156431] = 9, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3274), 1, + anon_sym_and, + ACTIONS(3276), 1, + anon_sym_or, + ACTIONS(3278), 1, anon_sym_PLUS, ACTIONS(3626), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156033] = 9, - ACTIONS(3116), 1, + [156462] = 6, + ACTIONS(2414), 1, + anon_sym_not, + ACTIONS(2418), 1, + anon_sym_is, + STATE(2244), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2416), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2412), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [156487] = 6, + ACTIONS(2203), 1, + anon_sym_not, + ACTIONS(2207), 1, + anon_sym_is, + STATE(1471), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2205), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2201), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [156512] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3628), 1, anon_sym_if, @@ -155192,351 +156012,368 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156064] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [156543] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, ACTIONS(3632), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156095] = 9, - ACTIONS(3242), 1, + [156574] = 9, + ACTIONS(3266), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3268), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3274), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3276), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3278), 1, anon_sym_PLUS, ACTIONS(3634), 1, - sym__newline, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156126] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [156605] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3636), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156157] = 6, - ACTIONS(3576), 1, + [156636] = 6, + ACTIONS(2102), 1, anon_sym_not, - ACTIONS(3578), 1, + ACTIONS(2104), 1, anon_sym_is, - STATE(2224), 1, + STATE(2268), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2349), 2, + ACTIONS(1351), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3574), 5, + ACTIONS(1373), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [156182] = 9, - ACTIONS(3258), 1, + [156661] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3260), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3266), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3268), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3270), 1, + ACTIONS(3414), 1, anon_sym_PLUS, ACTIONS(3638), 1, - anon_sym_RPAREN, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156213] = 9, - ACTIONS(3116), 1, - anon_sym_and, - ACTIONS(3118), 1, - anon_sym_or, - ACTIONS(3124), 1, + [156692] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3334), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3640), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156244] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [156723] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3642), 1, - anon_sym_then, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156275] = 9, - ACTIONS(3116), 1, + [156754] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3138), 1, + anon_sym_if, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, ACTIONS(3644), 1, - anon_sym_if, - ACTIONS(3646), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156306] = 9, - ACTIONS(3128), 1, + [156785] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3130), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3138), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3140), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3648), 1, - anon_sym_RBRACK, + ACTIONS(3646), 1, + anon_sym_then, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156337] = 9, - ACTIONS(3116), 1, + [156816] = 9, + ACTIONS(3136), 1, + anon_sym_as, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3118), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3334), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_if, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156368] = 9, - ACTIONS(3242), 1, + [156847] = 4, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2802), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1329), 7, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [156868] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3396), 1, - sym__newline, + ACTIONS(3652), 1, + anon_sym_if, + ACTIONS(3654), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156399] = 9, - ACTIONS(3242), 1, + [156899] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3654), 1, - sym__newline, + ACTIONS(3656), 1, + anon_sym_if, + ACTIONS(3658), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156430] = 9, - ACTIONS(3128), 1, + [156930] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3130), 1, - anon_sym_if, - ACTIONS(3138), 1, - anon_sym_and, ACTIONS(3140), 1, - anon_sym_or, + anon_sym_and, ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3656), 1, - anon_sym_RBRACK, + ACTIONS(3660), 1, + anon_sym_if, + ACTIONS(3662), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156461] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [156961] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3140), 1, + anon_sym_and, + ACTIONS(3142), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_PLUS, - ACTIONS(3658), 1, - anon_sym_else, + ACTIONS(3664), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156492] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [156992] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3440), 1, + ACTIONS(3192), 1, + anon_sym_and, + ACTIONS(3194), 1, + anon_sym_or, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3660), 1, + ACTIONS(3666), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156523] = 9, - ACTIONS(3242), 1, + [157023] = 9, + ACTIONS(3280), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3282), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3284), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3288), 1, anon_sym_PLUS, - ACTIONS(3364), 1, + ACTIONS(3668), 1, sym__newline, ACTIONS(3), 2, sym_comment, @@ -155544,4540 +156381,4668 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156554] = 8, - ACTIONS(3662), 1, + [157054] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3664), 1, - anon_sym_if, - ACTIONS(3666), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3668), 1, + ACTIONS(3142), 1, anon_sym_or, - ACTIONS(3670), 1, + ACTIONS(3264), 1, anon_sym_PLUS, + ACTIONS(3670), 1, + anon_sym_if, + ACTIONS(3672), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156582] = 4, - ACTIONS(3672), 1, - anon_sym_PLUS, + [157085] = 6, + ACTIONS(2349), 1, + anon_sym_not, + ACTIONS(2365), 1, + anon_sym_is, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1391), 6, - anon_sym_DOT, + ACTIONS(2363), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2341), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [157110] = 9, + ACTIONS(3188), 1, anon_sym_as, + ACTIONS(3190), 1, anon_sym_if, - anon_sym_QMARK_DOT, + ACTIONS(3192), 1, anon_sym_and, + ACTIONS(3194), 1, anon_sym_or, - [156602] = 4, - ACTIONS(3672), 1, + ACTIONS(3414), 1, anon_sym_PLUS, + ACTIONS(3674), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, - anon_sym_DOT, + [157141] = 9, + ACTIONS(3188), 1, anon_sym_as, + ACTIONS(3190), 1, anon_sym_if, - anon_sym_QMARK_DOT, + ACTIONS(3192), 1, anon_sym_and, + ACTIONS(3194), 1, anon_sym_or, - [156622] = 8, - ACTIONS(3662), 1, + ACTIONS(3366), 1, + anon_sym_else, + ACTIONS(3414), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157172] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3664), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3666), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3672), 1, - anon_sym_PLUS, - ACTIONS(3674), 1, + ACTIONS(3158), 1, anon_sym_or, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3676), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1210), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156650] = 8, - ACTIONS(3662), 1, + [157203] = 9, + ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3664), 1, + ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3666), 1, + ACTIONS(3192), 1, anon_sym_and, - ACTIONS(3668), 1, + ACTIONS(3194), 1, anon_sym_or, - ACTIONS(3676), 1, + ACTIONS(3414), 1, anon_sym_PLUS, + ACTIONS(3678), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156678] = 8, - ACTIONS(3662), 1, + [157234] = 9, + ACTIONS(3136), 1, anon_sym_as, - ACTIONS(3664), 1, + ACTIONS(3138), 1, anon_sym_if, - ACTIONS(3666), 1, + ACTIONS(3140), 1, anon_sym_and, - ACTIONS(3672), 1, - anon_sym_PLUS, - ACTIONS(3678), 1, + ACTIONS(3142), 1, anon_sym_or, + ACTIONS(3264), 1, + anon_sym_PLUS, + ACTIONS(3680), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156706] = 4, - ACTIONS(3672), 1, + [157265] = 9, + ACTIONS(3266), 1, + anon_sym_as, + ACTIONS(3268), 1, + anon_sym_if, + ACTIONS(3274), 1, + anon_sym_and, + ACTIONS(3276), 1, + anon_sym_or, + ACTIONS(3278), 1, anon_sym_PLUS, + ACTIONS(3682), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(360), 2, + ACTIONS(784), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, - anon_sym_DOT, + [157296] = 9, + ACTIONS(3146), 1, anon_sym_as, + ACTIONS(3148), 1, anon_sym_if, - anon_sym_QMARK_DOT, + ACTIONS(3156), 1, anon_sym_and, + ACTIONS(3158), 1, anon_sym_or, - [156726] = 8, - ACTIONS(3662), 1, + ACTIONS(3160), 1, + anon_sym_PLUS, + ACTIONS(3684), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157327] = 9, + ACTIONS(3146), 1, anon_sym_as, - ACTIONS(3664), 1, + ACTIONS(3148), 1, anon_sym_if, - ACTIONS(3666), 1, + ACTIONS(3156), 1, anon_sym_and, - ACTIONS(3672), 1, + ACTIONS(3158), 1, + anon_sym_or, + ACTIONS(3160), 1, anon_sym_PLUS, - ACTIONS(3680), 1, + ACTIONS(3686), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157358] = 4, + ACTIONS(3690), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2561), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3688), 6, + anon_sym_LBRACK, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + [157378] = 7, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3695), 1, anon_sym_or, + ACTIONS(3697), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1309), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1613), 2, + ACTIONS(1550), 2, + anon_sym_as, + anon_sym_if, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156754] = 4, - ACTIONS(3672), 1, + [157404] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1210), 2, + STATE(1022), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, + ACTIONS(1430), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [156774] = 8, - ACTIONS(3662), 1, + [157424] = 4, + ACTIONS(3697), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1482), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1430), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(3664), 1, anon_sym_if, - ACTIONS(3666), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3672), 1, + anon_sym_or, + [157444] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, anon_sym_PLUS, - ACTIONS(3682), 1, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, + ACTIONS(3703), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1251), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(792), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156802] = 8, - ACTIONS(3662), 1, - anon_sym_as, - ACTIONS(3664), 1, - anon_sym_if, - ACTIONS(3666), 1, + [157472] = 8, + ACTIONS(3693), 1, anon_sym_and, - ACTIONS(3672), 1, - anon_sym_PLUS, - ACTIONS(3684), 1, + ACTIONS(3695), 1, anon_sym_or, + ACTIONS(3697), 1, + anon_sym_PLUS, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1565), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156830] = 4, - ACTIONS(3672), 1, + [157500] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, anon_sym_PLUS, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, + ACTIONS(3705), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 2, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, - anon_sym_DOT, + [157528] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, + anon_sym_PLUS, + ACTIONS(3699), 1, anon_sym_as, + ACTIONS(3701), 1, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, + ACTIONS(3707), 1, anon_sym_or, - [156850] = 4, - ACTIONS(3672), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1224), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157556] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1646), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, + ACTIONS(1430), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [156870] = 8, - ACTIONS(3662), 1, - anon_sym_as, - ACTIONS(3664), 1, - anon_sym_if, - ACTIONS(3666), 1, + [157576] = 8, + ACTIONS(3693), 1, anon_sym_and, - ACTIONS(3672), 1, + ACTIONS(3697), 1, anon_sym_PLUS, - ACTIONS(3686), 1, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, + ACTIONS(3709), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(784), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1413), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156898] = 4, - ACTIONS(3672), 1, + [157604] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1565), 2, + STATE(1569), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, + ACTIONS(1430), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [156918] = 8, - ACTIONS(3662), 1, + [157624] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3695), 1, + anon_sym_or, + ACTIONS(3699), 1, anon_sym_as, - ACTIONS(3664), 1, + ACTIONS(3701), 1, anon_sym_if, - ACTIONS(3666), 1, - anon_sym_and, - ACTIONS(3672), 1, + ACTIONS(3711), 1, anon_sym_PLUS, - ACTIONS(3688), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1323), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1054), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156946] = 8, - ACTIONS(3662), 1, - anon_sym_as, - ACTIONS(3664), 1, - anon_sym_if, - ACTIONS(3666), 1, + [157652] = 8, + ACTIONS(3693), 1, anon_sym_and, - ACTIONS(3668), 1, + ACTIONS(3695), 1, anon_sym_or, - ACTIONS(3672), 1, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, + ACTIONS(3713), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157680] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1740), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156974] = 8, - ACTIONS(3662), 1, + ACTIONS(1430), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(3664), 1, anon_sym_if, - ACTIONS(3666), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3672), 1, + anon_sym_or, + [157700] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, anon_sym_PLUS, - ACTIONS(3690), 1, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, + ACTIONS(3715), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1229), 2, + ACTIONS(533), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(360), 2, + STATE(1482), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157002] = 7, - ACTIONS(3666), 1, + [157728] = 8, + ACTIONS(3693), 1, anon_sym_and, - ACTIONS(3668), 1, + ACTIONS(3695), 1, anon_sym_or, - ACTIONS(3672), 1, + ACTIONS(3697), 1, anon_sym_PLUS, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1463), 2, - anon_sym_as, - anon_sym_if, - STATE(1173), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157028] = 8, - ACTIONS(3662), 1, - anon_sym_as, - ACTIONS(3664), 1, - anon_sym_if, - ACTIONS(3666), 1, - anon_sym_and, - ACTIONS(3672), 1, + [157756] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, - ACTIONS(3692), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(726), 2, + STATE(1175), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157056] = 8, - ACTIONS(3662), 1, + ACTIONS(1291), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(3664), 1, anon_sym_if, - ACTIONS(3666), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3672), 1, - anon_sym_PLUS, - ACTIONS(3694), 1, anon_sym_or, + [157776] = 7, + ACTIONS(1889), 1, + anon_sym_LBRACE, + ACTIONS(3717), 1, + anon_sym_LPAREN, + STATE(1942), 1, + sym_dict_expr, + STATE(2281), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(780), 2, + ACTIONS(3144), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1646), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157084] = 8, - ACTIONS(3662), 1, + ACTIONS(1329), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [157802] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, + anon_sym_PLUS, + ACTIONS(3699), 1, anon_sym_as, - ACTIONS(3664), 1, + ACTIONS(3701), 1, anon_sym_if, - ACTIONS(3666), 1, - anon_sym_and, - ACTIONS(3668), 1, + ACTIONS(3719), 1, anon_sym_or, - ACTIONS(3672), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157112] = 4, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, + [157830] = 4, + ACTIONS(3697), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2798), 2, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1422), 6, anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_QMARK_DOT, - ACTIONS(1595), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [157132] = 4, - ACTIONS(3672), 1, + anon_sym_and, + anon_sym_or, + [157850] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, + STATE(792), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, + ACTIONS(1430), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [157152] = 4, - ACTIONS(3672), 1, + [157870] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(726), 2, + STATE(605), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, + ACTIONS(1430), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [157172] = 4, - ACTIONS(3698), 1, - anon_sym_AT, + [157890] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, + anon_sym_PLUS, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, + ACTIONS(3721), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2569), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3696), 6, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - [157192] = 4, - ACTIONS(3672), 1, + ACTIONS(1315), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1022), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157918] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1054), 2, + STATE(1224), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1381), 6, + ACTIONS(1430), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [157212] = 7, - ACTIONS(1881), 1, - anon_sym_LBRACE, + [157938] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, + anon_sym_PLUS, + ACTIONS(3699), 1, + anon_sym_as, ACTIONS(3701), 1, - anon_sym_LPAREN, - STATE(1901), 1, - sym_dict_expr, - STATE(2262), 1, - aux_sym_dotted_name_repeat1, + anon_sym_if, + ACTIONS(3723), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3122), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1595), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [157238] = 4, - ACTIONS(3672), 1, + STATE(1175), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157966] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, + anon_sym_PLUS, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, + ACTIONS(3725), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1237), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(605), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157994] = 4, + ACTIONS(3697), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, + STATE(1508), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1387), 6, + ACTIONS(1430), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [157258] = 6, - ACTIONS(3707), 1, + [158014] = 8, + ACTIONS(3693), 1, + anon_sym_and, + ACTIONS(3697), 1, + anon_sym_PLUS, + ACTIONS(3699), 1, + anon_sym_as, + ACTIONS(3701), 1, + anon_sym_if, + ACTIONS(3727), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1281), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1569), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [158042] = 6, + ACTIONS(3733), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2609), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157281] = 6, - ACTIONS(3709), 1, + [158065] = 6, + ACTIONS(3735), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2599), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157304] = 6, - ACTIONS(3711), 1, + [158088] = 6, + ACTIONS(3737), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2578), 2, + STATE(2601), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157327] = 6, - ACTIONS(3713), 1, + [158111] = 6, + ACTIONS(3739), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157350] = 6, - ACTIONS(3715), 1, + [158134] = 6, + ACTIONS(3741), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2586), 2, + STATE(2607), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157373] = 6, - ACTIONS(3717), 1, + [158157] = 6, + ACTIONS(3743), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157396] = 6, - ACTIONS(3719), 1, + [158180] = 6, + ACTIONS(3745), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2589), 2, + STATE(2594), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157419] = 6, - ACTIONS(3721), 1, + [158203] = 6, + ACTIONS(3747), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2592), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157442] = 6, - ACTIONS(3723), 1, + [158226] = 6, + ACTIONS(3749), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2576), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157465] = 6, - ACTIONS(3731), 1, + [158249] = 6, + ACTIONS(3751), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3725), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3728), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2600), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157488] = 6, - ACTIONS(3733), 1, + [158272] = 6, + ACTIONS(3753), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2585), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157511] = 6, - ACTIONS(3735), 1, + [158295] = 6, + ACTIONS(3755), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157534] = 6, - ACTIONS(3737), 1, + [158318] = 6, + ACTIONS(3757), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157557] = 6, - ACTIONS(3739), 1, + [158341] = 5, + ACTIONS(521), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3759), 1, + sym_identifier, + STATE(3144), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(541), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [158362] = 5, + ACTIONS(551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3761), 1, + sym_identifier, + STATE(3230), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(541), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [158383] = 6, + ACTIONS(3763), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157580] = 6, - ACTIONS(3741), 1, + [158406] = 6, + ACTIONS(3765), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2584), 2, + STATE(2604), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157603] = 5, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3743), 1, - sym_identifier, - STATE(3106), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(533), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [157624] = 6, - ACTIONS(3745), 1, + [158429] = 6, + ACTIONS(3773), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3767), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3770), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157647] = 5, - ACTIONS(513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3747), 1, - sym_identifier, - STATE(3210), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(533), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [157668] = 6, - ACTIONS(3749), 1, + [158452] = 6, + ACTIONS(3775), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2582), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157691] = 6, - ACTIONS(3751), 1, + [158475] = 6, + ACTIONS(3777), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2591), 2, + STATE(2597), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157714] = 6, - ACTIONS(3753), 1, + [158498] = 6, + ACTIONS(3779), 1, sym_string_end, - STATE(2650), 1, + STATE(2655), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3729), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3705), 2, + ACTIONS(3731), 2, sym__not_escape_sequence, sym__string_content, - STATE(2580), 2, + STATE(2606), 2, sym_string_content, aux_sym_raw_string_repeat1, - [157737] = 4, - ACTIONS(3755), 1, - anon_sym_DOT_DOT_DOT, - STATE(3084), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3757), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [157755] = 4, - ACTIONS(3759), 1, - anon_sym_DOT_DOT_DOT, - STATE(3217), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3757), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [157773] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3761), 7, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_AT, - [157787] = 5, - ACTIONS(3763), 1, - sym_identifier, - STATE(2776), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3765), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - STATE(2721), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [157807] = 5, - ACTIONS(3763), 1, + [158521] = 5, + ACTIONS(3781), 1, sym_identifier, - STATE(2776), 1, + STATE(2850), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3767), 2, + ACTIONS(3783), 2, anon_sym_DASH_GT, anon_sym_LBRACE, - STATE(2721), 3, + STATE(2679), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [157827] = 4, - STATE(2262), 1, + [158541] = 4, + STATE(2281), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3122), 2, + ACTIONS(3144), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1595), 4, + ACTIONS(1329), 4, sym__newline, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, - [157845] = 8, - ACTIONS(3769), 1, + [158559] = 5, + ACTIONS(3781), 1, sym_identifier, - ACTIONS(3771), 1, - anon_sym_DOT, - STATE(2825), 1, - sym_import_prefix, - STATE(2827), 1, - aux_sym_import_prefix_repeat1, - STATE(2924), 1, - sym_dotted_name, - STATE(3124), 1, - sym_aliased_import, - STATE(3125), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [157871] = 4, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2798), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1595), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [157888] = 7, - ACTIONS(3773), 1, - anon_sym_COMMA, - ACTIONS(3775), 1, - anon_sym_RBRACE, - ACTIONS(3777), 1, - anon_sym_for, - STATE(2640), 1, - sym_for_in_clause, - STATE(2739), 1, - aux_sym_dictionary_repeat1, - STATE(2994), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [157911] = 5, - ACTIONS(3779), 1, - anon_sym_if, - ACTIONS(3782), 1, - anon_sym_RBRACK, - ACTIONS(3784), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2603), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [157930] = 3, - STATE(3218), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3757), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [157945] = 5, - ACTIONS(3789), 1, - anon_sym_EQ, - ACTIONS(3791), 1, - anon_sym_PIPE, - STATE(2627), 1, - aux_sym_union_type_repeat1, + STATE(2850), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3787), 3, - anon_sym_COMMA, + ACTIONS(3785), 2, anon_sym_DASH_GT, anon_sym_LBRACE, - [157964] = 5, - ACTIONS(3763), 1, - sym_identifier, - STATE(2723), 1, - sym_parameter, - STATE(2916), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2721), 3, + STATE(2679), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [157983] = 3, - STATE(3213), 1, + [158579] = 4, + ACTIONS(3787), 1, + anon_sym_DOT_DOT_DOT, + STATE(3025), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3757), 5, + ACTIONS(3789), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [157998] = 5, - ACTIONS(3763), 1, + [158597] = 8, + ACTIONS(3791), 1, sym_identifier, - STATE(2723), 1, - sym_parameter, - STATE(2941), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2721), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158017] = 5, - ACTIONS(3136), 1, - anon_sym_for, ACTIONS(3793), 1, - anon_sym_if, - ACTIONS(3795), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2603), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [158036] = 5, - ACTIONS(3763), 1, - sym_identifier, - STATE(2723), 1, - sym_parameter, - STATE(2939), 1, - sym__parameters, + anon_sym_DOT, + STATE(2820), 1, + sym_import_prefix, + STATE(2824), 1, + aux_sym_import_prefix_repeat1, + STATE(2947), 1, + sym_dotted_name, + STATE(3086), 1, + sym__import_list, + STATE(3173), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2721), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158055] = 4, - STATE(2632), 1, - aux_sym_dotted_name_repeat1, + [158623] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3797), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1595), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [158072] = 5, - ACTIONS(3763), 1, - sym_identifier, - STATE(2723), 1, - sym_parameter, - STATE(2938), 1, - sym__parameters, + ACTIONS(3795), 7, + anon_sym_LBRACK, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_AT, + [158637] = 4, + ACTIONS(3797), 1, + anon_sym_DOT_DOT_DOT, + STATE(3239), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2721), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158091] = 4, - ACTIONS(1239), 1, + ACTIONS(3789), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [158655] = 4, + ACTIONS(557), 1, anon_sym_LBRACK, ACTIONS(3799), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(962), 4, + STATE(1328), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [158108] = 5, - ACTIONS(3763), 1, - sym_identifier, - STATE(2723), 1, - sym_parameter, - STATE(2937), 1, - sym__parameters, + [158672] = 4, + STATE(2064), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2721), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158127] = 5, - ACTIONS(3763), 1, - sym_identifier, - STATE(2723), 1, - sym_parameter, - STATE(2936), 1, - sym__parameters, + ACTIONS(2802), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1329), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [158689] = 3, + STATE(2665), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2721), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158146] = 3, - STATE(3246), 1, + ACTIONS(1498), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [158704] = 3, + STATE(3234), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3757), 5, + ACTIONS(3789), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [158161] = 5, - ACTIONS(3763), 1, + [158719] = 5, + ACTIONS(3781), 1, sym_identifier, - STATE(2723), 1, + STATE(2728), 1, sym_parameter, - STATE(2935), 1, + STATE(2957), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2721), 3, + STATE(2679), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [158180] = 4, - ACTIONS(1319), 1, - anon_sym_LBRACK, + [158738] = 7, ACTIONS(3801), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1111), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [158197] = 4, - ACTIONS(1305), 1, - anon_sym_LBRACK, - ACTIONS(3803), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1917), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [158214] = 5, - ACTIONS(3763), 1, - sym_identifier, - STATE(2723), 1, - sym_parameter, - STATE(2934), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2721), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158233] = 7, - ACTIONS(3777), 1, - anon_sym_for, - ACTIONS(3805), 1, anon_sym_COMMA, - ACTIONS(3807), 1, + ACTIONS(3803), 1, anon_sym_RBRACE, - STATE(2640), 1, + ACTIONS(3805), 1, + anon_sym_for, + STATE(2629), 1, sym_for_in_clause, - STATE(2812), 1, + STATE(2835), 1, aux_sym_dictionary_repeat1, - STATE(3148), 1, + STATE(3035), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158256] = 5, - ACTIONS(1589), 1, - anon_sym_LF, - STATE(1592), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1587), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3809), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [158275] = 4, - ACTIONS(1291), 1, + [158761] = 4, + ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3807), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1356), 4, + STATE(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [158292] = 7, - ACTIONS(3777), 1, - anon_sym_for, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3815), 1, - anon_sym_RBRACE, - STATE(2640), 1, - sym_for_in_clause, - STATE(2866), 1, - aux_sym_dictionary_repeat1, - STATE(3023), 1, - sym__comprehension_clauses, + [158778] = 5, + ACTIONS(3781), 1, + sym_identifier, + STATE(2728), 1, + sym_parameter, + STATE(2959), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158315] = 7, - ACTIONS(3777), 1, - anon_sym_for, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, + STATE(2679), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [158797] = 5, + ACTIONS(3809), 1, + anon_sym_if, + ACTIONS(3812), 1, anon_sym_RBRACE, - STATE(2640), 1, + ACTIONS(3814), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2625), 3, sym_for_in_clause, - STATE(2855), 1, - aux_sym_dictionary_repeat1, - STATE(3085), 1, - sym__comprehension_clauses, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [158816] = 4, + ACTIONS(1277), 1, + anon_sym_LBRACK, + ACTIONS(3817), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158338] = 4, - ACTIONS(511), 1, + STATE(1911), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [158833] = 4, + ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(3821), 1, + ACTIONS(3819), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1708), 4, + STATE(1814), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [158355] = 3, - STATE(2638), 1, + [158850] = 3, + STATE(2645), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1349), 5, + ACTIONS(1434), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [158370] = 7, - ACTIONS(3777), 1, + [158865] = 5, + ACTIONS(3805), 1, anon_sym_for, + ACTIONS(3821), 1, + anon_sym_if, ACTIONS(3823), 1, - anon_sym_COMMA, - ACTIONS(3825), 1, anon_sym_RBRACE, - STATE(2640), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2660), 3, sym_for_in_clause, - STATE(2819), 1, - aux_sym_dictionary_repeat1, - STATE(3010), 1, - sym__comprehension_clauses, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [158884] = 3, + STATE(2645), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158393] = 5, - ACTIONS(3763), 1, + ACTIONS(1442), 5, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [158899] = 3, + STATE(2619), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1434), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [158914] = 5, + ACTIONS(3781), 1, sym_identifier, - STATE(2723), 1, + STATE(2728), 1, sym_parameter, - STATE(2929), 1, + STATE(2956), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2721), 3, + STATE(2679), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [158412] = 3, - STATE(2627), 1, + [158933] = 3, + STATE(2645), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 5, + ACTIONS(1337), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [158427] = 3, - STATE(2627), 1, + [158948] = 7, + ACTIONS(3805), 1, + anon_sym_for, + ACTIONS(3825), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_RBRACE, + STATE(2629), 1, + sym_for_in_clause, + STATE(2781), 1, + aux_sym_dictionary_repeat1, + STATE(3259), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158971] = 4, + ACTIONS(3829), 1, + anon_sym_PIPE, + STATE(2635), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 5, + ACTIONS(1385), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_PIPE, - [158442] = 4, - STATE(1774), 1, - aux_sym_dotted_name_repeat1, + [158988] = 5, + ACTIONS(3834), 1, + anon_sym_COLON, + ACTIONS(3836), 1, + anon_sym_LBRACK, + ACTIONS(3838), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3797), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1589), 3, + ACTIONS(3832), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [158459] = 3, - STATE(2627), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [159007] = 3, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1465), 5, - anon_sym_COMMA, + ACTIONS(1337), 5, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [158474] = 5, - ACTIONS(3782), 1, - anon_sym_RBRACE, - ACTIONS(3827), 1, - anon_sym_if, - ACTIONS(3830), 1, - anon_sym_for, + [159022] = 3, + STATE(3068), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2634), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [158493] = 3, - STATE(2627), 1, + ACTIONS(3789), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [159037] = 3, + STATE(2645), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 5, + ACTIONS(1385), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [158508] = 5, - ACTIONS(3136), 1, - anon_sym_for, - ACTIONS(3793), 1, - anon_sym_if, - ACTIONS(3833), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2609), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [158527] = 7, - ACTIONS(3777), 1, + [159052] = 7, + ACTIONS(3805), 1, anon_sym_for, - ACTIONS(3835), 1, + ACTIONS(3840), 1, anon_sym_COMMA, - ACTIONS(3837), 1, + ACTIONS(3842), 1, anon_sym_RBRACE, - STATE(2640), 1, + STATE(2629), 1, sym_for_in_clause, - STATE(2816), 1, + STATE(2756), 1, aux_sym_dictionary_repeat1, - STATE(3263), 1, + STATE(3152), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158550] = 4, - ACTIONS(3839), 1, + [159075] = 5, + ACTIONS(3781), 1, + sym_identifier, + STATE(2728), 1, + sym_parameter, + STATE(2934), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2679), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159094] = 3, + STATE(2619), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1385), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [159109] = 3, + ACTIONS(3844), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1337), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [159124] = 3, + ACTIONS(3846), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1392), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_PIPE, - STATE(2638), 1, + [159139] = 3, + STATE(2635), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 4, + ACTIONS(1498), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, - [158567] = 5, - ACTIONS(3848), 1, + anon_sym_PIPE, + [159154] = 5, + ACTIONS(1329), 1, + anon_sym_LF, + STATE(2668), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1327), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3848), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [159173] = 4, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1872), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [159190] = 5, + ACTIONS(3858), 1, sym_string_end, - STATE(2639), 1, + STATE(2648), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3842), 2, + ACTIONS(3852), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3845), 2, + ACTIONS(3855), 2, sym__not_escape_sequence, sym__string_content, - [158586] = 5, - ACTIONS(3777), 1, + [159209] = 3, + STATE(3114), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3789), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [159224] = 3, + ACTIONS(3860), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1412), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [159239] = 5, + ACTIONS(3154), 1, anon_sym_for, - ACTIONS(3833), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, + ACTIONS(3823), 1, + anon_sym_RBRACK, + ACTIONS(3862), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2643), 3, + STATE(2658), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [158605] = 4, - ACTIONS(180), 1, + [159258] = 4, + ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(3852), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1904), 4, + STATE(1401), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [158622] = 4, - ACTIONS(774), 1, + [159275] = 4, + ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3866), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2012), 4, + STATE(2019), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [158639] = 5, - ACTIONS(3777), 1, - anon_sym_for, - ACTIONS(3795), 1, - anon_sym_RBRACE, - ACTIONS(3850), 1, - anon_sym_if, + [159292] = 4, + STATE(1848), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2634), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [158658] = 7, - ACTIONS(3777), 1, + ACTIONS(3868), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1325), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [159309] = 5, + ACTIONS(3874), 1, + sym_string_end, + STATE(2648), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3870), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(3872), 2, + sym__not_escape_sequence, + sym__string_content, + [159328] = 7, + ACTIONS(3805), 1, anon_sym_for, - ACTIONS(3856), 1, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3858), 1, + ACTIONS(3878), 1, anon_sym_RBRACE, - STATE(2640), 1, + STATE(2629), 1, sym_for_in_clause, - STATE(2896), 1, + STATE(2863), 1, aux_sym_dictionary_repeat1, - STATE(3026), 1, + STATE(3141), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158681] = 4, - ACTIONS(1225), 1, - anon_sym_LBRACK, - ACTIONS(3860), 1, - anon_sym_LBRACE, + [159351] = 5, + ACTIONS(3812), 1, + anon_sym_RBRACK, + ACTIONS(3880), 1, + anon_sym_if, + ACTIONS(3883), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1003), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [158698] = 3, - STATE(3003), 1, - sym_basic_type, + STATE(2657), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [159370] = 5, + ACTIONS(3154), 1, + anon_sym_for, + ACTIONS(3862), 1, + anon_sym_if, + ACTIONS(3886), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3757), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [158713] = 5, - ACTIONS(3864), 1, - anon_sym_COLON, - ACTIONS(3866), 1, - anon_sym_LBRACK, - ACTIONS(3868), 1, - anon_sym_EQ, + STATE(2657), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [159389] = 5, + ACTIONS(3781), 1, + sym_identifier, + STATE(2728), 1, + sym_parameter, + STATE(2949), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3862), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [158732] = 7, - ACTIONS(3777), 1, + STATE(2679), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159408] = 5, + ACTIONS(3805), 1, + anon_sym_for, + ACTIONS(3821), 1, + anon_sym_if, + ACTIONS(3886), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2625), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [159427] = 7, + ACTIONS(3805), 1, anon_sym_for, - ACTIONS(3870), 1, + ACTIONS(3888), 1, anon_sym_COMMA, - ACTIONS(3872), 1, + ACTIONS(3890), 1, anon_sym_RBRACE, - STATE(2640), 1, + STATE(2629), 1, sym_for_in_clause, - STATE(2889), 1, + STATE(2822), 1, aux_sym_dictionary_repeat1, - STATE(3033), 1, + STATE(3162), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158755] = 4, - ACTIONS(549), 1, + [159450] = 4, + STATE(2654), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3868), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1329), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [159467] = 5, + ACTIONS(3781), 1, + sym_identifier, + STATE(2728), 1, + sym_parameter, + STATE(2953), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2679), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159486] = 4, + ACTIONS(1247), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3892), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1277), 4, + STATE(989), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [158772] = 5, - ACTIONS(3880), 1, - sym_string_end, - STATE(2639), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [159503] = 4, + ACTIONS(3894), 1, + anon_sym_PIPE, + STATE(2665), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3876), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3878), 2, - sym__not_escape_sequence, - sym__string_content, - [158791] = 5, - ACTIONS(1595), 1, + ACTIONS(1385), 4, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + [159520] = 3, + STATE(3240), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3789), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [159535] = 5, + ACTIONS(3781), 1, + sym_identifier, + STATE(2728), 1, + sym_parameter, + STATE(2958), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2679), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159554] = 5, + ACTIONS(1325), 1, anon_sym_LF, - STATE(2622), 1, + STATE(1593), 1, aux_sym_dotted_name_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 2, + ACTIONS(1323), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3809), 2, + ACTIONS(3848), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [158810] = 7, - ACTIONS(3777), 1, - anon_sym_for, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(3884), 1, - anon_sym_RBRACE, - STATE(2640), 1, - sym_for_in_clause, - STATE(2831), 1, - aux_sym_dictionary_repeat1, - STATE(3116), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158833] = 6, - ACTIONS(3886), 1, - anon_sym_COMMA, - ACTIONS(3888), 1, - anon_sym_RPAREN, - ACTIONS(3890), 1, - anon_sym_PIPE, - STATE(2730), 1, - aux_sym_union_type_repeat1, - STATE(2793), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158853] = 3, - STATE(2675), 1, + [159573] = 3, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 4, + ACTIONS(1442), 5, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [158867] = 3, - STATE(2675), 1, + [159588] = 5, + ACTIONS(3899), 1, + anon_sym_EQ, + ACTIONS(3901), 1, + anon_sym_PIPE, + STATE(2645), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3897), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_PIPE, - [158881] = 6, - ACTIONS(3886), 1, + [159607] = 7, + ACTIONS(3805), 1, + anon_sym_for, + ACTIONS(3903), 1, anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3892), 1, - anon_sym_RPAREN, - STATE(2730), 1, - aux_sym_union_type_repeat1, - STATE(2872), 1, - aux_sym_function_type_repeat1, + ACTIONS(3905), 1, + anon_sym_RBRACE, + STATE(2629), 1, + sym_for_in_clause, + STATE(2814), 1, + aux_sym_dictionary_repeat1, + STATE(3210), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158901] = 6, - ACTIONS(3886), 1, + [159630] = 7, + ACTIONS(3805), 1, + anon_sym_for, + ACTIONS(3907), 1, anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3894), 1, - anon_sym_RPAREN, - STATE(2730), 1, - aux_sym_union_type_repeat1, - STATE(2753), 1, - aux_sym_function_type_repeat1, + ACTIONS(3909), 1, + anon_sym_RBRACE, + STATE(2629), 1, + sym_for_in_clause, + STATE(2831), 1, + aux_sym_dictionary_repeat1, + STATE(3030), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158921] = 6, - ACTIONS(3886), 1, + [159653] = 7, + ACTIONS(3805), 1, + anon_sym_for, + ACTIONS(3911), 1, anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3896), 1, - anon_sym_RPAREN, - STATE(2730), 1, - aux_sym_union_type_repeat1, - STATE(2771), 1, - aux_sym_function_type_repeat1, + ACTIONS(3913), 1, + anon_sym_RBRACE, + STATE(2629), 1, + sym_for_in_clause, + STATE(2878), 1, + aux_sym_dictionary_repeat1, + STATE(3072), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158941] = 4, - ACTIONS(3763), 1, + [159676] = 4, + ACTIONS(1233), 1, + anon_sym_LBRACK, + ACTIONS(3915), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(970), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [159693] = 5, + ACTIONS(3781), 1, sym_identifier, - STATE(2776), 1, + STATE(2728), 1, sym_parameter, + STATE(2952), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2721), 3, + STATE(2679), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [158957] = 6, - ACTIONS(3886), 1, - anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3898), 1, - anon_sym_RPAREN, - STATE(2730), 1, - aux_sym_union_type_repeat1, - STATE(2789), 1, - aux_sym_function_type_repeat1, + [159712] = 5, + ACTIONS(3781), 1, + sym_identifier, + STATE(2728), 1, + sym_parameter, + STATE(2944), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158977] = 6, - ACTIONS(3886), 1, + STATE(2679), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159731] = 7, + ACTIONS(3805), 1, + anon_sym_for, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3900), 1, - anon_sym_RPAREN, - STATE(2730), 1, - aux_sym_union_type_repeat1, - STATE(2813), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158997] = 3, - ACTIONS(3902), 1, - anon_sym_DASH_GT, + ACTIONS(3919), 1, + anon_sym_RBRACE, + STATE(2629), 1, + sym_for_in_clause, + STATE(2748), 1, + aux_sym_dictionary_repeat1, + STATE(3088), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [159011] = 4, - STATE(2664), 1, + [159754] = 4, + STATE(1451), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 2, + ACTIONS(1325), 2, anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(3904), 2, + ACTIONS(3921), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [159027] = 4, - STATE(1452), 1, - aux_sym_dotted_name_repeat1, + [159770] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 2, - anon_sym_RBRACK, + ACTIONS(3832), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [159782] = 5, + ACTIONS(3923), 1, + anon_sym_EQ, + ACTIONS(3925), 1, anon_sym_PIPE, - ACTIONS(3904), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [159043] = 3, - STATE(2675), 1, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 4, + ACTIONS(3897), 2, anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [159057] = 6, - ACTIONS(3886), 1, + anon_sym_LPAREN, + [159800] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3906), 1, + ACTIONS(3929), 1, anon_sym_RPAREN, - STATE(2730), 1, + ACTIONS(3931), 1, + anon_sym_PIPE, + STATE(2727), 1, aux_sym_union_type_repeat1, - STATE(2741), 1, + STATE(2754), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159077] = 4, - ACTIONS(3908), 1, + [159820] = 4, + ACTIONS(3781), 1, sym_identifier, - STATE(3202), 1, + STATE(2850), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2721), 3, + STATE(2679), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [159093] = 6, - ACTIONS(3886), 1, - anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3910), 1, - anon_sym_RPAREN, - STATE(2730), 1, - aux_sym_union_type_repeat1, - STATE(2852), 1, - aux_sym_function_type_repeat1, + [159836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159113] = 4, - STATE(1248), 1, + ACTIONS(3933), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [159848] = 4, + STATE(2678), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 2, - anon_sym_RBRACE, + ACTIONS(1329), 2, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(3912), 2, + ACTIONS(3921), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [159129] = 4, - ACTIONS(3914), 1, - anon_sym_PIPE, - STATE(2670), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1501), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - [159145] = 4, - STATE(2669), 1, - aux_sym_dotted_name_repeat1, + [159864] = 4, + ACTIONS(3935), 1, + sym_identifier, + STATE(2928), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - ACTIONS(3912), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [159161] = 6, - ACTIONS(3886), 1, + STATE(2679), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159880] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3931), 1, anon_sym_PIPE, - ACTIONS(3917), 1, + ACTIONS(3937), 1, anon_sym_RPAREN, - STATE(2730), 1, + STATE(2727), 1, aux_sym_union_type_repeat1, - STATE(2811), 1, + STATE(2759), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159181] = 6, - ACTIONS(3886), 1, + [159900] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3931), 1, anon_sym_PIPE, - ACTIONS(3919), 1, + ACTIONS(3939), 1, anon_sym_RPAREN, - STATE(2730), 1, + STATE(2727), 1, aux_sym_union_type_repeat1, - STATE(2837), 1, + STATE(2853), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159201] = 6, - ACTIONS(3886), 1, + [159920] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3931), 1, anon_sym_PIPE, - ACTIONS(3921), 1, + ACTIONS(3941), 1, anon_sym_RPAREN, - STATE(2730), 1, + STATE(2727), 1, aux_sym_union_type_repeat1, - STATE(2735), 1, + STATE(2768), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159221] = 3, - STATE(2670), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1349), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [159235] = 6, - ACTIONS(3886), 1, + [159940] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3931), 1, anon_sym_PIPE, - ACTIONS(3923), 1, + ACTIONS(3943), 1, anon_sym_RPAREN, - STATE(2730), 1, + STATE(2727), 1, aux_sym_union_type_repeat1, - STATE(2850), 1, + STATE(2794), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159255] = 6, - ACTIONS(3886), 1, + [159960] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3931), 1, anon_sym_PIPE, - ACTIONS(3925), 1, + ACTIONS(3945), 1, anon_sym_RPAREN, - STATE(2730), 1, + STATE(2727), 1, aux_sym_union_type_repeat1, - STATE(2881), 1, + STATE(2897), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159275] = 6, - ACTIONS(3886), 1, + [159980] = 4, + ACTIONS(3935), 1, + sym_identifier, + STATE(2960), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2679), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159996] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3931), 1, anon_sym_PIPE, - ACTIONS(3927), 1, + ACTIONS(3947), 1, anon_sym_RPAREN, - STATE(2730), 1, + STATE(2727), 1, aux_sym_union_type_repeat1, - STATE(2824), 1, + STATE(2840), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159295] = 6, - ACTIONS(3886), 1, + [160016] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3931), 1, anon_sym_PIPE, - ACTIONS(3929), 1, + ACTIONS(3949), 1, anon_sym_RPAREN, - STATE(2730), 1, + STATE(2727), 1, aux_sym_union_type_repeat1, - STATE(2782), 1, + STATE(2827), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159315] = 3, - ACTIONS(3931), 1, - anon_sym_DASH_GT, + [160036] = 4, + STATE(2696), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1341), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(1329), 2, + anon_sym_RBRACE, anon_sym_PIPE, - [159329] = 4, - ACTIONS(3908), 1, - sym_identifier, - STATE(3073), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2721), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159345] = 3, - STATE(2675), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1465), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3951), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [160052] = 6, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, anon_sym_PIPE, - [159359] = 3, - ACTIONS(3933), 1, - anon_sym_DASH_GT, + ACTIONS(3953), 1, + anon_sym_RPAREN, + STATE(2727), 1, + aux_sym_union_type_repeat1, + STATE(2805), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1536), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [159373] = 3, - ACTIONS(3935), 1, - anon_sym_DASH_GT, + [160072] = 4, + STATE(1284), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1536), 3, - sym__newline, - anon_sym_EQ, + ACTIONS(1325), 2, + anon_sym_RBRACE, anon_sym_PIPE, - [159386] = 4, - ACTIONS(3937), 1, + ACTIONS(3951), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [160088] = 6, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, anon_sym_PIPE, - STATE(2685), 1, + ACTIONS(3955), 1, + anon_sym_RPAREN, + STATE(2727), 1, aux_sym_union_type_repeat1, + STATE(2797), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 2, - sym__newline, - anon_sym_EQ, - [159401] = 5, - ACTIONS(3787), 1, - anon_sym_COLON, - ACTIONS(3940), 1, - anon_sym_EQ, - ACTIONS(3942), 1, + [160108] = 6, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, anon_sym_PIPE, - STATE(2675), 1, + ACTIONS(3957), 1, + anon_sym_RPAREN, + STATE(2727), 1, aux_sym_union_type_repeat1, + STATE(2854), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159418] = 5, - ACTIONS(3944), 1, - anon_sym_EQ, - ACTIONS(3946), 1, + [160128] = 6, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, anon_sym_PIPE, - ACTIONS(3948), 1, - sym__newline, - STATE(2718), 1, + ACTIONS(3959), 1, + anon_sym_RPAREN, + STATE(2727), 1, aux_sym_union_type_repeat1, + STATE(2813), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159435] = 3, - STATE(2730), 1, + [160148] = 6, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, + anon_sym_PIPE, + ACTIONS(3961), 1, + anon_sym_RPAREN, + STATE(2727), 1, aux_sym_union_type_repeat1, + STATE(2908), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 3, + [160168] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3931), 1, anon_sym_PIPE, - [159448] = 3, - ACTIONS(3950), 1, - anon_sym_DASH_GT, + ACTIONS(3963), 1, + anon_sym_RPAREN, + STATE(2727), 1, + aux_sym_union_type_repeat1, + STATE(2750), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 3, + [160188] = 6, + ACTIONS(3927), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3931), 1, anon_sym_PIPE, - [159461] = 3, - STATE(2718), 1, + ACTIONS(3965), 1, + anon_sym_RPAREN, + STATE(2727), 1, aux_sym_union_type_repeat1, + STATE(2916), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 3, - sym__newline, - anon_sym_EQ, + [160208] = 4, + ACTIONS(3931), 1, anon_sym_PIPE, - [159474] = 4, - ACTIONS(3952), 1, - anon_sym_COMMA, STATE(2727), 1, - aux_sym__parameters_repeat1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3767), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [159489] = 3, - STATE(2718), 1, + ACTIONS(3967), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160223] = 4, + ACTIONS(3969), 1, + anon_sym_PIPE, + STATE(2704), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1465), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [159502] = 5, - ACTIONS(3102), 1, + ACTIONS(1385), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160238] = 5, + ACTIONS(3114), 1, anon_sym_RBRACE, - ACTIONS(3954), 1, + ACTIONS(3972), 1, anon_sym_COMMA, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_LF, - STATE(2701), 1, + STATE(2719), 1, aux_sym_config_entries_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [159519] = 3, - ACTIONS(3958), 1, + [160255] = 4, + ACTIONS(3976), 1, + anon_sym_COMMA, + STATE(2706), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3979), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [160270] = 3, + ACTIONS(3981), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 3, - sym__newline, + ACTIONS(1412), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [160283] = 5, + ACTIONS(3983), 1, anon_sym_EQ, + ACTIONS(3985), 1, anon_sym_PIPE, - [159532] = 3, - STATE(2730), 1, + ACTIONS(3987), 1, + sym__newline, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 3, + [160300] = 5, + ACTIONS(3989), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [159545] = 5, - ACTIONS(3946), 1, + ACTIONS(3991), 1, + anon_sym_RBRACE, + ACTIONS(3993), 1, + anon_sym_LF, + STATE(2822), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [160317] = 5, + ACTIONS(3985), 1, anon_sym_PIPE, - ACTIONS(3960), 1, + ACTIONS(3995), 1, anon_sym_EQ, - ACTIONS(3962), 1, + ACTIONS(3997), 1, sym__newline, - STATE(2718), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159562] = 5, - ACTIONS(3964), 1, + [160334] = 5, + ACTIONS(3993), 1, + anon_sym_LF, + ACTIONS(3999), 1, anon_sym_COMMA, - ACTIONS(3966), 1, + ACTIONS(4001), 1, anon_sym_RBRACE, - ACTIONS(3968), 1, - anon_sym_LF, - STATE(2816), 1, + STATE(2814), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [159579] = 3, - STATE(2718), 1, - aux_sym_union_type_repeat1, + [160351] = 4, + ACTIONS(1329), 1, + sym__newline, + STATE(2281), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3144), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [160366] = 3, + ACTIONS(4003), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 3, + ACTIONS(1412), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [159592] = 3, - ACTIONS(3970), 1, + [160379] = 3, + ACTIONS(4005), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1536), 3, + ACTIONS(1392), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [159605] = 5, - ACTIONS(3946), 1, - anon_sym_PIPE, - ACTIONS(3972), 1, - anon_sym_EQ, - ACTIONS(3974), 1, - sym__newline, - STATE(2718), 1, + [160392] = 3, + STATE(2727), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159622] = 5, - ACTIONS(3976), 1, + ACTIONS(1385), 3, anon_sym_COMMA, - ACTIONS(3979), 1, - anon_sym_RBRACE, - ACTIONS(3981), 1, - anon_sym_LF, - STATE(2701), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [159639] = 5, - ACTIONS(3946), 1, - anon_sym_PIPE, - ACTIONS(3984), 1, - anon_sym_EQ, - ACTIONS(3986), 1, - sym__newline, - STATE(2718), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [159656] = 5, - ACTIONS(3946), 1, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3988), 1, - anon_sym_EQ, - ACTIONS(3990), 1, - sym__newline, - STATE(2718), 1, + [160405] = 3, + STATE(2727), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159673] = 5, - ACTIONS(3968), 1, - anon_sym_LF, - ACTIONS(3992), 1, + ACTIONS(1442), 3, anon_sym_COMMA, - ACTIONS(3994), 1, - anon_sym_RBRACE, - STATE(2866), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [159690] = 3, - STATE(2718), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + [160418] = 3, + STATE(2732), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 3, + ACTIONS(1498), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [159703] = 4, - ACTIONS(3996), 1, - anon_sym_PIPE, - STATE(2706), 1, - aux_sym_union_type_repeat1, + [160431] = 4, + ACTIONS(3836), 1, + anon_sym_LBRACK, + ACTIONS(4007), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [159718] = 5, - ACTIONS(3968), 1, - anon_sym_LF, - ACTIONS(3999), 1, + ACTIONS(3832), 2, + anon_sym_COLON, + anon_sym_LPAREN, + [160446] = 5, + ACTIONS(4009), 1, anon_sym_COMMA, - ACTIONS(4001), 1, + ACTIONS(4012), 1, anon_sym_RBRACE, - STATE(2819), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [159735] = 5, - ACTIONS(3968), 1, + ACTIONS(4014), 1, anon_sym_LF, - ACTIONS(4003), 1, - anon_sym_COMMA, - ACTIONS(4005), 1, - anon_sym_RBRACE, - STATE(2739), 1, - aux_sym_dictionary_repeat1, + STATE(2719), 1, + aux_sym_config_entries_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [159752] = 5, - ACTIONS(3968), 1, + [160463] = 5, + ACTIONS(3993), 1, anon_sym_LF, - ACTIONS(4007), 1, + ACTIONS(4017), 1, anon_sym_COMMA, - ACTIONS(4009), 1, + ACTIONS(4019), 1, anon_sym_RBRACE, - STATE(2896), 1, + STATE(2781), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [159769] = 2, + [160480] = 3, + STATE(2727), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 4, + ACTIONS(1434), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [159780] = 5, - ACTIONS(3946), 1, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_EQ, - ACTIONS(4015), 1, - sym__newline, - STATE(2718), 1, + [160493] = 3, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159797] = 5, - ACTIONS(3968), 1, - anon_sym_LF, - ACTIONS(4017), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, - anon_sym_RBRACE, - STATE(2831), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [159814] = 5, - ACTIONS(3946), 1, + ACTIONS(1385), 3, + sym__newline, + anon_sym_EQ, anon_sym_PIPE, + [160506] = 3, ACTIONS(4021), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1392), 3, + sym__newline, anon_sym_EQ, + anon_sym_PIPE, + [160519] = 5, + ACTIONS(3985), 1, + anon_sym_PIPE, ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4025), 1, sym__newline, - STATE(2718), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159831] = 5, - ACTIONS(4025), 1, - anon_sym_COMMA, - ACTIONS(4027), 1, - anon_sym_RBRACE, - ACTIONS(4029), 1, - anon_sym_LF, - STATE(2693), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, + [160536] = 3, + STATE(2717), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159848] = 4, - ACTIONS(1595), 1, + ACTIONS(1337), 3, sym__newline, - STATE(2262), 1, - aux_sym_dotted_name_repeat1, + anon_sym_EQ, + anon_sym_PIPE, + [160549] = 4, + ACTIONS(4027), 1, + anon_sym_COMMA, + STATE(2706), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3122), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [159863] = 4, - ACTIONS(3890), 1, - anon_sym_PIPE, - STATE(2730), 1, + ACTIONS(3785), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [160564] = 3, + STATE(2704), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4031), 2, + ACTIONS(1498), 3, anon_sym_COMMA, anon_sym_RPAREN, - [159878] = 5, - ACTIONS(3968), 1, - anon_sym_LF, - ACTIONS(4033), 1, + anon_sym_PIPE, + [160577] = 4, + ACTIONS(4029), 1, anon_sym_COMMA, - ACTIONS(4035), 1, - anon_sym_RBRACE, - STATE(2812), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + STATE(2726), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159895] = 3, - STATE(2685), 1, - aux_sym_union_type_repeat1, + ACTIONS(4031), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [160592] = 3, + ACTIONS(4033), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1349), 3, + ACTIONS(1337), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [159908] = 3, + [160605] = 5, + ACTIONS(3985), 1, + anon_sym_PIPE, + ACTIONS(4035), 1, + anon_sym_EQ, ACTIONS(4037), 1, - anon_sym_DASH_GT, + sym__newline, + STATE(2717), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160622] = 3, + STATE(2717), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1341), 3, + ACTIONS(1434), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [159921] = 3, - STATE(2730), 1, + [160635] = 4, + ACTIONS(4039), 1, + anon_sym_PIPE, + STATE(2732), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1465), 3, + ACTIONS(1385), 2, + sym__newline, + anon_sym_EQ, + [160650] = 5, + ACTIONS(3993), 1, + anon_sym_LF, + ACTIONS(4042), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [159934] = 2, - ACTIONS(3), 2, + ACTIONS(4044), 1, + anon_sym_RBRACE, + STATE(2835), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3862), 4, + [160667] = 5, + ACTIONS(3993), 1, + anon_sym_LF, + ACTIONS(4046), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [159945] = 3, - STATE(2730), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + ACTIONS(4048), 1, + anon_sym_RBRACE, + STATE(2748), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 3, + [160684] = 5, + ACTIONS(4050), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4052), 1, + anon_sym_RBRACE, + ACTIONS(4054), 1, + anon_sym_LF, + STATE(2705), 1, + aux_sym_config_entries_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [160701] = 5, + ACTIONS(3985), 1, anon_sym_PIPE, - [159958] = 4, - ACTIONS(4039), 1, - anon_sym_COMMA, - STATE(2691), 1, - aux_sym__parameters_repeat1, + ACTIONS(4056), 1, + anon_sym_EQ, + ACTIONS(4058), 1, + sym__newline, + STATE(2717), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4041), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [159973] = 5, - ACTIONS(3946), 1, + [160718] = 5, + ACTIONS(3985), 1, anon_sym_PIPE, - ACTIONS(4043), 1, + ACTIONS(4060), 1, anon_sym_EQ, - ACTIONS(4045), 1, + ACTIONS(4062), 1, sym__newline, - STATE(2718), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159990] = 5, - ACTIONS(3968), 1, - anon_sym_LF, - ACTIONS(4047), 1, - anon_sym_COMMA, - ACTIONS(4049), 1, - anon_sym_RBRACE, - STATE(2889), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [160007] = 5, - ACTIONS(3946), 1, + [160735] = 5, + ACTIONS(3985), 1, anon_sym_PIPE, - ACTIONS(4051), 1, + ACTIONS(4064), 1, anon_sym_EQ, - ACTIONS(4053), 1, + ACTIONS(4066), 1, sym__newline, - STATE(2718), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160024] = 4, - ACTIONS(4055), 1, - anon_sym_COMMA, - STATE(2727), 1, - aux_sym__parameters_repeat1, + [160752] = 5, + ACTIONS(3985), 1, + anon_sym_PIPE, + ACTIONS(4068), 1, + anon_sym_EQ, + ACTIONS(4070), 1, + sym__newline, + STATE(2717), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4058), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [160039] = 3, - ACTIONS(4060), 1, + [160769] = 3, + ACTIONS(4072), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1341), 3, + ACTIONS(1337), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [160052] = 5, - ACTIONS(3968), 1, + [160782] = 3, + STATE(2717), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1442), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [160795] = 5, + ACTIONS(3993), 1, anon_sym_LF, - ACTIONS(4062), 1, + ACTIONS(4074), 1, anon_sym_COMMA, - ACTIONS(4064), 1, + ACTIONS(4076), 1, anon_sym_RBRACE, - STATE(2855), 1, + STATE(2863), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [160069] = 3, - STATE(2706), 1, + [160812] = 3, + STATE(2727), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1349), 3, + ACTIONS(1337), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [160082] = 3, - ACTIONS(3178), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3180), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160094] = 4, - ACTIONS(1099), 1, - anon_sym_RPAREN, - ACTIONS(4066), 1, - anon_sym_COMMA, - STATE(2865), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160108] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3178), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160118] = 4, - ACTIONS(4068), 1, - anon_sym_RBRACK, - ACTIONS(4070), 1, + [160825] = 5, + ACTIONS(3985), 1, anon_sym_PIPE, - STATE(2821), 1, + ACTIONS(4078), 1, + anon_sym_EQ, + ACTIONS(4080), 1, + sym__newline, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160132] = 4, - ACTIONS(3886), 1, + [160842] = 5, + ACTIONS(3993), 1, + anon_sym_LF, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4072), 1, - anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160146] = 4, - ACTIONS(2926), 1, + ACTIONS(4084), 1, anon_sym_RBRACE, - ACTIONS(4074), 1, - anon_sym_PIPE, - STATE(2882), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + STATE(2878), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [160160] = 4, - ACTIONS(4076), 1, + [160859] = 5, + ACTIONS(3993), 1, + anon_sym_LF, + ACTIONS(4086), 1, anon_sym_COMMA, - ACTIONS(4078), 1, - anon_sym_RBRACK, - STATE(2870), 1, - aux_sym_quant_target_repeat1, - ACTIONS(3), 2, + ACTIONS(4088), 1, + anon_sym_RBRACE, + STATE(2831), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [160174] = 4, - ACTIONS(2832), 1, + [160876] = 5, + ACTIONS(3993), 1, + anon_sym_LF, + ACTIONS(4090), 1, + anon_sym_COMMA, + ACTIONS(4092), 1, anon_sym_RBRACE, - ACTIONS(4074), 1, - anon_sym_PIPE, - STATE(2882), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + STATE(2756), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [160188] = 4, - ACTIONS(684), 1, + [160893] = 4, + ACTIONS(712), 1, anon_sym_RBRACE, - ACTIONS(4080), 1, + ACTIONS(4094), 1, anon_sym_COMMA, - STATE(2743), 1, + STATE(2889), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160202] = 4, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4082), 1, - anon_sym_RBRACK, - STATE(2821), 1, - aux_sym_union_type_repeat1, + [160907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160216] = 4, - ACTIONS(3886), 1, + ACTIONS(4096), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [160917] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(4084), 1, + ACTIONS(4098), 1, anon_sym_RPAREN, - STATE(2841), 1, + STATE(2851), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160230] = 4, - ACTIONS(4086), 1, + [160931] = 4, + ACTIONS(3244), 1, anon_sym_COMMA, - ACTIONS(4088), 1, + ACTIONS(3246), 1, anon_sym_RBRACK, - STATE(2757), 1, + STATE(2885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160244] = 4, - ACTIONS(4090), 1, - anon_sym_COMMA, - ACTIONS(4093), 1, + [160945] = 4, + ACTIONS(2866), 1, anon_sym_RBRACE, - STATE(2743), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4100), 1, + anon_sym_PIPE, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160258] = 4, - ACTIONS(1219), 1, - anon_sym_RPAREN, - ACTIONS(4095), 1, - anon_sym_COMMA, - STATE(2865), 1, - aux_sym_argument_list_repeat1, + [160959] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160272] = 4, - ACTIONS(3262), 1, + ACTIONS(4102), 3, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_for, + [160969] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3264), 1, + ACTIONS(4104), 1, anon_sym_RPAREN, - STATE(2764), 1, - aux_sym_argument_list_repeat1, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160286] = 4, - ACTIONS(1151), 1, - anon_sym_RPAREN, - ACTIONS(4097), 1, + [160983] = 4, + ACTIONS(3294), 1, anon_sym_COMMA, - STATE(2865), 1, + ACTIONS(3296), 1, + anon_sym_RPAREN, + STATE(2888), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160300] = 4, - ACTIONS(3230), 1, + [160997] = 4, + ACTIONS(740), 1, + anon_sym_RBRACE, + ACTIONS(4106), 1, anon_sym_COMMA, - ACTIONS(3232), 1, - anon_sym_RBRACK, - STATE(2766), 1, - aux_sym_subscript_repeat1, + STATE(2889), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160314] = 4, - ACTIONS(3942), 1, + [161011] = 4, + ACTIONS(4108), 1, + anon_sym_RBRACK, + ACTIONS(4110), 1, anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_COLON, - STATE(2675), 1, + STATE(2798), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160328] = 4, - ACTIONS(4101), 1, - anon_sym_COMMA, - ACTIONS(4103), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160342] = 4, - ACTIONS(4074), 1, + [161025] = 4, + ACTIONS(4100), 1, anon_sym_PIPE, - ACTIONS(4105), 1, + ACTIONS(4112), 1, anon_sym_RBRACE, - STATE(2882), 1, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160356] = 4, - ACTIONS(4107), 1, + [161039] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(4109), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160370] = 4, - ACTIONS(1197), 1, + ACTIONS(4114), 1, anon_sym_RPAREN, - ACTIONS(4111), 1, - anon_sym_COMMA, - STATE(2865), 1, - aux_sym_argument_list_repeat1, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160384] = 4, - ACTIONS(3886), 1, - anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, + [161053] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4116), 1, + anon_sym_COLON, + STATE(2619), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160398] = 4, - ACTIONS(3813), 1, + [161067] = 4, + ACTIONS(4118), 1, anon_sym_COMMA, - ACTIONS(3815), 1, - anon_sym_RBRACE, - STATE(2866), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4120), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160412] = 4, - ACTIONS(2946), 1, + [161081] = 4, + ACTIONS(2962), 1, anon_sym_RBRACE, - ACTIONS(4074), 1, + ACTIONS(4100), 1, anon_sym_PIPE, - STATE(2882), 1, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160426] = 2, + [161095] = 4, + ACTIONS(3346), 1, + anon_sym_COMMA, + ACTIONS(3348), 1, + anon_sym_RPAREN, + STATE(2773), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4115), 3, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_for, - [160436] = 4, - ACTIONS(4117), 1, + [161109] = 4, + ACTIONS(3256), 1, anon_sym_COMMA, - ACTIONS(4120), 1, + ACTIONS(3258), 1, anon_sym_RBRACK, - STATE(2757), 1, + STATE(2782), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160450] = 4, + [161123] = 4, + ACTIONS(1078), 1, + anon_sym_RPAREN, ACTIONS(4122), 1, anon_sym_COMMA, - ACTIONS(4124), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, + STATE(2836), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160464] = 4, - ACTIONS(3196), 1, + [161137] = 4, + ACTIONS(4124), 1, anon_sym_COMMA, - ACTIONS(3198), 1, + ACTIONS(4126), 1, anon_sym_RBRACK, - STATE(2780), 1, + STATE(2825), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160478] = 4, - ACTIONS(3322), 1, - anon_sym_COMMA, - ACTIONS(3324), 1, - anon_sym_RPAREN, - STATE(2746), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160492] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(4126), 1, - anon_sym_COLON, - STATE(2675), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160506] = 4, + [161151] = 4, ACTIONS(4128), 1, anon_sym_COMMA, ACTIONS(4130), 1, anon_sym_RBRACK, - STATE(2757), 1, + STATE(2825), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160520] = 2, + [161165] = 4, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4132), 1, + anon_sym_RPAREN, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4132), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160530] = 4, - ACTIONS(1187), 1, - anon_sym_RPAREN, + [161179] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, ACTIONS(4134), 1, - anon_sym_COMMA, - STATE(2865), 1, - aux_sym_argument_list_repeat1, + anon_sym_COLON, + STATE(2619), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160544] = 4, + [161193] = 4, ACTIONS(4136), 1, anon_sym_COMMA, ACTIONS(4138), 1, anon_sym_RBRACK, - STATE(2757), 1, + STATE(2825), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160558] = 4, + [161207] = 4, + ACTIONS(4100), 1, + anon_sym_PIPE, ACTIONS(4140), 1, - anon_sym_COMMA, - ACTIONS(4142), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, + anon_sym_RBRACE, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160572] = 4, - ACTIONS(4074), 1, - anon_sym_PIPE, - ACTIONS(4144), 1, + [161221] = 4, + ACTIONS(2894), 1, anon_sym_RBRACE, - STATE(2882), 1, + ACTIONS(4100), 1, + anon_sym_PIPE, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160586] = 4, - ACTIONS(4074), 1, - anon_sym_PIPE, - ACTIONS(4146), 1, - anon_sym_RBRACE, - STATE(2882), 1, - aux_sym_union_type_repeat1, + [161235] = 4, + ACTIONS(1050), 1, + anon_sym_RPAREN, + ACTIONS(4142), 1, + anon_sym_COMMA, + STATE(2836), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160600] = 4, - ACTIONS(2914), 1, - anon_sym_RBRACE, - ACTIONS(4074), 1, - anon_sym_PIPE, - STATE(2882), 1, - aux_sym_union_type_repeat1, + [161249] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160614] = 4, - ACTIONS(4148), 1, + ACTIONS(4102), 3, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_for, + [161259] = 4, + ACTIONS(3232), 1, anon_sym_COMMA, - ACTIONS(4150), 1, + ACTIONS(3234), 1, anon_sym_RBRACK, - STATE(2757), 1, + STATE(2770), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160628] = 4, - ACTIONS(3886), 1, + [161273] = 4, + ACTIONS(3290), 1, anon_sym_COMMA, - ACTIONS(4152), 1, + ACTIONS(3292), 1, anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, + STATE(2765), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160642] = 4, - ACTIONS(4154), 1, + [161287] = 4, + ACTIONS(4144), 1, anon_sym_COMMA, - ACTIONS(4156), 1, + ACTIONS(4146), 1, anon_sym_RBRACK, - STATE(2757), 1, + STATE(2825), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160656] = 4, - ACTIONS(4158), 1, + [161301] = 4, + ACTIONS(4148), 1, anon_sym_COMMA, - ACTIONS(4160), 1, + ACTIONS(4151), 1, anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, + STATE(2778), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160670] = 4, - ACTIONS(3773), 1, - anon_sym_COMMA, - ACTIONS(3775), 1, + [161315] = 4, + ACTIONS(4100), 1, + anon_sym_PIPE, + ACTIONS(4153), 1, anon_sym_RBRACE, - STATE(2739), 1, - aux_sym_dictionary_repeat1, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160684] = 4, - ACTIONS(3942), 1, + [161329] = 4, + ACTIONS(4110), 1, anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2675), 1, + ACTIONS(4155), 1, + anon_sym_RBRACK, + STATE(2798), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160698] = 2, + [161343] = 4, + ACTIONS(698), 1, + anon_sym_RBRACE, + ACTIONS(4157), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4058), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [160708] = 4, - ACTIONS(3132), 1, + [161357] = 4, + ACTIONS(4159), 1, anon_sym_COMMA, - ACTIONS(4164), 1, + ACTIONS(4161), 1, anon_sym_RBRACK, - STATE(2806), 1, - aux_sym__collection_elements_repeat1, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160722] = 4, - ACTIONS(880), 1, - anon_sym_RPAREN, - ACTIONS(4166), 1, + [161371] = 4, + ACTIONS(4163), 1, anon_sym_COMMA, - STATE(2865), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4165), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160736] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(4168), 1, - anon_sym_LBRACE, - STATE(2675), 1, - aux_sym_union_type_repeat1, + [161385] = 4, + ACTIONS(4167), 1, + anon_sym_COMMA, + ACTIONS(4169), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160750] = 4, - ACTIONS(4170), 1, + [161399] = 4, + ACTIONS(3903), 1, anon_sym_COMMA, - ACTIONS(4172), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, + ACTIONS(3905), 1, + anon_sym_RBRACE, + STATE(2814), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160764] = 4, - ACTIONS(2942), 1, + [161413] = 4, + ACTIONS(1385), 1, anon_sym_RBRACE, - ACTIONS(4074), 1, + ACTIONS(4171), 1, anon_sym_PIPE, - STATE(2882), 1, + STATE(2786), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160778] = 4, - ACTIONS(3886), 1, - anon_sym_COMMA, - ACTIONS(4174), 1, + [161427] = 4, + ACTIONS(1223), 1, anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, + ACTIONS(4174), 1, + anon_sym_COMMA, + STATE(2836), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160792] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, + [161441] = 4, + ACTIONS(1128), 1, + anon_sym_RPAREN, ACTIONS(4176), 1, - anon_sym_LBRACE, - STATE(2675), 1, - aux_sym_union_type_repeat1, + anon_sym_COMMA, + STATE(2836), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160806] = 4, - ACTIONS(4074), 1, - anon_sym_PIPE, - ACTIONS(4178), 1, + [161455] = 4, + ACTIONS(2892), 1, anon_sym_RBRACE, - STATE(2882), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160820] = 4, - ACTIONS(3942), 1, + ACTIONS(4100), 1, anon_sym_PIPE, - ACTIONS(4180), 1, - anon_sym_LBRACE, - STATE(2675), 1, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160834] = 4, - ACTIONS(4182), 1, + [161469] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(4184), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160848] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(4186), 1, - anon_sym_LBRACE, - STATE(2675), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160862] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(4188), 1, - anon_sym_LBRACE, - STATE(2675), 1, - aux_sym_union_type_repeat1, + ACTIONS(3878), 1, + anon_sym_RBRACE, + STATE(2863), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160876] = 4, - ACTIONS(3886), 1, + [161483] = 4, + ACTIONS(3350), 1, anon_sym_COMMA, - ACTIONS(4190), 1, + ACTIONS(3352), 1, anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, + STATE(2848), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160890] = 4, - ACTIONS(4074), 1, - anon_sym_PIPE, - ACTIONS(4192), 1, + [161497] = 4, + ACTIONS(3840), 1, + anon_sym_COMMA, + ACTIONS(3842), 1, anon_sym_RBRACE, - STATE(2882), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160904] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(4194), 1, - anon_sym_LBRACE, - STATE(2675), 1, - aux_sym_union_type_repeat1, + STATE(2756), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160918] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, - anon_sym_COLON, - STATE(2675), 1, - aux_sym_union_type_repeat1, + [161511] = 4, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RBRACE, + STATE(2831), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160932] = 4, - ACTIONS(3886), 1, + [161525] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(4198), 1, + ACTIONS(4178), 1, anon_sym_RPAREN, - STATE(2841), 1, + STATE(2851), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160946] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_LBRACE, - STATE(2675), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160960] = 4, - ACTIONS(4202), 1, + [161539] = 4, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4204), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, + ACTIONS(3919), 1, + anon_sym_RBRACE, + STATE(2748), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160974] = 4, - ACTIONS(3234), 1, + [161553] = 4, + ACTIONS(3200), 1, anon_sym_COMMA, - ACTIONS(3236), 1, + ACTIONS(3204), 1, anon_sym_RBRACK, - STATE(2772), 1, + STATE(2783), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160988] = 4, - ACTIONS(936), 1, - anon_sym_RPAREN, - ACTIONS(4206), 1, - anon_sym_COMMA, - STATE(2865), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161002] = 4, - ACTIONS(3312), 1, + [161567] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(3314), 1, + ACTIONS(4180), 1, anon_sym_RPAREN, - STATE(2778), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161016] = 4, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4208), 1, - anon_sym_RBRACK, - STATE(2821), 1, - aux_sym_union_type_repeat1, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161030] = 3, - STATE(2821), 1, + [161581] = 3, + STATE(2873), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 2, + ACTIONS(1498), 2, anon_sym_RBRACK, anon_sym_PIPE, - [161042] = 3, - ACTIONS(4210), 1, - anon_sym_DASH_GT, + [161593] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4182), 1, + anon_sym_LBRACE, + STATE(2619), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1341), 2, - anon_sym_RBRACK, + [161607] = 4, + ACTIONS(3925), 1, anon_sym_PIPE, - [161054] = 4, - ACTIONS(3208), 1, - anon_sym_COMMA, - ACTIONS(3210), 1, - anon_sym_RBRACK, - STATE(2749), 1, - aux_sym_subscript_repeat1, + ACTIONS(4184), 1, + anon_sym_COLON, + STATE(2619), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161068] = 4, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - STATE(2855), 1, - aux_sym_dictionary_repeat1, + [161621] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4186), 1, + anon_sym_LBRACE, + STATE(2619), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161082] = 4, - ACTIONS(3326), 1, + [161635] = 4, + ACTIONS(3356), 1, anon_sym_COMMA, - ACTIONS(3328), 1, + ACTIONS(3358), 1, anon_sym_RPAREN, - STATE(2752), 1, + STATE(2788), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161096] = 4, - ACTIONS(4212), 1, - sym_identifier, - ACTIONS(4214), 1, - anon_sym_DOT, - STATE(2805), 1, - aux_sym_import_prefix_repeat1, + [161649] = 4, + ACTIONS(3228), 1, + anon_sym_COMMA, + ACTIONS(3230), 1, + anon_sym_RBRACK, + STATE(2761), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161110] = 4, - ACTIONS(3352), 1, - anon_sym_RBRACK, - ACTIONS(4217), 1, + [161663] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, + anon_sym_LBRACE, + STATE(2619), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161677] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - STATE(2806), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4190), 1, + anon_sym_RPAREN, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161124] = 4, - ACTIONS(4070), 1, + [161691] = 4, + ACTIONS(3925), 1, anon_sym_PIPE, - ACTIONS(4220), 1, - anon_sym_RBRACK, - STATE(2821), 1, + ACTIONS(4192), 1, + anon_sym_LBRACE, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161138] = 4, - ACTIONS(3942), 1, + [161705] = 4, + ACTIONS(3925), 1, anon_sym_PIPE, - ACTIONS(4222), 1, + ACTIONS(4194), 1, anon_sym_COLON, - STATE(2675), 1, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161152] = 4, - ACTIONS(1501), 1, - anon_sym_RBRACE, - ACTIONS(4224), 1, + [161719] = 4, + ACTIONS(4110), 1, anon_sym_PIPE, - STATE(2809), 1, + ACTIONS(4196), 1, + anon_sym_RBRACK, + STATE(2798), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161166] = 3, - ACTIONS(4227), 1, + [161733] = 3, + ACTIONS(4200), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3979), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161178] = 4, - ACTIONS(3886), 1, + ACTIONS(4198), 2, anon_sym_COMMA, - ACTIONS(4229), 1, - anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161192] = 4, - ACTIONS(698), 1, anon_sym_RBRACE, - ACTIONS(4231), 1, - anon_sym_COMMA, - STATE(2743), 1, - aux_sym_dictionary_repeat1, + [161745] = 4, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4202), 1, + anon_sym_RBRACK, + STATE(2798), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161206] = 4, - ACTIONS(3886), 1, - anon_sym_COMMA, - ACTIONS(4233), 1, - anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, + [161759] = 4, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4204), 1, + anon_sym_RBRACK, + STATE(2798), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161220] = 4, - ACTIONS(3942), 1, + [161773] = 4, + ACTIONS(3925), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(2675), 1, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161234] = 3, - ACTIONS(4237), 1, - anon_sym_DASH_GT, + [161787] = 4, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4208), 1, + anon_sym_RPAREN, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [161246] = 4, - ACTIONS(726), 1, + [161801] = 4, + ACTIONS(742), 1, anon_sym_RBRACE, - ACTIONS(4239), 1, + ACTIONS(4210), 1, anon_sym_COMMA, - STATE(2743), 1, + STATE(2889), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161260] = 4, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(3884), 1, - anon_sym_RBRACE, - STATE(2831), 1, - aux_sym_dictionary_repeat1, + [161815] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4212), 1, + anon_sym_LBRACE, + STATE(2619), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161274] = 4, - ACTIONS(3835), 1, + [161829] = 4, + ACTIONS(3324), 1, anon_sym_COMMA, - ACTIONS(3837), 1, - anon_sym_RBRACE, - STATE(2816), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3326), 1, + anon_sym_RPAREN, + STATE(2787), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161288] = 4, - ACTIONS(720), 1, - anon_sym_RBRACE, - ACTIONS(4241), 1, - anon_sym_COMMA, - STATE(2743), 1, - aux_sym_dictionary_repeat1, + [161843] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4214), 1, + anon_sym_LBRACE, + STATE(2619), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161302] = 3, - ACTIONS(4245), 1, - anon_sym_LF, - ACTIONS(5), 2, + [161857] = 4, + ACTIONS(3402), 1, + anon_sym_RBRACK, + ACTIONS(4216), 1, + anon_sym_COMMA, + STATE(2818), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4243), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161314] = 3, - STATE(2890), 1, + [161871] = 3, + STATE(2798), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1349), 2, + ACTIONS(1434), 2, anon_sym_RBRACK, anon_sym_PIPE, - [161326] = 3, - ACTIONS(4249), 1, - anon_sym_LF, - ACTIONS(5), 2, + [161883] = 4, + ACTIONS(3791), 1, + sym_identifier, + STATE(2917), 1, + sym_dotted_name, + STATE(3074), 1, + sym_aliased_import, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4247), 2, + [161897] = 4, + ACTIONS(3911), 1, anon_sym_COMMA, + ACTIONS(3913), 1, anon_sym_RBRACE, - [161338] = 4, - ACTIONS(2934), 1, - anon_sym_RBRACE, - ACTIONS(4074), 1, - anon_sym_PIPE, - STATE(2882), 1, - aux_sym_union_type_repeat1, + STATE(2878), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161352] = 4, - ACTIONS(3886), 1, + [161911] = 4, + ACTIONS(732), 1, + anon_sym_RBRACE, + ACTIONS(4219), 1, anon_sym_COMMA, - ACTIONS(4251), 1, - anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161366] = 4, - ACTIONS(3769), 1, - sym_identifier, - STATE(2922), 1, - sym_dotted_name, - STATE(3016), 1, - sym_aliased_import, + STATE(2889), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161380] = 4, - ACTIONS(4070), 1, + [161925] = 4, + ACTIONS(4110), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4221), 1, anon_sym_RBRACK, - STATE(2821), 1, + STATE(2798), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161394] = 4, - ACTIONS(4255), 1, + [161939] = 4, + ACTIONS(4223), 1, sym_identifier, - ACTIONS(4257), 1, + ACTIONS(4225), 1, anon_sym_DOT, - STATE(2805), 1, + STATE(2881), 1, aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161408] = 3, - STATE(2821), 1, - aux_sym_union_type_repeat1, + [161953] = 4, + ACTIONS(4227), 1, + anon_sym_COMMA, + ACTIONS(4230), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1465), 2, + [161967] = 4, + ACTIONS(4232), 1, + anon_sym_COMMA, + ACTIONS(4234), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [161420] = 3, - ACTIONS(4132), 1, - anon_sym_LF, - ACTIONS(5), 2, + STATE(2778), 1, + aux_sym_quant_target_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4259), 2, + [161981] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [161432] = 4, - ACTIONS(4070), 1, + ACTIONS(4236), 1, + anon_sym_RPAREN, + STATE(2851), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161995] = 4, + ACTIONS(3925), 1, anon_sym_PIPE, - ACTIONS(4261), 1, - anon_sym_RBRACK, - STATE(2821), 1, + ACTIONS(4238), 1, + anon_sym_LBRACE, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161446] = 4, - ACTIONS(696), 1, - anon_sym_RBRACE, - ACTIONS(4263), 1, - anon_sym_COMMA, - STATE(2743), 1, - aux_sym_dictionary_repeat1, + [162009] = 4, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4240), 1, + anon_sym_RBRACK, + STATE(2798), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161460] = 4, - ACTIONS(3862), 1, - anon_sym_COLON, - ACTIONS(3866), 1, - anon_sym_LBRACK, - ACTIONS(4265), 1, - anon_sym_EQ, + [162023] = 4, + ACTIONS(3825), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_RBRACE, + STATE(2781), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161474] = 4, - ACTIONS(3290), 1, + [162037] = 4, + ACTIONS(708), 1, + anon_sym_RBRACE, + ACTIONS(4242), 1, anon_sym_COMMA, - ACTIONS(3292), 1, - anon_sym_RPAREN, - STATE(2868), 1, - aux_sym_argument_list_repeat1, + STATE(2889), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161488] = 4, - ACTIONS(3132), 1, - anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_RBRACK, - STATE(2777), 1, - aux_sym__collection_elements_repeat1, + [162051] = 3, + STATE(2798), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161502] = 4, - ACTIONS(3942), 1, + ACTIONS(1442), 2, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(4267), 1, + [162063] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4244), 1, anon_sym_COLON, - STATE(2675), 1, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161516] = 4, - ACTIONS(3182), 1, + [162077] = 4, + ACTIONS(3328), 1, anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RBRACK, - STATE(2877), 1, - aux_sym_subscript_repeat1, + ACTIONS(3330), 1, + anon_sym_RPAREN, + STATE(2862), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161530] = 4, - ACTIONS(3886), 1, + [162091] = 4, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4246), 1, anon_sym_COMMA, - ACTIONS(4269), 1, - anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, + STATE(2889), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161544] = 4, - ACTIONS(1209), 1, + [162105] = 4, + ACTIONS(3444), 1, anon_sym_RPAREN, - ACTIONS(4271), 1, + ACTIONS(4248), 1, anon_sym_COMMA, - STATE(2865), 1, + STATE(2836), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161558] = 4, - ACTIONS(3238), 1, + [162119] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3222), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162129] = 4, + ACTIONS(3214), 1, anon_sym_COMMA, - ACTIONS(3240), 1, + ACTIONS(3216), 1, anon_sym_RBRACK, - STATE(2898), 1, + STATE(2865), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161572] = 4, - ACTIONS(4074), 1, - anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_RBRACE, - STATE(2882), 1, - aux_sym_union_type_repeat1, + [162143] = 3, + ACTIONS(4251), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161586] = 4, - ACTIONS(4031), 1, - anon_sym_RPAREN, - ACTIONS(4275), 1, + ACTIONS(1337), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [162155] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - STATE(2841), 1, + ACTIONS(4253), 1, + anon_sym_RPAREN, + STATE(2851), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161600] = 4, - ACTIONS(4074), 1, + [162169] = 4, + ACTIONS(3925), 1, anon_sym_PIPE, - ACTIONS(4278), 1, - anon_sym_RBRACE, - STATE(2882), 1, + ACTIONS(4255), 1, + anon_sym_LBRACE, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161614] = 4, - ACTIONS(3188), 1, - anon_sym_COMMA, - ACTIONS(3190), 1, - anon_sym_RBRACK, - STATE(2786), 1, - aux_sym_subscript_repeat1, + [162183] = 4, + ACTIONS(4100), 1, + anon_sym_PIPE, + ACTIONS(4257), 1, + anon_sym_RBRACE, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161628] = 4, - ACTIONS(4074), 1, + [162197] = 4, + ACTIONS(4100), 1, anon_sym_PIPE, - ACTIONS(4280), 1, + ACTIONS(4259), 1, anon_sym_RBRACE, - STATE(2882), 1, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161642] = 4, - ACTIONS(3304), 1, + [162211] = 4, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3306), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3152), 1, + anon_sym_RBRACK, + STATE(2867), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161656] = 4, - ACTIONS(4282), 1, + [162225] = 4, + ACTIONS(4261), 1, anon_sym_COMMA, - ACTIONS(4284), 1, + ACTIONS(4263), 1, anon_sym_RBRACK, - STATE(2757), 1, + STATE(2825), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161670] = 4, - ACTIONS(4286), 1, + [162239] = 4, + ACTIONS(2980), 1, + anon_sym_RBRACE, + ACTIONS(4100), 1, + anon_sym_PIPE, + STATE(2900), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162253] = 4, + ACTIONS(4265), 1, anon_sym_COMMA, - ACTIONS(4288), 1, + ACTIONS(4267), 1, anon_sym_RBRACK, - STATE(2757), 1, + STATE(2825), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161684] = 4, - ACTIONS(3856), 1, + [162267] = 4, + ACTIONS(1048), 1, + anon_sym_RPAREN, + ACTIONS(4269), 1, anon_sym_COMMA, - ACTIONS(3858), 1, - anon_sym_RBRACE, - STATE(2896), 1, - aux_sym_dictionary_repeat1, + STATE(2836), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161698] = 3, - STATE(2821), 1, + [162281] = 4, + ACTIONS(4100), 1, + anon_sym_PIPE, + ACTIONS(4271), 1, + anon_sym_RBRACE, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [161710] = 4, - ACTIONS(3886), 1, + [162295] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3979), 3, anon_sym_COMMA, - ACTIONS(4290), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [162305] = 4, + ACTIONS(3967), 1, anon_sym_RPAREN, - STATE(2841), 1, + ACTIONS(4273), 1, + anon_sym_COMMA, + STATE(2851), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161724] = 4, - ACTIONS(2878), 1, + [162319] = 4, + ACTIONS(2982), 1, anon_sym_RBRACE, - ACTIONS(4074), 1, + ACTIONS(4100), 1, anon_sym_PIPE, - STATE(2882), 1, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161738] = 4, - ACTIONS(3886), 1, + [162333] = 4, + ACTIONS(3927), 1, anon_sym_COMMA, - ACTIONS(4292), 1, + ACTIONS(4276), 1, anon_sym_RPAREN, - STATE(2841), 1, + STATE(2851), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161752] = 4, - ACTIONS(3942), 1, - anon_sym_PIPE, - ACTIONS(4294), 1, - anon_sym_COLON, - STATE(2675), 1, - aux_sym_union_type_repeat1, + [162347] = 4, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4278), 1, + anon_sym_RPAREN, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161766] = 4, - ACTIONS(3224), 1, + [162361] = 4, + ACTIONS(3210), 1, anon_sym_COMMA, - ACTIONS(3226), 1, + ACTIONS(3212), 1, anon_sym_RBRACK, - STATE(2846), 1, + STATE(2845), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161780] = 4, - ACTIONS(716), 1, - anon_sym_RBRACE, - ACTIONS(4296), 1, + [162375] = 4, + ACTIONS(3298), 1, anon_sym_COMMA, - STATE(2743), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3300), 1, + anon_sym_RPAREN, + STATE(2903), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161794] = 4, - ACTIONS(3318), 1, + [162389] = 3, + ACTIONS(4280), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4012), 2, anon_sym_COMMA, - ACTIONS(3320), 1, - anon_sym_RPAREN, - STATE(2732), 1, - aux_sym_argument_list_repeat1, + anon_sym_RBRACE, + [162401] = 4, + ACTIONS(4282), 1, + anon_sym_COMMA, + ACTIONS(4284), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161808] = 4, - ACTIONS(3946), 1, + [162415] = 4, + ACTIONS(3925), 1, anon_sym_PIPE, - ACTIONS(4298), 1, - sym__newline, - STATE(2718), 1, + ACTIONS(4286), 1, + anon_sym_COLON, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161822] = 2, - ACTIONS(3), 2, + [162429] = 3, + ACTIONS(4290), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4300), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [161832] = 4, - ACTIONS(3200), 1, + ACTIONS(4288), 2, anon_sym_COMMA, - ACTIONS(3202), 1, + anon_sym_RBRACE, + [162441] = 4, + ACTIONS(4110), 1, + anon_sym_PIPE, + ACTIONS(4292), 1, anon_sym_RBRACK, - STATE(2758), 1, - aux_sym_subscript_repeat1, + STATE(2798), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161846] = 4, - ACTIONS(2894), 1, + [162455] = 4, + ACTIONS(1034), 1, + anon_sym_RPAREN, + ACTIONS(4294), 1, + anon_sym_COMMA, + STATE(2836), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162469] = 4, + ACTIONS(714), 1, anon_sym_RBRACE, - ACTIONS(4074), 1, - anon_sym_PIPE, - STATE(2882), 1, - aux_sym_union_type_repeat1, + ACTIONS(4296), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161860] = 4, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, + [162483] = 4, + ACTIONS(4298), 1, + anon_sym_COMMA, + ACTIONS(4300), 1, anon_sym_RBRACK, - STATE(2821), 1, - aux_sym_union_type_repeat1, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161874] = 4, - ACTIONS(4070), 1, - anon_sym_PIPE, + [162497] = 4, + ACTIONS(4302), 1, + anon_sym_COMMA, ACTIONS(4304), 1, anon_sym_RBRACK, - STATE(2821), 1, - aux_sym_union_type_repeat1, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161888] = 3, + [162511] = 4, + ACTIONS(4100), 1, + anon_sym_PIPE, ACTIONS(4306), 1, - anon_sym_DASH_GT, + anon_sym_RBRACE, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1536), 2, + [162525] = 4, + ACTIONS(3150), 1, + anon_sym_COMMA, + ACTIONS(4308), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [161900] = 3, - ACTIONS(3968), 1, - anon_sym_LF, - ACTIONS(5), 2, + STATE(2818), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4308), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161912] = 4, - ACTIONS(3412), 1, - anon_sym_RPAREN, + [162539] = 4, ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2865), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4312), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - [161926] = 4, - ACTIONS(732), 1, - anon_sym_RBRACE, - ACTIONS(4313), 1, - anon_sym_COMMA, - STATE(2743), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, + sym_line_continuation, + [162553] = 3, + ACTIONS(3993), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161940] = 4, - ACTIONS(3342), 1, + ACTIONS(4314), 2, anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_RPAREN, - STATE(2838), 1, - aux_sym_argument_list_repeat1, + anon_sym_RBRACE, + [162565] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4316), 1, + anon_sym_COLON, + STATE(2619), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161954] = 4, - ACTIONS(1026), 1, + [162579] = 4, + ACTIONS(926), 1, anon_sym_RPAREN, - ACTIONS(4315), 1, + ACTIONS(4318), 1, anon_sym_COMMA, - STATE(2865), 1, + STATE(2836), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161968] = 4, - ACTIONS(3942), 1, + [162593] = 3, + STATE(2798), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1337), 2, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(4317), 1, - anon_sym_EQ, - STATE(2675), 1, + [162605] = 4, + ACTIONS(1385), 1, + anon_sym_RBRACK, + ACTIONS(4320), 1, + anon_sym_PIPE, + STATE(2873), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161982] = 4, - ACTIONS(4319), 1, - anon_sym_COMMA, - ACTIONS(4322), 1, + [162619] = 3, + STATE(2798), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1385), 2, anon_sym_RBRACK, - STATE(2870), 1, - aux_sym_quant_target_repeat1, + anon_sym_PIPE, + [162631] = 3, + ACTIONS(4323), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161996] = 4, - ACTIONS(3942), 1, + ACTIONS(1392), 2, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(4324), 1, - anon_sym_COLON, - STATE(2675), 1, + [162643] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4325), 1, + anon_sym_EQ, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162010] = 4, - ACTIONS(3886), 1, - anon_sym_COMMA, - ACTIONS(4326), 1, - anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, + [162657] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162024] = 4, - ACTIONS(3823), 1, - anon_sym_COMMA, - ACTIONS(3825), 1, + ACTIONS(4200), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162667] = 4, + ACTIONS(710), 1, anon_sym_RBRACE, - STATE(2819), 1, + ACTIONS(4327), 1, + anon_sym_COMMA, + STATE(2889), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162038] = 4, - ACTIONS(4328), 1, + [162681] = 4, + ACTIONS(3888), 1, anon_sym_COMMA, - ACTIONS(4330), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162052] = 4, - ACTIONS(2508), 1, - anon_sym_LPAREN, - ACTIONS(4332), 1, - anon_sym_RPAREN, - STATE(3018), 1, - sym_argument_list, + ACTIONS(3890), 1, + anon_sym_RBRACE, + STATE(2822), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162066] = 4, - ACTIONS(2880), 1, - anon_sym_RBRACE, - ACTIONS(4074), 1, - anon_sym_PIPE, - STATE(2882), 1, - aux_sym_union_type_repeat1, + [162695] = 3, + ACTIONS(4329), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162080] = 4, - ACTIONS(4334), 1, - anon_sym_COMMA, - ACTIONS(4336), 1, + ACTIONS(1412), 2, anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [162707] = 4, + ACTIONS(4331), 1, + sym_identifier, + ACTIONS(4333), 1, + anon_sym_DOT, + STATE(2881), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162094] = 4, - ACTIONS(3942), 1, + [162721] = 4, + ACTIONS(3925), 1, anon_sym_PIPE, - ACTIONS(4338), 1, + ACTIONS(4336), 1, anon_sym_COLON, - STATE(2675), 1, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162108] = 4, - ACTIONS(3338), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, + [162735] = 4, + ACTIONS(2532), 1, + anon_sym_LPAREN, + ACTIONS(4338), 1, anon_sym_RPAREN, - STATE(2744), 1, - aux_sym_argument_list_repeat1, + STATE(3013), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162122] = 4, - ACTIONS(3942), 1, + [162749] = 4, + ACTIONS(4110), 1, anon_sym_PIPE, ACTIONS(4340), 1, - anon_sym_COLON, - STATE(2675), 1, + anon_sym_RBRACK, + STATE(2798), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162136] = 4, - ACTIONS(3886), 1, - anon_sym_COMMA, + [162763] = 4, ACTIONS(4342), 1, - anon_sym_RPAREN, - STATE(2841), 1, - aux_sym_function_type_repeat1, + anon_sym_COMMA, + ACTIONS(4344), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162150] = 3, - STATE(2809), 1, - aux_sym_union_type_repeat1, + [162777] = 4, + ACTIONS(4346), 1, + anon_sym_COMMA, + ACTIONS(4348), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1349), 2, - anon_sym_RBRACE, + [162791] = 4, + ACTIONS(4100), 1, anon_sym_PIPE, - [162162] = 2, + ACTIONS(4350), 1, + anon_sym_RBRACE, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4115), 3, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [162172] = 3, - STATE(2882), 1, - aux_sym_union_type_repeat1, + [162805] = 4, + ACTIONS(1229), 1, + anon_sym_RPAREN, + ACTIONS(4352), 1, + anon_sym_COMMA, + STATE(2836), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [162184] = 4, - ACTIONS(3805), 1, + [162819] = 4, + ACTIONS(4354), 1, anon_sym_COMMA, - ACTIONS(3807), 1, + ACTIONS(4357), 1, anon_sym_RBRACE, - STATE(2812), 1, + STATE(2889), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162198] = 3, - STATE(2882), 1, + [162833] = 4, + ACTIONS(3925), 1, + anon_sym_PIPE, + ACTIONS(4359), 1, + anon_sym_COLON, + STATE(2619), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 2, - anon_sym_RBRACE, + [162847] = 4, + ACTIONS(4110), 1, anon_sym_PIPE, - [162210] = 3, - STATE(2882), 1, + ACTIONS(4361), 1, + anon_sym_RBRACK, + STATE(2798), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1465), 2, + [162861] = 4, + ACTIONS(2930), 1, anon_sym_RBRACE, + ACTIONS(4100), 1, anon_sym_PIPE, - [162222] = 3, - STATE(2882), 1, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1429), 2, - anon_sym_RBRACE, + [162875] = 4, + ACTIONS(3270), 1, + anon_sym_COMMA, + ACTIONS(3272), 1, + anon_sym_RPAREN, + STATE(2871), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162889] = 4, + ACTIONS(4100), 1, anon_sym_PIPE, - [162234] = 4, - ACTIONS(708), 1, + ACTIONS(4363), 1, anon_sym_RBRACE, - ACTIONS(4344), 1, + STATE(2900), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162903] = 4, + ACTIONS(3801), 1, anon_sym_COMMA, - STATE(2743), 1, + ACTIONS(3803), 1, + anon_sym_RBRACE, + STATE(2835), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162248] = 4, - ACTIONS(1501), 1, + [162917] = 4, + ACTIONS(3248), 1, + anon_sym_COMMA, + ACTIONS(3250), 1, anon_sym_RBRACK, - ACTIONS(4346), 1, - anon_sym_PIPE, - STATE(2890), 1, - aux_sym_union_type_repeat1, + STATE(2858), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162262] = 3, - ACTIONS(4349), 1, - anon_sym_DASH_GT, + [162931] = 4, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4365), 1, + anon_sym_RPAREN, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1341), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [162274] = 4, - ACTIONS(3870), 1, + [162945] = 4, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(3872), 1, - anon_sym_RBRACE, - STATE(2889), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4369), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162288] = 3, - ACTIONS(4351), 1, - anon_sym_DASH_GT, + [162959] = 4, + ACTIONS(4371), 1, + anon_sym_COMMA, + ACTIONS(4373), 1, + anon_sym_RBRACK, + STATE(2825), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162973] = 3, + STATE(2786), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1536), 2, + ACTIONS(1498), 2, anon_sym_RBRACE, anon_sym_PIPE, - [162300] = 4, - ACTIONS(4074), 1, + [162985] = 4, + ACTIONS(3985), 1, anon_sym_PIPE, - ACTIONS(4353), 1, - anon_sym_RBRACE, - STATE(2882), 1, + ACTIONS(4375), 1, + sym__newline, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162314] = 3, - ACTIONS(4355), 1, - anon_sym_DASH_GT, + [162999] = 3, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1491), 2, + ACTIONS(1385), 2, anon_sym_RBRACE, anon_sym_PIPE, - [162326] = 4, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4357), 1, + [163011] = 4, + ACTIONS(960), 1, + anon_sym_RPAREN, + ACTIONS(4377), 1, anon_sym_COMMA, - STATE(2743), 1, - aux_sym_dictionary_repeat1, + STATE(2836), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162340] = 4, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4359), 1, - anon_sym_RBRACK, - STATE(2821), 1, + [163025] = 3, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162354] = 4, - ACTIONS(4361), 1, - anon_sym_COMMA, - ACTIONS(4363), 1, - anon_sym_RBRACK, - STATE(2757), 1, - aux_sym_subscript_repeat1, + ACTIONS(1337), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [163037] = 3, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162368] = 4, - ACTIONS(4070), 1, + ACTIONS(1442), 2, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4365), 1, - anon_sym_RBRACK, - STATE(2821), 1, + [163049] = 3, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162382] = 3, - STATE(2821), 1, + ACTIONS(1434), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [163061] = 4, + ACTIONS(2938), 1, + anon_sym_RBRACE, + ACTIONS(4100), 1, + anon_sym_PIPE, + STATE(2900), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1501), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [162394] = 3, - ACTIONS(2069), 1, - anon_sym_LBRACE, - STATE(1992), 1, - sym_dict_expr, + [163075] = 4, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4379), 1, + anon_sym_RPAREN, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162405] = 3, - ACTIONS(4367), 1, - anon_sym_if, - ACTIONS(4369), 1, - anon_sym_RBRACE, + [163089] = 3, + ACTIONS(4381), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162416] = 3, - ACTIONS(4371), 1, - anon_sym_if, - ACTIONS(4373), 1, + ACTIONS(1412), 2, anon_sym_RBRACE, - ACTIONS(3), 2, + anon_sym_PIPE, + [163101] = 3, + ACTIONS(3222), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [162427] = 3, - ACTIONS(932), 1, - sym_string_start, - STATE(1691), 1, - sym_string, + ACTIONS(3224), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163113] = 3, + ACTIONS(4383), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162438] = 3, - ACTIONS(4375), 1, + ACTIONS(1392), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [163125] = 4, + ACTIONS(3252), 1, anon_sym_COMMA, - ACTIONS(4377), 1, - anon_sym_in, + ACTIONS(3254), 1, + anon_sym_RBRACK, + STATE(2898), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162449] = 2, + [163139] = 3, + ACTIONS(4385), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162458] = 2, + ACTIONS(1337), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [163151] = 4, + ACTIONS(2936), 1, + anon_sym_RBRACE, + ACTIONS(4100), 1, + anon_sym_PIPE, + STATE(2900), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3412), 2, + [163165] = 3, + ACTIONS(4389), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4387), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [162467] = 3, - ACTIONS(4381), 1, - anon_sym_if, - ACTIONS(4383), 1, anon_sym_RBRACE, + [163177] = 4, + ACTIONS(3927), 1, + anon_sym_COMMA, + ACTIONS(4391), 1, + anon_sym_RPAREN, + STATE(2851), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162478] = 3, - ACTIONS(4385), 1, - anon_sym_if, - ACTIONS(4387), 1, - anon_sym_RBRACE, + [163191] = 3, + ACTIONS(4393), 1, + anon_sym_as, + ACTIONS(4395), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162489] = 3, - ACTIONS(2013), 1, + [163202] = 3, + ACTIONS(4397), 1, anon_sym_LBRACE, - STATE(1682), 1, + STATE(914), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162500] = 3, - ACTIONS(4389), 1, - anon_sym_LBRACE, - STATE(980), 1, - sym_dict_expr, + [163213] = 3, + ACTIONS(924), 1, + sym_string_start, + STATE(1749), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162511] = 3, - ACTIONS(1973), 1, + [163224] = 3, + ACTIONS(1889), 1, anon_sym_LBRACE, - STATE(1325), 1, + STATE(1899), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162522] = 3, - ACTIONS(1973), 1, + [163235] = 3, + ACTIONS(2013), 1, anon_sym_LBRACE, - STATE(1402), 1, + STATE(1840), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162533] = 3, - ACTIONS(4391), 1, - anon_sym_if, - ACTIONS(4393), 1, - anon_sym_RBRACE, + [163246] = 3, + ACTIONS(924), 1, + sym_string_start, + STATE(1636), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162544] = 3, - ACTIONS(1014), 1, - sym_string_start, - STATE(1762), 1, - sym_string, + [163257] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162555] = 3, - ACTIONS(4395), 1, - anon_sym_DASH_GT, + ACTIONS(4357), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163266] = 3, ACTIONS(4397), 1, anon_sym_LBRACE, + STATE(911), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162566] = 3, + [163277] = 3, ACTIONS(4399), 1, - anon_sym_if, + anon_sym_COMMA, ACTIONS(4401), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162577] = 3, + [163288] = 3, ACTIONS(4403), 1, - anon_sym_LBRACE, - STATE(999), 1, - sym_dict_expr, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162588] = 3, - ACTIONS(4405), 1, anon_sym_if, - ACTIONS(4407), 1, + ACTIONS(4405), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162599] = 3, - ACTIONS(1625), 1, - anon_sym_RBRACK, + [163299] = 3, + ACTIONS(4407), 1, + anon_sym_if, ACTIONS(4409), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162610] = 3, - ACTIONS(1881), 1, - anon_sym_LBRACE, - STATE(1872), 1, - sym_dict_expr, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162621] = 3, + [163310] = 3, ACTIONS(4411), 1, - anon_sym_as, + anon_sym_COLON, ACTIONS(4413), 1, - sym__newline, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162632] = 3, + [163321] = 3, ACTIONS(2013), 1, anon_sym_LBRACE, - STATE(1695), 1, + STATE(1746), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162643] = 3, - ACTIONS(4411), 1, - anon_sym_as, + [163332] = 3, ACTIONS(4415), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162654] = 3, - ACTIONS(4417), 1, anon_sym_if, - ACTIONS(4419), 1, + ACTIONS(4417), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162665] = 3, - ACTIONS(4421), 1, + [163343] = 3, + ACTIONS(4419), 1, anon_sym_if, - ACTIONS(4423), 1, + ACTIONS(4421), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162676] = 3, - ACTIONS(1981), 1, - anon_sym_LBRACE, - STATE(1283), 1, - sym_dict_expr, + [163354] = 3, + ACTIONS(4423), 1, + anon_sym_if, + ACTIONS(4425), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162687] = 3, - ACTIONS(2069), 1, + [163365] = 3, + ACTIONS(4427), 1, anon_sym_LBRACE, - STATE(1986), 1, + STATE(1100), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162698] = 3, - ACTIONS(4425), 1, + [163376] = 3, + ACTIONS(4429), 1, anon_sym_DASH_GT, - ACTIONS(4427), 1, + ACTIONS(4431), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162709] = 2, + [163387] = 3, + ACTIONS(2108), 1, + anon_sym_LBRACE, + STATE(2029), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3352), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162718] = 3, - ACTIONS(4429), 1, + [163398] = 3, + ACTIONS(4427), 1, anon_sym_LBRACE, - STATE(1907), 1, + STATE(1119), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162729] = 3, - ACTIONS(4431), 1, - anon_sym_if, + [163409] = 3, + ACTIONS(1683), 1, + anon_sym_RBRACK, ACTIONS(4433), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162740] = 3, + [163420] = 3, ACTIONS(4435), 1, anon_sym_if, ACTIONS(4437), 1, @@ -160085,39 +161050,46 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162751] = 3, + [163431] = 3, ACTIONS(4439), 1, - anon_sym_DASH_GT, + anon_sym_if, ACTIONS(4441), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162762] = 3, + [163442] = 3, ACTIONS(4443), 1, - anon_sym_DASH_GT, + anon_sym_if, ACTIONS(4445), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162773] = 3, + [163453] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3444), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [163462] = 3, ACTIONS(4447), 1, - anon_sym_DASH_GT, + anon_sym_if, ACTIONS(4449), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162784] = 3, + [163473] = 3, ACTIONS(4451), 1, - anon_sym_DASH_GT, + anon_sym_if, ACTIONS(4453), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162795] = 3, + [163484] = 3, ACTIONS(4455), 1, anon_sym_DASH_GT, ACTIONS(4457), 1, @@ -160125,3079 +161097,3194 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162806] = 3, - ACTIONS(4459), 1, - anon_sym_DASH_GT, - ACTIONS(4461), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162817] = 3, - ACTIONS(4429), 1, + [163495] = 3, + ACTIONS(2108), 1, anon_sym_LBRACE, - STATE(1868), 1, + STATE(2023), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162828] = 3, - ACTIONS(4463), 1, - anon_sym_DASH_GT, - ACTIONS(4465), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162839] = 3, - ACTIONS(4467), 1, - anon_sym_if, - ACTIONS(4469), 1, - anon_sym_RBRACE, + [163506] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162850] = 3, - ACTIONS(932), 1, - sym_string_start, - STATE(1832), 1, - sym_string, + ACTIONS(3362), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163515] = 3, + ACTIONS(4393), 1, + anon_sym_as, + ACTIONS(4459), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162861] = 3, - ACTIONS(4471), 1, - anon_sym_if, - ACTIONS(4473), 1, - anon_sym_RBRACE, + [163526] = 3, + ACTIONS(1981), 1, + anon_sym_LBRACE, + STATE(1386), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162872] = 3, - ACTIONS(1881), 1, + [163537] = 3, + ACTIONS(4461), 1, + anon_sym_DASH_GT, + ACTIONS(4463), 1, anon_sym_LBRACE, - STATE(1854), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162883] = 2, + [163548] = 3, + ACTIONS(4465), 1, + anon_sym_if, + ACTIONS(4467), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3286), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162892] = 3, - ACTIONS(1014), 1, - sym_string_start, - STATE(1717), 1, - sym_string, + [163559] = 3, + ACTIONS(4469), 1, + anon_sym_if, + ACTIONS(4471), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162903] = 3, + [163570] = 3, + ACTIONS(4473), 1, + anon_sym_DASH_GT, ACTIONS(4475), 1, anon_sym_LBRACE, - STATE(1133), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162914] = 3, - ACTIONS(1981), 1, + [163581] = 3, + ACTIONS(4477), 1, + anon_sym_DASH_GT, + ACTIONS(4479), 1, anon_sym_LBRACE, - STATE(1293), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162925] = 3, - ACTIONS(4477), 1, - anon_sym_if, - ACTIONS(4479), 1, - anon_sym_RBRACE, + [163592] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162936] = 3, + ACTIONS(3402), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163601] = 3, ACTIONS(4481), 1, - anon_sym_if, - ACTIONS(4483), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, + STATE(980), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162947] = 2, + [163612] = 3, + ACTIONS(4483), 1, + anon_sym_DASH_GT, + ACTIONS(4485), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4093), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162956] = 3, - ACTIONS(4485), 1, - anon_sym_if, + [163623] = 3, ACTIONS(4487), 1, - anon_sym_RBRACE, + anon_sym_DASH_GT, + ACTIONS(4489), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162967] = 3, - ACTIONS(4489), 1, - anon_sym_if, + [163634] = 3, ACTIONS(4491), 1, - anon_sym_RBRACE, + anon_sym_DASH_GT, + ACTIONS(4493), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162978] = 3, - ACTIONS(4493), 1, - anon_sym_COMMA, + [163645] = 3, ACTIONS(4495), 1, - anon_sym_in, + anon_sym_DASH_GT, + ACTIONS(4497), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162989] = 3, - ACTIONS(4475), 1, + [163656] = 3, + ACTIONS(4499), 1, + anon_sym_COLON, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163667] = 3, + ACTIONS(4481), 1, anon_sym_LBRACE, - STATE(1112), 1, + STATE(990), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163000] = 3, - ACTIONS(4403), 1, + [163678] = 3, + ACTIONS(1981), 1, anon_sym_LBRACE, - STATE(973), 1, + STATE(1372), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163011] = 3, - ACTIONS(4497), 1, - anon_sym_COMMA, - ACTIONS(4499), 1, - anon_sym_in, + [163689] = 3, + ACTIONS(4503), 1, + anon_sym_if, + ACTIONS(4505), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163022] = 3, - ACTIONS(4501), 1, - anon_sym_COMMA, - ACTIONS(4503), 1, - anon_sym_in, + [163700] = 3, + ACTIONS(1106), 1, + sym_string_start, + STATE(1699), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163033] = 3, - ACTIONS(4505), 1, - anon_sym_COMMA, - ACTIONS(4507), 1, - anon_sym_in, + [163711] = 3, + ACTIONS(1987), 1, + anon_sym_LBRACE, + STATE(1310), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163044] = 3, - ACTIONS(4509), 1, + [163722] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4507), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [163731] = 3, + ACTIONS(4509), 1, + anon_sym_if, ACTIONS(4511), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163055] = 3, + [163742] = 3, ACTIONS(4513), 1, - anon_sym_COMMA, - ACTIONS(4515), 1, - anon_sym_in, + anon_sym_LBRACE, + STATE(1949), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163066] = 3, + [163753] = 3, + ACTIONS(4515), 1, + anon_sym_if, ACTIONS(4517), 1, - anon_sym_COMMA, - ACTIONS(4519), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163077] = 3, - ACTIONS(4521), 1, + [163764] = 3, + ACTIONS(4519), 1, anon_sym_if, - ACTIONS(4523), 1, + ACTIONS(4521), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163088] = 3, + [163775] = 3, + ACTIONS(4523), 1, + anon_sym_if, ACTIONS(4525), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163099] = 3, - ACTIONS(4389), 1, + [163786] = 3, + ACTIONS(1889), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(1876), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163110] = 2, - ACTIONS(3344), 1, - anon_sym_RPAREN, + [163797] = 3, + ACTIONS(4527), 1, + anon_sym_COMMA, + ACTIONS(4529), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163118] = 2, - ACTIONS(4529), 1, - sym_identifier, + [163808] = 3, + ACTIONS(1987), 1, + anon_sym_LBRACE, + STATE(1246), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163126] = 2, - ACTIONS(4531), 1, - anon_sym_in, + [163819] = 3, + ACTIONS(1106), 1, + sym_string_start, + STATE(1677), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163134] = 2, + [163830] = 3, + ACTIONS(4531), 1, + anon_sym_COMMA, ACTIONS(4533), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163142] = 2, + [163841] = 3, ACTIONS(4535), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163150] = 2, + anon_sym_COMMA, ACTIONS(4537), 1, - anon_sym_DQUOTE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163158] = 2, + [163852] = 3, ACTIONS(4539), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163166] = 2, - ACTIONS(3084), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163174] = 2, + anon_sym_COMMA, ACTIONS(4541), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163182] = 2, - ACTIONS(3825), 1, - anon_sym_RBRACE, + [163863] = 3, + ACTIONS(4513), 1, + anon_sym_LBRACE, + STATE(1929), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163190] = 2, + [163874] = 3, ACTIONS(4543), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163198] = 2, + anon_sym_COMMA, ACTIONS(4545), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163206] = 2, - ACTIONS(4132), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163214] = 2, + [163885] = 3, ACTIONS(4547), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163222] = 2, + anon_sym_if, ACTIONS(4549), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163230] = 2, + [163896] = 3, ACTIONS(4551), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163238] = 2, + anon_sym_COMMA, ACTIONS(4553), 1, - sym_integer, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163246] = 2, + [163907] = 3, ACTIONS(4555), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163254] = 2, + anon_sym_COMMA, ACTIONS(4557), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [163262] = 2, - ACTIONS(4559), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163270] = 2, - ACTIONS(3538), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163278] = 2, + [163918] = 3, + ACTIONS(4559), 1, + anon_sym_COMMA, ACTIONS(4561), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163286] = 2, + [163929] = 2, ACTIONS(4563), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163294] = 2, + [163937] = 2, ACTIONS(4565), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163302] = 2, + [163945] = 2, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163953] = 2, ACTIONS(4567), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163310] = 2, + [163961] = 2, ACTIONS(4569), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163318] = 2, + [163969] = 2, ACTIONS(4571), 1, - anon_sym_RBRACK, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163977] = 2, + ACTIONS(3296), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163326] = 2, + [163985] = 2, ACTIONS(4573), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163334] = 2, + [163993] = 2, ACTIONS(4575), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163342] = 2, + [164001] = 2, ACTIONS(4577), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163350] = 2, + [164009] = 2, ACTIONS(4579), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163358] = 2, - ACTIONS(3324), 1, - anon_sym_RPAREN, + [164017] = 2, + ACTIONS(4581), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163366] = 2, - ACTIONS(4581), 1, - sym_identifier, + [164025] = 2, + ACTIONS(3124), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164033] = 2, + ACTIONS(3842), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163374] = 2, + [164041] = 2, ACTIONS(4583), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164049] = 2, + ACTIONS(2304), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163382] = 2, + [164057] = 2, ACTIONS(4585), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163390] = 2, + [164065] = 2, ACTIONS(4587), 1, - anon_sym_in, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [163398] = 2, + [164073] = 2, ACTIONS(4589), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163406] = 2, + [164081] = 2, ACTIONS(4591), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163414] = 2, + [164089] = 2, ACTIONS(4593), 1, - anon_sym_RBRACK, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164097] = 2, + ACTIONS(3096), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163422] = 2, + [164105] = 2, ACTIONS(4595), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164113] = 2, + ACTIONS(2035), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163430] = 2, + [164121] = 2, ACTIONS(4597), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163438] = 2, + [164129] = 2, ACTIONS(4599), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164137] = 2, + ACTIONS(3348), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163446] = 2, + [164145] = 2, ACTIONS(4601), 1, - anon_sym_LBRACE, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163454] = 2, + [164153] = 2, ACTIONS(4603), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163462] = 2, + [164161] = 2, ACTIONS(4605), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163470] = 2, + [164169] = 2, ACTIONS(4607), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163478] = 2, + [164177] = 2, ACTIONS(4609), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [163486] = 2, - ACTIONS(3884), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163494] = 2, + [164185] = 2, ACTIONS(4611), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163502] = 2, - ACTIONS(4413), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163510] = 2, - ACTIONS(3292), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163518] = 2, + [164193] = 2, ACTIONS(4613), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163526] = 2, + [164201] = 2, ACTIONS(4615), 1, - anon_sym_in, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [163534] = 2, + [164209] = 2, ACTIONS(4617), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163542] = 2, - ACTIONS(4619), 1, - anon_sym_RPAREN, + [164217] = 2, + ACTIONS(3120), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163550] = 2, - ACTIONS(3306), 1, - anon_sym_RPAREN, + [164225] = 2, + ACTIONS(4619), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163558] = 2, + [164233] = 2, ACTIONS(4621), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163566] = 2, + [164241] = 2, ACTIONS(4623), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163574] = 2, + [164249] = 2, ACTIONS(4625), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163582] = 2, + [164257] = 2, ACTIONS(4627), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163590] = 2, + [164265] = 2, + ACTIONS(3326), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164273] = 2, ACTIONS(4629), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163598] = 2, + [164281] = 2, ACTIONS(4631), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163606] = 2, + [164289] = 2, ACTIONS(4633), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163614] = 2, + [164297] = 2, ACTIONS(4635), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [163622] = 2, + [164305] = 2, ACTIONS(4637), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163630] = 2, + [164313] = 2, ACTIONS(4639), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163638] = 2, + [164321] = 2, ACTIONS(4641), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163646] = 2, + [164329] = 2, ACTIONS(4643), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163654] = 2, + [164337] = 2, ACTIONS(4645), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163662] = 2, + [164345] = 2, ACTIONS(4647), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163670] = 2, + [164353] = 2, ACTIONS(4649), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163678] = 2, + [164361] = 2, ACTIONS(4651), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163686] = 2, + [164369] = 2, ACTIONS(4653), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163694] = 2, + [164377] = 2, ACTIONS(4655), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163702] = 2, - ACTIONS(4657), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163710] = 2, - ACTIONS(4659), 1, - sym_identifier, + [164385] = 2, + ACTIONS(3913), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163718] = 2, - ACTIONS(3815), 1, + [164393] = 2, + ACTIONS(4657), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163726] = 2, - ACTIONS(4661), 1, + [164401] = 2, + ACTIONS(4659), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163734] = 2, - ACTIONS(3092), 1, - anon_sym_RBRACE, + [164409] = 2, + ACTIONS(4661), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163742] = 2, + [164417] = 2, ACTIONS(4663), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163750] = 2, + [164425] = 2, ACTIONS(4665), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163758] = 2, - ACTIONS(4667), 1, - anon_sym_DQUOTE, + [164433] = 2, + ACTIONS(3909), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163766] = 2, - ACTIONS(4669), 1, - sym_identifier, + [164441] = 2, + ACTIONS(4667), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163774] = 2, - ACTIONS(3078), 1, - anon_sym_RBRACE, + [164449] = 2, + ACTIONS(4669), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163782] = 2, + [164457] = 2, ACTIONS(4671), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163790] = 2, + [164465] = 2, ACTIONS(4673), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163798] = 2, - ACTIONS(3858), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163806] = 2, + [164473] = 2, ACTIONS(4675), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163814] = 2, + [164481] = 2, ACTIONS(4677), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163822] = 2, + [164489] = 2, ACTIONS(4679), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163830] = 2, + [164497] = 2, ACTIONS(4681), 1, - anon_sym_in, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [163838] = 2, + [164505] = 2, ACTIONS(4683), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163846] = 2, + [164513] = 2, ACTIONS(4685), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [163854] = 2, - ACTIONS(3364), 1, - sym__newline, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163862] = 2, + [164521] = 2, ACTIONS(4687), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163870] = 2, + [164529] = 2, ACTIONS(4689), 1, - anon_sym_DQUOTE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163878] = 2, + [164537] = 2, ACTIONS(4691), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163886] = 2, + [164545] = 2, ACTIONS(4693), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163894] = 2, + [164553] = 2, ACTIONS(4695), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163902] = 2, + [164561] = 2, ACTIONS(4697), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163910] = 2, + [164569] = 2, ACTIONS(4699), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163918] = 2, + [164577] = 2, ACTIONS(4701), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163926] = 2, + [164585] = 2, ACTIONS(4703), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163934] = 2, + [164593] = 2, ACTIONS(4705), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163942] = 2, + [164601] = 2, ACTIONS(4707), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163950] = 2, - ACTIONS(3340), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163958] = 2, + [164609] = 2, ACTIONS(4709), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163966] = 2, + [164617] = 2, ACTIONS(4711), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163974] = 2, + [164625] = 2, ACTIONS(4713), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163982] = 2, - ACTIONS(3096), 1, - anon_sym_RBRACE, + [164633] = 2, + ACTIONS(3300), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163990] = 2, - ACTIONS(4715), 1, + [164641] = 2, + ACTIONS(4395), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163998] = 2, - ACTIONS(4717), 1, + [164649] = 2, + ACTIONS(4715), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164006] = 2, - ACTIONS(4719), 1, - sym_identifier, + [164657] = 2, + ACTIONS(4717), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164014] = 2, - ACTIONS(4721), 1, + [164665] = 2, + ACTIONS(4719), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164022] = 2, - ACTIONS(4723), 1, - anon_sym_in, + [164673] = 2, + ACTIONS(4721), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164030] = 2, - ACTIONS(4725), 1, - sym_identifier, + [164681] = 2, + ACTIONS(4723), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164038] = 2, - ACTIONS(4727), 1, - anon_sym_RBRACE, + [164689] = 2, + ACTIONS(3272), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164046] = 2, - ACTIONS(4729), 1, - anon_sym_RBRACK, + [164697] = 2, + ACTIONS(4725), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164054] = 2, - ACTIONS(4731), 1, - anon_sym_RBRACE, + [164705] = 2, + ACTIONS(4727), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164062] = 2, - ACTIONS(3094), 1, - anon_sym_RBRACE, + [164713] = 2, + ACTIONS(4729), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164070] = 2, - ACTIONS(3320), 1, - anon_sym_RPAREN, + [164721] = 2, + ACTIONS(4731), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164078] = 2, + [164729] = 2, ACTIONS(4733), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164086] = 2, + [164737] = 2, ACTIONS(4735), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164094] = 2, + [164745] = 2, ACTIONS(4737), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164102] = 2, + [164753] = 2, ACTIONS(4739), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164110] = 2, + [164761] = 2, ACTIONS(4741), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164118] = 2, + [164769] = 2, ACTIONS(4743), 1, - sym__newline, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164126] = 2, + [164777] = 2, ACTIONS(4745), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164134] = 2, + [164785] = 2, ACTIONS(4747), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164142] = 2, + [164793] = 2, ACTIONS(4749), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164150] = 2, - ACTIONS(3775), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164158] = 2, + [164801] = 2, ACTIONS(4751), 1, - anon_sym_DQUOTE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164166] = 2, + [164809] = 2, ACTIONS(4753), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164174] = 2, + [164817] = 2, ACTIONS(4755), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164182] = 2, + [164825] = 2, ACTIONS(4757), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164833] = 2, + ACTIONS(4759), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164190] = 2, - ACTIONS(4759), 1, - anon_sym_RBRACE, + [164841] = 2, + ACTIONS(3222), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164198] = 2, + [164849] = 2, ACTIONS(4761), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164206] = 2, + [164857] = 2, ACTIONS(4763), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164865] = 2, + ACTIONS(3102), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164214] = 2, + [164873] = 2, ACTIONS(4765), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164222] = 2, + [164881] = 2, ACTIONS(4767), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164230] = 2, + [164889] = 2, ACTIONS(4769), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164238] = 2, + [164897] = 2, ACTIONS(4771), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164246] = 2, - ACTIONS(4773), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164254] = 2, - ACTIONS(4775), 1, + [164905] = 2, + ACTIONS(4773), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164262] = 2, - ACTIONS(4777), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164270] = 2, - ACTIONS(4779), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164278] = 2, - ACTIONS(4781), 1, - anon_sym_RBRACK, + [164913] = 2, + ACTIONS(4775), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164286] = 2, - ACTIONS(3807), 1, + [164921] = 2, + ACTIONS(3919), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - [164294] = 2, - ACTIONS(3086), 1, - anon_sym_RBRACE, + sym_line_continuation, + [164929] = 2, + ACTIONS(4777), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164302] = 2, - ACTIONS(4783), 1, + [164937] = 2, + ACTIONS(4779), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164310] = 2, - ACTIONS(4785), 1, - anon_sym_RBRACE, + [164945] = 2, + ACTIONS(4781), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164318] = 2, - ACTIONS(4787), 1, - anon_sym_in, + [164953] = 2, + ACTIONS(4783), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164326] = 2, - ACTIONS(2302), 1, - anon_sym_RBRACE, + [164961] = 2, + ACTIONS(4785), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164334] = 2, - ACTIONS(3106), 1, - anon_sym_RBRACE, + [164969] = 2, + ACTIONS(4787), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164342] = 2, + [164977] = 2, ACTIONS(4789), 1, - sym__newline, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164350] = 2, + [164985] = 2, ACTIONS(4791), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164358] = 2, + [164993] = 2, ACTIONS(4793), 1, - anon_sym_DQUOTE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164366] = 2, - ACTIONS(4415), 1, - sym__newline, - ACTIONS(3), 2, + [165001] = 2, + ACTIONS(4795), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164374] = 2, - ACTIONS(4795), 1, + [165009] = 2, + ACTIONS(4200), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164382] = 2, - ACTIONS(2025), 1, - anon_sym_COLON, + [165017] = 2, + ACTIONS(2283), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164390] = 2, + [165025] = 2, ACTIONS(4797), 1, - sym__newline, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165033] = 2, + ACTIONS(3878), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164398] = 2, - ACTIONS(3872), 1, + [165041] = 2, + ACTIONS(3112), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164406] = 2, + [165049] = 2, ACTIONS(4799), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164414] = 2, + [165057] = 2, ACTIONS(4801), 1, - sym_identifier, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164422] = 2, + [165065] = 2, ACTIONS(4803), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164430] = 2, + [165073] = 2, ACTIONS(4805), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164438] = 2, + [165081] = 2, ACTIONS(4807), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164446] = 2, + [165089] = 2, ACTIONS(4809), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164454] = 2, - ACTIONS(4811), 1, - sym_identifier, + [165097] = 2, + ACTIONS(3110), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164462] = 2, - ACTIONS(4813), 1, - sym_identifier, + [165105] = 2, + ACTIONS(4811), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164470] = 2, - ACTIONS(3328), 1, - anon_sym_RPAREN, + [165113] = 2, + ACTIONS(4813), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164478] = 2, + [165121] = 2, ACTIONS(4815), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164486] = 2, + [165129] = 2, ACTIONS(4817), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164494] = 2, + [165137] = 2, ACTIONS(4819), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164502] = 2, + [165145] = 2, ACTIONS(4821), 1, - anon_sym_COLON, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165153] = 2, + ACTIONS(3803), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164510] = 2, + [165161] = 2, ACTIONS(4823), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164518] = 2, + [165169] = 2, ACTIONS(4825), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164526] = 2, + [165177] = 2, ACTIONS(4827), 1, - anon_sym_COLON, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165185] = 2, + ACTIONS(3352), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164534] = 2, + [165193] = 2, ACTIONS(4829), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164542] = 2, + [165201] = 2, ACTIONS(4831), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164550] = 2, + [165209] = 2, ACTIONS(4833), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164558] = 2, + [165217] = 2, ACTIONS(4835), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164566] = 2, + [165225] = 2, ACTIONS(4837), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164574] = 2, + [165233] = 2, ACTIONS(4839), 1, - anon_sym_COLON, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164582] = 2, + [165241] = 2, ACTIONS(4841), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164590] = 2, + [165249] = 2, ACTIONS(4843), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164598] = 2, + [165257] = 2, ACTIONS(4845), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164606] = 2, + [165265] = 2, ACTIONS(4847), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164614] = 2, + [165273] = 2, ACTIONS(4849), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164622] = 2, + [165281] = 2, ACTIONS(4851), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164630] = 2, - ACTIONS(3314), 1, + [165289] = 2, + ACTIONS(3330), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164638] = 2, - ACTIONS(3837), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164646] = 2, - ACTIONS(3098), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164654] = 2, + [165297] = 2, ACTIONS(4853), 1, - anon_sym_COLON, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164662] = 2, + [165305] = 2, ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164670] = 2, - ACTIONS(2296), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164678] = 2, + [165313] = 2, ACTIONS(4857), 1, - anon_sym_DQUOTE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164686] = 2, + [165321] = 2, ACTIONS(4859), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164694] = 2, - ACTIONS(3370), 1, - sym__newline, + [165329] = 2, + ACTIONS(3905), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164702] = 2, + [165337] = 2, ACTIONS(4861), 1, - ts_builtin_sym_end, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164710] = 2, + [165345] = 2, ACTIONS(4863), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164718] = 2, + [165353] = 2, ACTIONS(4865), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165361] = 2, + ACTIONS(3118), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164726] = 2, + [165369] = 2, ACTIONS(4867), 1, - sym_identifier, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164734] = 2, + [165377] = 2, ACTIONS(4869), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164742] = 2, + [165385] = 2, ACTIONS(4871), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164750] = 2, + [165393] = 2, ACTIONS(4873), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164758] = 2, + [165401] = 2, ACTIONS(4875), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164766] = 2, + [165409] = 2, ACTIONS(4877), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164774] = 2, + [165417] = 2, ACTIONS(4879), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164782] = 2, + [165425] = 2, ACTIONS(4881), 1, - sym_identifier, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165433] = 2, + ACTIONS(4459), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164790] = 2, + [165441] = 2, ACTIONS(4883), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164798] = 2, + [165449] = 2, ACTIONS(4885), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164806] = 2, + [165457] = 2, ACTIONS(4887), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164814] = 2, + [165465] = 2, ACTIONS(4889), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164822] = 2, + [165473] = 2, ACTIONS(4891), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164830] = 2, + [165481] = 2, ACTIONS(4893), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164838] = 2, + [165489] = 2, ACTIONS(4895), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164846] = 2, + [165497] = 2, ACTIONS(4897), 1, - anon_sym_LBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164854] = 2, + [165505] = 2, ACTIONS(4899), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164862] = 2, + [165513] = 2, ACTIONS(4901), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164870] = 2, + [165521] = 2, ACTIONS(4903), 1, - anon_sym_LBRACE, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165529] = 2, + ACTIONS(3108), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164878] = 2, + [165537] = 2, ACTIONS(4905), 1, - anon_sym_LBRACE, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165545] = 2, + ACTIONS(3460), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164886] = 2, + [165553] = 2, ACTIONS(4907), 1, - sym_identifier, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165561] = 2, + ACTIONS(3890), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164894] = 2, + [165569] = 2, ACTIONS(4909), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164902] = 2, + [165577] = 2, ACTIONS(4911), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164910] = 2, + [165585] = 2, ACTIONS(4913), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164918] = 2, + [165593] = 2, ACTIONS(4915), 1, - anon_sym_in, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165601] = 2, + ACTIONS(3428), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164926] = 2, + [165609] = 2, ACTIONS(4917), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164934] = 2, + [165617] = 2, ACTIONS(4919), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164942] = 2, + [165625] = 2, ACTIONS(4921), 1, - anon_sym_LBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164950] = 2, + [165633] = 2, ACTIONS(4923), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164958] = 2, + [165641] = 2, ACTIONS(4925), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164966] = 2, + [165649] = 2, ACTIONS(4927), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164974] = 2, + [165657] = 2, ACTIONS(4929), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164982] = 2, + [165665] = 2, ACTIONS(4931), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164990] = 2, + [165673] = 2, ACTIONS(4933), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164998] = 2, + [165681] = 2, ACTIONS(4935), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165006] = 2, + [165689] = 2, ACTIONS(4937), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165014] = 2, + [165697] = 2, ACTIONS(4939), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165022] = 2, + [165705] = 2, ACTIONS(4941), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_LBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165030] = 2, + [165713] = 2, ACTIONS(4943), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165038] = 2, + [165721] = 2, ACTIONS(4945), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165046] = 2, + [165729] = 2, ACTIONS(4947), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165054] = 2, + [165737] = 2, ACTIONS(4949), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165062] = 2, + [165745] = 2, ACTIONS(4951), 1, - anon_sym_for, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165070] = 2, + [165753] = 2, ACTIONS(4953), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165078] = 2, + [165761] = 2, ACTIONS(4955), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165086] = 2, + [165769] = 2, ACTIONS(4957), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165094] = 2, + [165777] = 2, ACTIONS(4959), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165102] = 2, + [165785] = 2, ACTIONS(4961), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165110] = 2, + [165793] = 2, ACTIONS(4963), 1, - anon_sym_RBRACK, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165118] = 2, + [165801] = 2, ACTIONS(4965), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165126] = 2, + [165809] = 2, ACTIONS(4967), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165134] = 2, - ACTIONS(4969), 1, - anon_sym_RBRACK, + [165817] = 2, + ACTIONS(3358), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165142] = 2, - ACTIONS(4971), 1, - anon_sym_RBRACE, + [165825] = 2, + ACTIONS(4969), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165150] = 2, - ACTIONS(2284), 1, - anon_sym_RBRACE, + [165833] = 2, + ACTIONS(4971), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165158] = 2, + [165841] = 2, ACTIONS(4973), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165166] = 2, + [165849] = 2, ACTIONS(4975), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165174] = 2, + [165857] = 2, ACTIONS(4977), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165182] = 2, + [165865] = 2, ACTIONS(4979), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165190] = 2, + [165873] = 2, ACTIONS(4981), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165198] = 2, - ACTIONS(3178), 1, - sym__newline, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165206] = 2, + [165881] = 2, ACTIONS(4983), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165214] = 2, + [165889] = 2, ACTIONS(4985), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165222] = 2, + [165897] = 2, ACTIONS(4987), 1, - anon_sym_RBRACE, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165230] = 2, + [165905] = 2, ACTIONS(4989), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165238] = 2, + [165913] = 2, ACTIONS(4991), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165246] = 2, + [165921] = 2, ACTIONS(4993), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165254] = 2, + [165929] = 2, ACTIONS(4995), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165262] = 2, + [165937] = 2, ACTIONS(4997), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165270] = 2, + [165945] = 2, ACTIONS(4999), 1, - anon_sym_DQUOTE, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165278] = 2, + [165953] = 2, ACTIONS(5001), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165286] = 2, + [165961] = 2, ACTIONS(5003), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165294] = 2, + [165969] = 2, ACTIONS(5005), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165302] = 2, + [165977] = 2, ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165310] = 2, + [165985] = 2, ACTIONS(5009), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165318] = 2, + [165993] = 2, ACTIONS(5011), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165326] = 2, + [166001] = 2, ACTIONS(5013), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165334] = 2, - ACTIONS(5015), 1, + [166009] = 2, + ACTIONS(3598), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165342] = 2, - ACTIONS(5017), 1, + [166017] = 2, + ACTIONS(5015), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165350] = 2, + [166025] = 2, + ACTIONS(3827), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166033] = 2, + ACTIONS(3122), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166041] = 2, + ACTIONS(5017), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166049] = 2, ACTIONS(5019), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165358] = 2, + [166057] = 2, ACTIONS(5021), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165366] = 2, + [166065] = 2, ACTIONS(5023), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165374] = 2, + [166073] = 2, ACTIONS(5025), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165382] = 2, + [166081] = 2, ACTIONS(5027), 1, - sym__newline, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165390] = 2, + [166089] = 2, ACTIONS(5029), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165398] = 2, + [166097] = 2, ACTIONS(5031), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166105] = 2, + ACTIONS(5033), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165406] = 2, - ACTIONS(4409), 1, - sym_identifier, + [166113] = 2, + ACTIONS(5035), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165414] = 2, - ACTIONS(5033), 1, + [166121] = 2, + ACTIONS(5037), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166129] = 2, + ACTIONS(5039), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166137] = 2, + ACTIONS(5041), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165422] = 2, - ACTIONS(3264), 1, + [166145] = 2, + ACTIONS(5043), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166153] = 2, + ACTIONS(5045), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166161] = 2, + ACTIONS(3292), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165430] = 2, - ACTIONS(3819), 1, - anon_sym_RBRACE, + [166169] = 2, + ACTIONS(5047), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165438] = 2, - ACTIONS(5035), 1, + [166177] = 2, + ACTIONS(5049), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165446] = 2, - ACTIONS(5037), 1, + [166185] = 2, + ACTIONS(5051), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165454] = 2, - ACTIONS(2011), 1, - anon_sym_COLON, + [166193] = 2, + ACTIONS(5053), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165462] = 2, - ACTIONS(5039), 1, + [166201] = 2, + ACTIONS(5055), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166209] = 2, + ACTIONS(5057), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166217] = 2, + ACTIONS(5059), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166225] = 2, + ACTIONS(5061), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166233] = 2, + ACTIONS(5063), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166241] = 2, + ACTIONS(5065), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166249] = 2, + ACTIONS(5067), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165470] = 2, - ACTIONS(5041), 1, + [166257] = 2, + ACTIONS(4433), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166265] = 2, + ACTIONS(5069), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166273] = 2, + ACTIONS(5071), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165478] = 2, - ACTIONS(5043), 1, + [166281] = 2, + ACTIONS(5073), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165486] = 2, - ACTIONS(5045), 1, + [166289] = 2, + ACTIONS(5075), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166297] = 2, + ACTIONS(5077), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166305] = 2, + ACTIONS(2019), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166313] = 2, + ACTIONS(5079), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166321] = 2, + ACTIONS(5081), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166329] = 2, + ACTIONS(5083), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166337] = 2, + ACTIONS(5085), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165494] = 2, - ACTIONS(5047), 1, + [166345] = 2, + ACTIONS(5087), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165502] = 2, - ACTIONS(5049), 1, + [166353] = 2, + ACTIONS(5089), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165510] = 2, - ACTIONS(3100), 1, - anon_sym_RBRACE, + [166361] = 2, + ACTIONS(5091), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165518] = 2, - ACTIONS(5051), 1, + [166369] = 2, + ACTIONS(5093), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165526] = 2, - ACTIONS(5053), 1, + [166377] = 2, + ACTIONS(5095), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165534] = 2, - ACTIONS(5055), 1, + [166385] = 2, + ACTIONS(5097), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165542] = 2, - ACTIONS(5057), 1, - anon_sym_DQUOTE, + [166393] = 2, + ACTIONS(5099), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165550] = 2, + [166401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5101), 1, sym_line_continuation, - [165557] = 2, + [166408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 1, + ACTIONS(5103), 1, sym_line_continuation, - [165564] = 2, + [166415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(5105), 1, sym_line_continuation, - [165571] = 2, + [166422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, + ACTIONS(5107), 1, sym_line_continuation, - [165578] = 2, + [166429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, + ACTIONS(5109), 1, sym_line_continuation, - [165585] = 2, + [166436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5111), 1, sym_line_continuation, - [165592] = 2, + [166443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5113), 1, sym_line_continuation, - [165599] = 2, + [166450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 1, + ACTIONS(5115), 1, sym_line_continuation, - [165606] = 2, + [166457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(5117), 1, sym_line_continuation, - [165613] = 2, + [166464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 1, + ACTIONS(5119), 1, sym_line_continuation, - [165620] = 2, + [166471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 1, + ACTIONS(5121), 1, sym_line_continuation, - [165627] = 2, + [166478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(5123), 1, sym_line_continuation, - [165634] = 2, + [166485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 1, + ACTIONS(5125), 1, sym_line_continuation, - [165641] = 2, + [166492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, + ACTIONS(5127), 1, sym_line_continuation, - [165648] = 2, + [166499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5087), 1, + ACTIONS(5129), 1, sym_line_continuation, - [165655] = 2, + [166506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 1, + ACTIONS(5131), 1, sym_line_continuation, - [165662] = 2, + [166513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(5133), 1, sym_line_continuation, - [165669] = 2, + [166520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 1, + ACTIONS(5135), 1, sym_line_continuation, - [165676] = 2, + [166527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 1, + ACTIONS(5137), 1, sym_line_continuation, - [165683] = 2, + [166534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, + ACTIONS(5139), 1, sym_line_continuation, - [165690] = 2, + [166541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 1, + ACTIONS(5141), 1, sym_line_continuation, - [165697] = 2, + [166548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 1, + ACTIONS(5143), 1, sym_line_continuation, - [165704] = 2, + [166555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(5145), 1, sym_line_continuation, - [165711] = 2, + [166562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 1, + ACTIONS(5147), 1, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(195)] = 0, - [SMALL_STATE(196)] = 117, - [SMALL_STATE(197)] = 238, - [SMALL_STATE(198)] = 359, - [SMALL_STATE(199)] = 478, - [SMALL_STATE(200)] = 595, - [SMALL_STATE(201)] = 712, - [SMALL_STATE(202)] = 829, - [SMALL_STATE(203)] = 946, - [SMALL_STATE(204)] = 1063, - [SMALL_STATE(205)] = 1180, - [SMALL_STATE(206)] = 1297, - [SMALL_STATE(207)] = 1418, - [SMALL_STATE(208)] = 1539, - [SMALL_STATE(209)] = 1660, - [SMALL_STATE(210)] = 1777, - [SMALL_STATE(211)] = 1898, - [SMALL_STATE(212)] = 2015, - [SMALL_STATE(213)] = 2132, - [SMALL_STATE(214)] = 2249, - [SMALL_STATE(215)] = 2366, - [SMALL_STATE(216)] = 2483, - [SMALL_STATE(217)] = 2600, - [SMALL_STATE(218)] = 2721, - [SMALL_STATE(219)] = 2838, - [SMALL_STATE(220)] = 2955, - [SMALL_STATE(221)] = 3072, - [SMALL_STATE(222)] = 3191, - [SMALL_STATE(223)] = 3312, - [SMALL_STATE(224)] = 3429, - [SMALL_STATE(225)] = 3550, - [SMALL_STATE(226)] = 3671, - [SMALL_STATE(227)] = 3788, - [SMALL_STATE(228)] = 3909, - [SMALL_STATE(229)] = 4026, - [SMALL_STATE(230)] = 4143, - [SMALL_STATE(231)] = 4260, - [SMALL_STATE(232)] = 4377, - [SMALL_STATE(233)] = 4494, - [SMALL_STATE(234)] = 4611, - [SMALL_STATE(235)] = 4728, - [SMALL_STATE(236)] = 4845, - [SMALL_STATE(237)] = 4962, - [SMALL_STATE(238)] = 5079, - [SMALL_STATE(239)] = 5196, - [SMALL_STATE(240)] = 5317, - [SMALL_STATE(241)] = 5434, - [SMALL_STATE(242)] = 5555, - [SMALL_STATE(243)] = 5672, - [SMALL_STATE(244)] = 5793, - [SMALL_STATE(245)] = 5910, - [SMALL_STATE(246)] = 6027, - [SMALL_STATE(247)] = 6144, - [SMALL_STATE(248)] = 6261, - [SMALL_STATE(249)] = 6378, - [SMALL_STATE(250)] = 6495, - [SMALL_STATE(251)] = 6612, - [SMALL_STATE(252)] = 6729, - [SMALL_STATE(253)] = 6846, - [SMALL_STATE(254)] = 6963, - [SMALL_STATE(255)] = 7080, - [SMALL_STATE(256)] = 7201, - [SMALL_STATE(257)] = 7318, - [SMALL_STATE(258)] = 7435, - [SMALL_STATE(259)] = 7552, - [SMALL_STATE(260)] = 7673, - [SMALL_STATE(261)] = 7790, - [SMALL_STATE(262)] = 7907, - [SMALL_STATE(263)] = 8024, - [SMALL_STATE(264)] = 8141, - [SMALL_STATE(265)] = 8262, - [SMALL_STATE(266)] = 8379, - [SMALL_STATE(267)] = 8496, - [SMALL_STATE(268)] = 8613, - [SMALL_STATE(269)] = 8730, - [SMALL_STATE(270)] = 8851, - [SMALL_STATE(271)] = 8968, - [SMALL_STATE(272)] = 9089, - [SMALL_STATE(273)] = 9206, - [SMALL_STATE(274)] = 9323, - [SMALL_STATE(275)] = 9440, - [SMALL_STATE(276)] = 9557, - [SMALL_STATE(277)] = 9674, - [SMALL_STATE(278)] = 9791, - [SMALL_STATE(279)] = 9912, - [SMALL_STATE(280)] = 10029, - [SMALL_STATE(281)] = 10146, - [SMALL_STATE(282)] = 10263, - [SMALL_STATE(283)] = 10380, - [SMALL_STATE(284)] = 10501, - [SMALL_STATE(285)] = 10618, - [SMALL_STATE(286)] = 10735, - [SMALL_STATE(287)] = 10852, - [SMALL_STATE(288)] = 10973, - [SMALL_STATE(289)] = 11090, - [SMALL_STATE(290)] = 11207, - [SMALL_STATE(291)] = 11328, - [SMALL_STATE(292)] = 11449, - [SMALL_STATE(293)] = 11570, - [SMALL_STATE(294)] = 11687, - [SMALL_STATE(295)] = 11804, - [SMALL_STATE(296)] = 11925, - [SMALL_STATE(297)] = 12042, - [SMALL_STATE(298)] = 12159, - [SMALL_STATE(299)] = 12276, - [SMALL_STATE(300)] = 12393, - [SMALL_STATE(301)] = 12510, - [SMALL_STATE(302)] = 12631, - [SMALL_STATE(303)] = 12752, - [SMALL_STATE(304)] = 12871, - [SMALL_STATE(305)] = 12988, - [SMALL_STATE(306)] = 13105, - [SMALL_STATE(307)] = 13222, - [SMALL_STATE(308)] = 13343, - [SMALL_STATE(309)] = 13460, - [SMALL_STATE(310)] = 13577, - [SMALL_STATE(311)] = 13694, - [SMALL_STATE(312)] = 13811, - [SMALL_STATE(313)] = 13928, - [SMALL_STATE(314)] = 14045, - [SMALL_STATE(315)] = 14162, - [SMALL_STATE(316)] = 14279, - [SMALL_STATE(317)] = 14397, - [SMALL_STATE(318)] = 14515, - [SMALL_STATE(319)] = 14633, - [SMALL_STATE(320)] = 14738, - [SMALL_STATE(321)] = 14853, - [SMALL_STATE(322)] = 14968, - [SMALL_STATE(323)] = 15083, - [SMALL_STATE(324)] = 15198, - [SMALL_STATE(325)] = 15313, - [SMALL_STATE(326)] = 15428, - [SMALL_STATE(327)] = 15543, - [SMALL_STATE(328)] = 15658, - [SMALL_STATE(329)] = 15773, - [SMALL_STATE(330)] = 15888, - [SMALL_STATE(331)] = 16003, - [SMALL_STATE(332)] = 16118, - [SMALL_STATE(333)] = 16233, - [SMALL_STATE(334)] = 16348, - [SMALL_STATE(335)] = 16463, - [SMALL_STATE(336)] = 16578, - [SMALL_STATE(337)] = 16693, - [SMALL_STATE(338)] = 16808, - [SMALL_STATE(339)] = 16923, - [SMALL_STATE(340)] = 17038, - [SMALL_STATE(341)] = 17153, - [SMALL_STATE(342)] = 17268, - [SMALL_STATE(343)] = 17383, - [SMALL_STATE(344)] = 17498, - [SMALL_STATE(345)] = 17613, - [SMALL_STATE(346)] = 17728, - [SMALL_STATE(347)] = 17843, - [SMALL_STATE(348)] = 17958, - [SMALL_STATE(349)] = 18029, - [SMALL_STATE(350)] = 18144, - [SMALL_STATE(351)] = 18259, - [SMALL_STATE(352)] = 18374, - [SMALL_STATE(353)] = 18489, - [SMALL_STATE(354)] = 18604, - [SMALL_STATE(355)] = 18719, - [SMALL_STATE(356)] = 18834, - [SMALL_STATE(357)] = 18905, - [SMALL_STATE(358)] = 19020, - [SMALL_STATE(359)] = 19135, - [SMALL_STATE(360)] = 19250, - [SMALL_STATE(361)] = 19321, - [SMALL_STATE(362)] = 19436, - [SMALL_STATE(363)] = 19551, - [SMALL_STATE(364)] = 19666, - [SMALL_STATE(365)] = 19781, - [SMALL_STATE(366)] = 19896, - [SMALL_STATE(367)] = 20011, - [SMALL_STATE(368)] = 20126, - [SMALL_STATE(369)] = 20241, - [SMALL_STATE(370)] = 20356, - [SMALL_STATE(371)] = 20471, - [SMALL_STATE(372)] = 20586, - [SMALL_STATE(373)] = 20701, - [SMALL_STATE(374)] = 20816, - [SMALL_STATE(375)] = 20931, - [SMALL_STATE(376)] = 21046, - [SMALL_STATE(377)] = 21161, - [SMALL_STATE(378)] = 21276, - [SMALL_STATE(379)] = 21391, - [SMALL_STATE(380)] = 21506, - [SMALL_STATE(381)] = 21621, - [SMALL_STATE(382)] = 21736, - [SMALL_STATE(383)] = 21851, - [SMALL_STATE(384)] = 21966, - [SMALL_STATE(385)] = 22081, - [SMALL_STATE(386)] = 22196, - [SMALL_STATE(387)] = 22311, - [SMALL_STATE(388)] = 22426, - [SMALL_STATE(389)] = 22541, - [SMALL_STATE(390)] = 22656, - [SMALL_STATE(391)] = 22771, - [SMALL_STATE(392)] = 22886, - [SMALL_STATE(393)] = 23001, - [SMALL_STATE(394)] = 23116, - [SMALL_STATE(395)] = 23231, - [SMALL_STATE(396)] = 23346, - [SMALL_STATE(397)] = 23461, - [SMALL_STATE(398)] = 23576, - [SMALL_STATE(399)] = 23691, - [SMALL_STATE(400)] = 23806, - [SMALL_STATE(401)] = 23921, - [SMALL_STATE(402)] = 24036, - [SMALL_STATE(403)] = 24151, - [SMALL_STATE(404)] = 24266, - [SMALL_STATE(405)] = 24381, - [SMALL_STATE(406)] = 24464, - [SMALL_STATE(407)] = 24579, - [SMALL_STATE(408)] = 24694, - [SMALL_STATE(409)] = 24809, - [SMALL_STATE(410)] = 24924, - [SMALL_STATE(411)] = 25039, - [SMALL_STATE(412)] = 25154, - [SMALL_STATE(413)] = 25269, - [SMALL_STATE(414)] = 25342, - [SMALL_STATE(415)] = 25415, - [SMALL_STATE(416)] = 25488, - [SMALL_STATE(417)] = 25603, - [SMALL_STATE(418)] = 25718, - [SMALL_STATE(419)] = 25833, - [SMALL_STATE(420)] = 25948, - [SMALL_STATE(421)] = 26063, - [SMALL_STATE(422)] = 26178, - [SMALL_STATE(423)] = 26293, - [SMALL_STATE(424)] = 26366, - [SMALL_STATE(425)] = 26471, - [SMALL_STATE(426)] = 26586, - [SMALL_STATE(427)] = 26701, - [SMALL_STATE(428)] = 26774, - [SMALL_STATE(429)] = 26847, - [SMALL_STATE(430)] = 26920, - [SMALL_STATE(431)] = 27035, - [SMALL_STATE(432)] = 27150, - [SMALL_STATE(433)] = 27265, - [SMALL_STATE(434)] = 27336, - [SMALL_STATE(435)] = 27451, - [SMALL_STATE(436)] = 27566, - [SMALL_STATE(437)] = 27681, - [SMALL_STATE(438)] = 27796, - [SMALL_STATE(439)] = 27911, - [SMALL_STATE(440)] = 28026, - [SMALL_STATE(441)] = 28141, - [SMALL_STATE(442)] = 28216, - [SMALL_STATE(443)] = 28331, - [SMALL_STATE(444)] = 28446, - [SMALL_STATE(445)] = 28561, - [SMALL_STATE(446)] = 28676, - [SMALL_STATE(447)] = 28791, - [SMALL_STATE(448)] = 28906, - [SMALL_STATE(449)] = 29021, - [SMALL_STATE(450)] = 29136, - [SMALL_STATE(451)] = 29251, - [SMALL_STATE(452)] = 29366, - [SMALL_STATE(453)] = 29481, - [SMALL_STATE(454)] = 29596, - [SMALL_STATE(455)] = 29667, - [SMALL_STATE(456)] = 29782, - [SMALL_STATE(457)] = 29897, - [SMALL_STATE(458)] = 30012, - [SMALL_STATE(459)] = 30127, - [SMALL_STATE(460)] = 30242, - [SMALL_STATE(461)] = 30357, - [SMALL_STATE(462)] = 30472, - [SMALL_STATE(463)] = 30587, - [SMALL_STATE(464)] = 30702, - [SMALL_STATE(465)] = 30817, - [SMALL_STATE(466)] = 30932, - [SMALL_STATE(467)] = 31047, - [SMALL_STATE(468)] = 31162, - [SMALL_STATE(469)] = 31277, - [SMALL_STATE(470)] = 31392, - [SMALL_STATE(471)] = 31507, - [SMALL_STATE(472)] = 31622, - [SMALL_STATE(473)] = 31737, - [SMALL_STATE(474)] = 31852, - [SMALL_STATE(475)] = 31967, - [SMALL_STATE(476)] = 32082, - [SMALL_STATE(477)] = 32197, - [SMALL_STATE(478)] = 32312, - [SMALL_STATE(479)] = 32427, - [SMALL_STATE(480)] = 32542, - [SMALL_STATE(481)] = 32657, - [SMALL_STATE(482)] = 32772, - [SMALL_STATE(483)] = 32887, - [SMALL_STATE(484)] = 33002, - [SMALL_STATE(485)] = 33117, - [SMALL_STATE(486)] = 33232, - [SMALL_STATE(487)] = 33347, - [SMALL_STATE(488)] = 33462, - [SMALL_STATE(489)] = 33547, - [SMALL_STATE(490)] = 33662, - [SMALL_STATE(491)] = 33777, - [SMALL_STATE(492)] = 33892, - [SMALL_STATE(493)] = 34007, - [SMALL_STATE(494)] = 34122, - [SMALL_STATE(495)] = 34237, - [SMALL_STATE(496)] = 34352, - [SMALL_STATE(497)] = 34467, - [SMALL_STATE(498)] = 34548, - [SMALL_STATE(499)] = 34663, - [SMALL_STATE(500)] = 34778, - [SMALL_STATE(501)] = 34893, - [SMALL_STATE(502)] = 35008, - [SMALL_STATE(503)] = 35123, - [SMALL_STATE(504)] = 35238, - [SMALL_STATE(505)] = 35353, - [SMALL_STATE(506)] = 35468, - [SMALL_STATE(507)] = 35583, - [SMALL_STATE(508)] = 35698, - [SMALL_STATE(509)] = 35813, - [SMALL_STATE(510)] = 35928, - [SMALL_STATE(511)] = 36043, - [SMALL_STATE(512)] = 36158, - [SMALL_STATE(513)] = 36273, - [SMALL_STATE(514)] = 36388, - [SMALL_STATE(515)] = 36503, - [SMALL_STATE(516)] = 36618, - [SMALL_STATE(517)] = 36733, - [SMALL_STATE(518)] = 36838, - [SMALL_STATE(519)] = 36953, - [SMALL_STATE(520)] = 37068, - [SMALL_STATE(521)] = 37183, - [SMALL_STATE(522)] = 37298, - [SMALL_STATE(523)] = 37413, - [SMALL_STATE(524)] = 37528, - [SMALL_STATE(525)] = 37643, - [SMALL_STATE(526)] = 37758, - [SMALL_STATE(527)] = 37829, - [SMALL_STATE(528)] = 37904, - [SMALL_STATE(529)] = 38019, - [SMALL_STATE(530)] = 38134, - [SMALL_STATE(531)] = 38249, - [SMALL_STATE(532)] = 38364, - [SMALL_STATE(533)] = 38479, - [SMALL_STATE(534)] = 38550, - [SMALL_STATE(535)] = 38665, - [SMALL_STATE(536)] = 38780, - [SMALL_STATE(537)] = 38895, - [SMALL_STATE(538)] = 38966, - [SMALL_STATE(539)] = 39081, - [SMALL_STATE(540)] = 39156, - [SMALL_STATE(541)] = 39271, - [SMALL_STATE(542)] = 39342, - [SMALL_STATE(543)] = 39457, - [SMALL_STATE(544)] = 39572, - [SMALL_STATE(545)] = 39687, - [SMALL_STATE(546)] = 39802, - [SMALL_STATE(547)] = 39917, - [SMALL_STATE(548)] = 40032, - [SMALL_STATE(549)] = 40147, - [SMALL_STATE(550)] = 40262, - [SMALL_STATE(551)] = 40377, - [SMALL_STATE(552)] = 40450, - [SMALL_STATE(553)] = 40565, - [SMALL_STATE(554)] = 40636, - [SMALL_STATE(555)] = 40751, - [SMALL_STATE(556)] = 40866, - [SMALL_STATE(557)] = 40951, - [SMALL_STATE(558)] = 41066, - [SMALL_STATE(559)] = 41181, - [SMALL_STATE(560)] = 41296, - [SMALL_STATE(561)] = 41411, - [SMALL_STATE(562)] = 41526, - [SMALL_STATE(563)] = 41641, - [SMALL_STATE(564)] = 41756, - [SMALL_STATE(565)] = 41871, - [SMALL_STATE(566)] = 41986, - [SMALL_STATE(567)] = 42101, - [SMALL_STATE(568)] = 42216, - [SMALL_STATE(569)] = 42331, - [SMALL_STATE(570)] = 42446, - [SMALL_STATE(571)] = 42561, - [SMALL_STATE(572)] = 42676, - [SMALL_STATE(573)] = 42791, - [SMALL_STATE(574)] = 42906, - [SMALL_STATE(575)] = 43021, - [SMALL_STATE(576)] = 43092, - [SMALL_STATE(577)] = 43207, - [SMALL_STATE(578)] = 43322, - [SMALL_STATE(579)] = 43437, - [SMALL_STATE(580)] = 43552, - [SMALL_STATE(581)] = 43633, - [SMALL_STATE(582)] = 43748, - [SMALL_STATE(583)] = 43863, - [SMALL_STATE(584)] = 43978, - [SMALL_STATE(585)] = 44049, - [SMALL_STATE(586)] = 44164, - [SMALL_STATE(587)] = 44279, - [SMALL_STATE(588)] = 44394, - [SMALL_STATE(589)] = 44509, - [SMALL_STATE(590)] = 44624, - [SMALL_STATE(591)] = 44739, - [SMALL_STATE(592)] = 44854, - [SMALL_STATE(593)] = 44969, - [SMALL_STATE(594)] = 45084, - [SMALL_STATE(595)] = 45199, - [SMALL_STATE(596)] = 45314, - [SMALL_STATE(597)] = 45429, - [SMALL_STATE(598)] = 45536, - [SMALL_STATE(599)] = 45651, - [SMALL_STATE(600)] = 45758, - [SMALL_STATE(601)] = 45873, - [SMALL_STATE(602)] = 45944, - [SMALL_STATE(603)] = 46059, - [SMALL_STATE(604)] = 46174, - [SMALL_STATE(605)] = 46289, - [SMALL_STATE(606)] = 46404, - [SMALL_STATE(607)] = 46475, - [SMALL_STATE(608)] = 46590, - [SMALL_STATE(609)] = 46705, - [SMALL_STATE(610)] = 46776, - [SMALL_STATE(611)] = 46847, - [SMALL_STATE(612)] = 46962, - [SMALL_STATE(613)] = 47077, - [SMALL_STATE(614)] = 47192, - [SMALL_STATE(615)] = 47307, - [SMALL_STATE(616)] = 47378, - [SMALL_STATE(617)] = 47493, - [SMALL_STATE(618)] = 47564, - [SMALL_STATE(619)] = 47635, - [SMALL_STATE(620)] = 47750, - [SMALL_STATE(621)] = 47865, - [SMALL_STATE(622)] = 47980, - [SMALL_STATE(623)] = 48095, - [SMALL_STATE(624)] = 48210, - [SMALL_STATE(625)] = 48325, - [SMALL_STATE(626)] = 48440, - [SMALL_STATE(627)] = 48555, - [SMALL_STATE(628)] = 48670, - [SMALL_STATE(629)] = 48785, - [SMALL_STATE(630)] = 48900, - [SMALL_STATE(631)] = 49015, - [SMALL_STATE(632)] = 49104, - [SMALL_STATE(633)] = 49219, - [SMALL_STATE(634)] = 49334, - [SMALL_STATE(635)] = 49449, - [SMALL_STATE(636)] = 49564, - [SMALL_STATE(637)] = 49655, - [SMALL_STATE(638)] = 49770, - [SMALL_STATE(639)] = 49885, - [SMALL_STATE(640)] = 50000, - [SMALL_STATE(641)] = 50115, - [SMALL_STATE(642)] = 50230, - [SMALL_STATE(643)] = 50323, - [SMALL_STATE(644)] = 50418, - [SMALL_STATE(645)] = 50505, - [SMALL_STATE(646)] = 50576, - [SMALL_STATE(647)] = 50691, - [SMALL_STATE(648)] = 50806, - [SMALL_STATE(649)] = 50921, - [SMALL_STATE(650)] = 51036, - [SMALL_STATE(651)] = 51151, - [SMALL_STATE(652)] = 51234, - [SMALL_STATE(653)] = 51317, - [SMALL_STATE(654)] = 51432, - [SMALL_STATE(655)] = 51547, - [SMALL_STATE(656)] = 51622, - [SMALL_STATE(657)] = 51737, - [SMALL_STATE(658)] = 51808, - [SMALL_STATE(659)] = 51923, - [SMALL_STATE(660)] = 52038, - [SMALL_STATE(661)] = 52153, - [SMALL_STATE(662)] = 52268, - [SMALL_STATE(663)] = 52383, - [SMALL_STATE(664)] = 52458, - [SMALL_STATE(665)] = 52573, - [SMALL_STATE(666)] = 52688, - [SMALL_STATE(667)] = 52761, - [SMALL_STATE(668)] = 52876, - [SMALL_STATE(669)] = 52991, - [SMALL_STATE(670)] = 53106, - [SMALL_STATE(671)] = 53221, - [SMALL_STATE(672)] = 53336, - [SMALL_STATE(673)] = 53451, - [SMALL_STATE(674)] = 53558, - [SMALL_STATE(675)] = 53673, - [SMALL_STATE(676)] = 53788, - [SMALL_STATE(677)] = 53903, - [SMALL_STATE(678)] = 54018, - [SMALL_STATE(679)] = 54133, - [SMALL_STATE(680)] = 54248, - [SMALL_STATE(681)] = 54363, - [SMALL_STATE(682)] = 54434, - [SMALL_STATE(683)] = 54549, - [SMALL_STATE(684)] = 54664, - [SMALL_STATE(685)] = 54779, - [SMALL_STATE(686)] = 54894, - [SMALL_STATE(687)] = 55011, - [SMALL_STATE(688)] = 55126, - [SMALL_STATE(689)] = 55241, - [SMALL_STATE(690)] = 55356, - [SMALL_STATE(691)] = 55471, - [SMALL_STATE(692)] = 55586, - [SMALL_STATE(693)] = 55701, - [SMALL_STATE(694)] = 55816, - [SMALL_STATE(695)] = 55931, - [SMALL_STATE(696)] = 56046, - [SMALL_STATE(697)] = 56161, - [SMALL_STATE(698)] = 56276, - [SMALL_STATE(699)] = 56391, - [SMALL_STATE(700)] = 56506, - [SMALL_STATE(701)] = 56621, - [SMALL_STATE(702)] = 56736, - [SMALL_STATE(703)] = 56851, - [SMALL_STATE(704)] = 56966, - [SMALL_STATE(705)] = 57081, - [SMALL_STATE(706)] = 57196, - [SMALL_STATE(707)] = 57311, - [SMALL_STATE(708)] = 57426, - [SMALL_STATE(709)] = 57541, - [SMALL_STATE(710)] = 57656, - [SMALL_STATE(711)] = 57771, - [SMALL_STATE(712)] = 57886, - [SMALL_STATE(713)] = 58001, - [SMALL_STATE(714)] = 58116, - [SMALL_STATE(715)] = 58231, - [SMALL_STATE(716)] = 58346, - [SMALL_STATE(717)] = 58461, - [SMALL_STATE(718)] = 58576, - [SMALL_STATE(719)] = 58691, - [SMALL_STATE(720)] = 58806, - [SMALL_STATE(721)] = 58921, - [SMALL_STATE(722)] = 59036, - [SMALL_STATE(723)] = 59151, - [SMALL_STATE(724)] = 59266, - [SMALL_STATE(725)] = 59381, - [SMALL_STATE(726)] = 59496, - [SMALL_STATE(727)] = 59567, - [SMALL_STATE(728)] = 59682, - [SMALL_STATE(729)] = 59797, - [SMALL_STATE(730)] = 59912, - [SMALL_STATE(731)] = 60027, - [SMALL_STATE(732)] = 60142, - [SMALL_STATE(733)] = 60257, - [SMALL_STATE(734)] = 60372, - [SMALL_STATE(735)] = 60487, - [SMALL_STATE(736)] = 60602, - [SMALL_STATE(737)] = 60717, - [SMALL_STATE(738)] = 60832, - [SMALL_STATE(739)] = 60947, - [SMALL_STATE(740)] = 61062, - [SMALL_STATE(741)] = 61177, - [SMALL_STATE(742)] = 61292, - [SMALL_STATE(743)] = 61407, - [SMALL_STATE(744)] = 61522, - [SMALL_STATE(745)] = 61637, - [SMALL_STATE(746)] = 61752, - [SMALL_STATE(747)] = 61867, - [SMALL_STATE(748)] = 61982, - [SMALL_STATE(749)] = 62097, - [SMALL_STATE(750)] = 62212, - [SMALL_STATE(751)] = 62327, - [SMALL_STATE(752)] = 62442, - [SMALL_STATE(753)] = 62557, - [SMALL_STATE(754)] = 62672, - [SMALL_STATE(755)] = 62787, - [SMALL_STATE(756)] = 62902, - [SMALL_STATE(757)] = 63017, - [SMALL_STATE(758)] = 63132, - [SMALL_STATE(759)] = 63247, - [SMALL_STATE(760)] = 63362, - [SMALL_STATE(761)] = 63477, - [SMALL_STATE(762)] = 63592, - [SMALL_STATE(763)] = 63707, - [SMALL_STATE(764)] = 63822, - [SMALL_STATE(765)] = 63937, - [SMALL_STATE(766)] = 64052, - [SMALL_STATE(767)] = 64167, - [SMALL_STATE(768)] = 64282, - [SMALL_STATE(769)] = 64397, - [SMALL_STATE(770)] = 64512, - [SMALL_STATE(771)] = 64627, - [SMALL_STATE(772)] = 64742, - [SMALL_STATE(773)] = 64813, - [SMALL_STATE(774)] = 64928, - [SMALL_STATE(775)] = 65043, - [SMALL_STATE(776)] = 65158, - [SMALL_STATE(777)] = 65273, - [SMALL_STATE(778)] = 65388, - [SMALL_STATE(779)] = 65503, - [SMALL_STATE(780)] = 65618, - [SMALL_STATE(781)] = 65733, - [SMALL_STATE(782)] = 65848, - [SMALL_STATE(783)] = 65963, - [SMALL_STATE(784)] = 66078, - [SMALL_STATE(785)] = 66193, - [SMALL_STATE(786)] = 66308, - [SMALL_STATE(787)] = 66423, - [SMALL_STATE(788)] = 66538, - [SMALL_STATE(789)] = 66653, - [SMALL_STATE(790)] = 66768, - [SMALL_STATE(791)] = 66883, - [SMALL_STATE(792)] = 66998, - [SMALL_STATE(793)] = 67113, - [SMALL_STATE(794)] = 67220, - [SMALL_STATE(795)] = 67335, - [SMALL_STATE(796)] = 67450, - [SMALL_STATE(797)] = 67565, - [SMALL_STATE(798)] = 67680, - [SMALL_STATE(799)] = 67795, - [SMALL_STATE(800)] = 67910, - [SMALL_STATE(801)] = 68025, - [SMALL_STATE(802)] = 68140, - [SMALL_STATE(803)] = 68255, - [SMALL_STATE(804)] = 68370, - [SMALL_STATE(805)] = 68485, - [SMALL_STATE(806)] = 68600, - [SMALL_STATE(807)] = 68715, - [SMALL_STATE(808)] = 68830, - [SMALL_STATE(809)] = 68945, - [SMALL_STATE(810)] = 69020, - [SMALL_STATE(811)] = 69099, - [SMALL_STATE(812)] = 69178, - [SMALL_STATE(813)] = 69293, - [SMALL_STATE(814)] = 69408, - [SMALL_STATE(815)] = 69523, - [SMALL_STATE(816)] = 69638, - [SMALL_STATE(817)] = 69713, - [SMALL_STATE(818)] = 69828, - [SMALL_STATE(819)] = 69907, - [SMALL_STATE(820)] = 69990, - [SMALL_STATE(821)] = 70073, - [SMALL_STATE(822)] = 70156, - [SMALL_STATE(823)] = 70243, - [SMALL_STATE(824)] = 70348, - [SMALL_STATE(825)] = 70463, - [SMALL_STATE(826)] = 70558, - [SMALL_STATE(827)] = 70651, - [SMALL_STATE(828)] = 70742, - [SMALL_STATE(829)] = 70831, - [SMALL_STATE(830)] = 70946, - [SMALL_STATE(831)] = 71017, - [SMALL_STATE(832)] = 71132, - [SMALL_STATE(833)] = 71247, - [SMALL_STATE(834)] = 71362, - [SMALL_STATE(835)] = 71435, - [SMALL_STATE(836)] = 71550, - [SMALL_STATE(837)] = 71657, - [SMALL_STATE(838)] = 71764, - [SMALL_STATE(839)] = 71879, - [SMALL_STATE(840)] = 71994, - [SMALL_STATE(841)] = 72109, - [SMALL_STATE(842)] = 72224, - [SMALL_STATE(843)] = 72339, - [SMALL_STATE(844)] = 72410, - [SMALL_STATE(845)] = 72481, - [SMALL_STATE(846)] = 72556, - [SMALL_STATE(847)] = 72671, - [SMALL_STATE(848)] = 72786, - [SMALL_STATE(849)] = 72901, - [SMALL_STATE(850)] = 73016, - [SMALL_STATE(851)] = 73087, - [SMALL_STATE(852)] = 73202, - [SMALL_STATE(853)] = 73317, - [SMALL_STATE(854)] = 73388, - [SMALL_STATE(855)] = 73467, - [SMALL_STATE(856)] = 73538, - [SMALL_STATE(857)] = 73608, - [SMALL_STATE(858)] = 73678, - [SMALL_STATE(859)] = 73746, - [SMALL_STATE(860)] = 73814, - [SMALL_STATE(861)] = 73882, - [SMALL_STATE(862)] = 73950, - [SMALL_STATE(863)] = 74018, - [SMALL_STATE(864)] = 74086, - [SMALL_STATE(865)] = 74154, - [SMALL_STATE(866)] = 74222, - [SMALL_STATE(867)] = 74290, - [SMALL_STATE(868)] = 74358, - [SMALL_STATE(869)] = 74426, - [SMALL_STATE(870)] = 74494, - [SMALL_STATE(871)] = 74564, - [SMALL_STATE(872)] = 74634, - [SMALL_STATE(873)] = 74702, - [SMALL_STATE(874)] = 74772, - [SMALL_STATE(875)] = 74842, - [SMALL_STATE(876)] = 74912, - [SMALL_STATE(877)] = 74982, - [SMALL_STATE(878)] = 75052, - [SMALL_STATE(879)] = 75122, - [SMALL_STATE(880)] = 75192, - [SMALL_STATE(881)] = 75260, - [SMALL_STATE(882)] = 75330, - [SMALL_STATE(883)] = 75398, - [SMALL_STATE(884)] = 75466, - [SMALL_STATE(885)] = 75534, - [SMALL_STATE(886)] = 75604, - [SMALL_STATE(887)] = 75674, - [SMALL_STATE(888)] = 75744, - [SMALL_STATE(889)] = 75814, - [SMALL_STATE(890)] = 75884, - [SMALL_STATE(891)] = 75952, - [SMALL_STATE(892)] = 76020, - [SMALL_STATE(893)] = 76098, - [SMALL_STATE(894)] = 76166, - [SMALL_STATE(895)] = 76234, - [SMALL_STATE(896)] = 76302, - [SMALL_STATE(897)] = 76372, - [SMALL_STATE(898)] = 76442, - [SMALL_STATE(899)] = 76512, - [SMALL_STATE(900)] = 76580, - [SMALL_STATE(901)] = 76658, - [SMALL_STATE(902)] = 76726, - [SMALL_STATE(903)] = 76793, - [SMALL_STATE(904)] = 76860, - [SMALL_STATE(905)] = 76927, - [SMALL_STATE(906)] = 76994, - [SMALL_STATE(907)] = 77061, - [SMALL_STATE(908)] = 77128, - [SMALL_STATE(909)] = 77195, - [SMALL_STATE(910)] = 77262, - [SMALL_STATE(911)] = 77329, - [SMALL_STATE(912)] = 77396, - [SMALL_STATE(913)] = 77463, - [SMALL_STATE(914)] = 77530, - [SMALL_STATE(915)] = 77597, - [SMALL_STATE(916)] = 77664, - [SMALL_STATE(917)] = 77731, - [SMALL_STATE(918)] = 77798, - [SMALL_STATE(919)] = 77865, - [SMALL_STATE(920)] = 77932, - [SMALL_STATE(921)] = 77999, - [SMALL_STATE(922)] = 78066, - [SMALL_STATE(923)] = 78133, - [SMALL_STATE(924)] = 78200, - [SMALL_STATE(925)] = 78267, - [SMALL_STATE(926)] = 78334, - [SMALL_STATE(927)] = 78401, - [SMALL_STATE(928)] = 78468, - [SMALL_STATE(929)] = 78535, - [SMALL_STATE(930)] = 78602, - [SMALL_STATE(931)] = 78669, - [SMALL_STATE(932)] = 78736, - [SMALL_STATE(933)] = 78803, - [SMALL_STATE(934)] = 78870, - [SMALL_STATE(935)] = 78937, - [SMALL_STATE(936)] = 79004, - [SMALL_STATE(937)] = 79071, - [SMALL_STATE(938)] = 79138, - [SMALL_STATE(939)] = 79205, - [SMALL_STATE(940)] = 79272, - [SMALL_STATE(941)] = 79339, - [SMALL_STATE(942)] = 79406, - [SMALL_STATE(943)] = 79473, - [SMALL_STATE(944)] = 79540, - [SMALL_STATE(945)] = 79607, - [SMALL_STATE(946)] = 79674, - [SMALL_STATE(947)] = 79741, - [SMALL_STATE(948)] = 79808, - [SMALL_STATE(949)] = 79875, - [SMALL_STATE(950)] = 79942, - [SMALL_STATE(951)] = 80009, - [SMALL_STATE(952)] = 80076, - [SMALL_STATE(953)] = 80147, - [SMALL_STATE(954)] = 80214, - [SMALL_STATE(955)] = 80285, - [SMALL_STATE(956)] = 80352, - [SMALL_STATE(957)] = 80419, - [SMALL_STATE(958)] = 80486, - [SMALL_STATE(959)] = 80553, - [SMALL_STATE(960)] = 80620, - [SMALL_STATE(961)] = 80691, - [SMALL_STATE(962)] = 80758, - [SMALL_STATE(963)] = 80825, - [SMALL_STATE(964)] = 80892, - [SMALL_STATE(965)] = 80959, - [SMALL_STATE(966)] = 81026, - [SMALL_STATE(967)] = 81093, - [SMALL_STATE(968)] = 81160, - [SMALL_STATE(969)] = 81227, - [SMALL_STATE(970)] = 81294, - [SMALL_STATE(971)] = 81361, - [SMALL_STATE(972)] = 81428, - [SMALL_STATE(973)] = 81495, - [SMALL_STATE(974)] = 81562, - [SMALL_STATE(975)] = 81629, - [SMALL_STATE(976)] = 81696, - [SMALL_STATE(977)] = 81763, - [SMALL_STATE(978)] = 81830, - [SMALL_STATE(979)] = 81897, - [SMALL_STATE(980)] = 81964, - [SMALL_STATE(981)] = 82031, - [SMALL_STATE(982)] = 82098, - [SMALL_STATE(983)] = 82165, - [SMALL_STATE(984)] = 82236, - [SMALL_STATE(985)] = 82303, - [SMALL_STATE(986)] = 82370, - [SMALL_STATE(987)] = 82437, - [SMALL_STATE(988)] = 82508, - [SMALL_STATE(989)] = 82575, - [SMALL_STATE(990)] = 82642, - [SMALL_STATE(991)] = 82709, - [SMALL_STATE(992)] = 82776, - [SMALL_STATE(993)] = 82843, - [SMALL_STATE(994)] = 82910, - [SMALL_STATE(995)] = 82977, - [SMALL_STATE(996)] = 83044, - [SMALL_STATE(997)] = 83111, - [SMALL_STATE(998)] = 83178, - [SMALL_STATE(999)] = 83245, - [SMALL_STATE(1000)] = 83312, - [SMALL_STATE(1001)] = 83379, - [SMALL_STATE(1002)] = 83446, - [SMALL_STATE(1003)] = 83517, - [SMALL_STATE(1004)] = 83584, - [SMALL_STATE(1005)] = 83651, - [SMALL_STATE(1006)] = 83718, - [SMALL_STATE(1007)] = 83785, - [SMALL_STATE(1008)] = 83852, - [SMALL_STATE(1009)] = 83919, - [SMALL_STATE(1010)] = 83986, - [SMALL_STATE(1011)] = 84058, - [SMALL_STATE(1012)] = 84130, - [SMALL_STATE(1013)] = 84202, - [SMALL_STATE(1014)] = 84280, - [SMALL_STATE(1015)] = 84353, - [SMALL_STATE(1016)] = 84428, - [SMALL_STATE(1017)] = 84489, - [SMALL_STATE(1018)] = 84570, - [SMALL_STATE(1019)] = 84653, - [SMALL_STATE(1020)] = 84738, - [SMALL_STATE(1021)] = 84803, - [SMALL_STATE(1022)] = 84864, - [SMALL_STATE(1023)] = 84925, - [SMALL_STATE(1024)] = 84986, - [SMALL_STATE(1025)] = 85047, - [SMALL_STATE(1026)] = 85142, - [SMALL_STATE(1027)] = 85203, - [SMALL_STATE(1028)] = 85298, - [SMALL_STATE(1029)] = 85359, - [SMALL_STATE(1030)] = 85428, - [SMALL_STATE(1031)] = 85505, - [SMALL_STATE(1032)] = 85570, - [SMALL_STATE(1033)] = 85633, - [SMALL_STATE(1034)] = 85694, - [SMALL_STATE(1035)] = 85757, - [SMALL_STATE(1036)] = 85818, - [SMALL_STATE(1037)] = 85881, - [SMALL_STATE(1038)] = 85944, - [SMALL_STATE(1039)] = 86013, - [SMALL_STATE(1040)] = 86076, - [SMALL_STATE(1041)] = 86149, - [SMALL_STATE(1042)] = 86246, - [SMALL_STATE(1043)] = 86307, - [SMALL_STATE(1044)] = 86380, - [SMALL_STATE(1045)] = 86441, - [SMALL_STATE(1046)] = 86538, - [SMALL_STATE(1047)] = 86617, - [SMALL_STATE(1048)] = 86678, - [SMALL_STATE(1049)] = 86743, - [SMALL_STATE(1050)] = 86808, - [SMALL_STATE(1051)] = 86905, - [SMALL_STATE(1052)] = 86968, - [SMALL_STATE(1053)] = 87029, - [SMALL_STATE(1054)] = 87100, - [SMALL_STATE(1055)] = 87161, - [SMALL_STATE(1056)] = 87222, - [SMALL_STATE(1057)] = 87280, - [SMALL_STATE(1058)] = 87338, - [SMALL_STATE(1059)] = 87396, - [SMALL_STATE(1060)] = 87454, - [SMALL_STATE(1061)] = 87512, - [SMALL_STATE(1062)] = 87570, - [SMALL_STATE(1063)] = 87628, - [SMALL_STATE(1064)] = 87688, - [SMALL_STATE(1065)] = 87748, - [SMALL_STATE(1066)] = 87806, - [SMALL_STATE(1067)] = 87864, - [SMALL_STATE(1068)] = 87924, + [SMALL_STATE(199)] = 0, + [SMALL_STATE(200)] = 117, + [SMALL_STATE(201)] = 234, + [SMALL_STATE(202)] = 355, + [SMALL_STATE(203)] = 472, + [SMALL_STATE(204)] = 589, + [SMALL_STATE(205)] = 710, + [SMALL_STATE(206)] = 827, + [SMALL_STATE(207)] = 948, + [SMALL_STATE(208)] = 1065, + [SMALL_STATE(209)] = 1186, + [SMALL_STATE(210)] = 1307, + [SMALL_STATE(211)] = 1424, + [SMALL_STATE(212)] = 1541, + [SMALL_STATE(213)] = 1658, + [SMALL_STATE(214)] = 1775, + [SMALL_STATE(215)] = 1892, + [SMALL_STATE(216)] = 2009, + [SMALL_STATE(217)] = 2126, + [SMALL_STATE(218)] = 2243, + [SMALL_STATE(219)] = 2360, + [SMALL_STATE(220)] = 2477, + [SMALL_STATE(221)] = 2598, + [SMALL_STATE(222)] = 2715, + [SMALL_STATE(223)] = 2836, + [SMALL_STATE(224)] = 2953, + [SMALL_STATE(225)] = 3074, + [SMALL_STATE(226)] = 3195, + [SMALL_STATE(227)] = 3316, + [SMALL_STATE(228)] = 3437, + [SMALL_STATE(229)] = 3554, + [SMALL_STATE(230)] = 3675, + [SMALL_STATE(231)] = 3792, + [SMALL_STATE(232)] = 3913, + [SMALL_STATE(233)] = 4034, + [SMALL_STATE(234)] = 4151, + [SMALL_STATE(235)] = 4268, + [SMALL_STATE(236)] = 4385, + [SMALL_STATE(237)] = 4506, + [SMALL_STATE(238)] = 4627, + [SMALL_STATE(239)] = 4744, + [SMALL_STATE(240)] = 4861, + [SMALL_STATE(241)] = 4978, + [SMALL_STATE(242)] = 5099, + [SMALL_STATE(243)] = 5216, + [SMALL_STATE(244)] = 5333, + [SMALL_STATE(245)] = 5450, + [SMALL_STATE(246)] = 5567, + [SMALL_STATE(247)] = 5684, + [SMALL_STATE(248)] = 5801, + [SMALL_STATE(249)] = 5918, + [SMALL_STATE(250)] = 6035, + [SMALL_STATE(251)] = 6154, + [SMALL_STATE(252)] = 6271, + [SMALL_STATE(253)] = 6388, + [SMALL_STATE(254)] = 6509, + [SMALL_STATE(255)] = 6626, + [SMALL_STATE(256)] = 6747, + [SMALL_STATE(257)] = 6864, + [SMALL_STATE(258)] = 6981, + [SMALL_STATE(259)] = 7098, + [SMALL_STATE(260)] = 7215, + [SMALL_STATE(261)] = 7332, + [SMALL_STATE(262)] = 7449, + [SMALL_STATE(263)] = 7566, + [SMALL_STATE(264)] = 7683, + [SMALL_STATE(265)] = 7800, + [SMALL_STATE(266)] = 7921, + [SMALL_STATE(267)] = 8038, + [SMALL_STATE(268)] = 8155, + [SMALL_STATE(269)] = 8276, + [SMALL_STATE(270)] = 8393, + [SMALL_STATE(271)] = 8514, + [SMALL_STATE(272)] = 8633, + [SMALL_STATE(273)] = 8750, + [SMALL_STATE(274)] = 8867, + [SMALL_STATE(275)] = 8984, + [SMALL_STATE(276)] = 9101, + [SMALL_STATE(277)] = 9218, + [SMALL_STATE(278)] = 9335, + [SMALL_STATE(279)] = 9452, + [SMALL_STATE(280)] = 9569, + [SMALL_STATE(281)] = 9690, + [SMALL_STATE(282)] = 9807, + [SMALL_STATE(283)] = 9924, + [SMALL_STATE(284)] = 10041, + [SMALL_STATE(285)] = 10158, + [SMALL_STATE(286)] = 10279, + [SMALL_STATE(287)] = 10396, + [SMALL_STATE(288)] = 10513, + [SMALL_STATE(289)] = 10630, + [SMALL_STATE(290)] = 10747, + [SMALL_STATE(291)] = 10864, + [SMALL_STATE(292)] = 10981, + [SMALL_STATE(293)] = 11098, + [SMALL_STATE(294)] = 11215, + [SMALL_STATE(295)] = 11334, + [SMALL_STATE(296)] = 11455, + [SMALL_STATE(297)] = 11572, + [SMALL_STATE(298)] = 11689, + [SMALL_STATE(299)] = 11806, + [SMALL_STATE(300)] = 11927, + [SMALL_STATE(301)] = 12044, + [SMALL_STATE(302)] = 12161, + [SMALL_STATE(303)] = 12282, + [SMALL_STATE(304)] = 12399, + [SMALL_STATE(305)] = 12520, + [SMALL_STATE(306)] = 12637, + [SMALL_STATE(307)] = 12754, + [SMALL_STATE(308)] = 12871, + [SMALL_STATE(309)] = 12988, + [SMALL_STATE(310)] = 13105, + [SMALL_STATE(311)] = 13222, + [SMALL_STATE(312)] = 13339, + [SMALL_STATE(313)] = 13456, + [SMALL_STATE(314)] = 13573, + [SMALL_STATE(315)] = 13690, + [SMALL_STATE(316)] = 13807, + [SMALL_STATE(317)] = 13924, + [SMALL_STATE(318)] = 14041, + [SMALL_STATE(319)] = 14158, + [SMALL_STATE(320)] = 14279, + [SMALL_STATE(321)] = 14397, + [SMALL_STATE(322)] = 14515, + [SMALL_STATE(323)] = 14633, + [SMALL_STATE(324)] = 14748, + [SMALL_STATE(325)] = 14863, + [SMALL_STATE(326)] = 14978, + [SMALL_STATE(327)] = 15053, + [SMALL_STATE(328)] = 15132, + [SMALL_STATE(329)] = 15211, + [SMALL_STATE(330)] = 15286, + [SMALL_STATE(331)] = 15365, + [SMALL_STATE(332)] = 15480, + [SMALL_STATE(333)] = 15595, + [SMALL_STATE(334)] = 15710, + [SMALL_STATE(335)] = 15825, + [SMALL_STATE(336)] = 15940, + [SMALL_STATE(337)] = 16055, + [SMALL_STATE(338)] = 16170, + [SMALL_STATE(339)] = 16285, + [SMALL_STATE(340)] = 16356, + [SMALL_STATE(341)] = 16427, + [SMALL_STATE(342)] = 16498, + [SMALL_STATE(343)] = 16577, + [SMALL_STATE(344)] = 16692, + [SMALL_STATE(345)] = 16807, + [SMALL_STATE(346)] = 16878, + [SMALL_STATE(347)] = 16993, + [SMALL_STATE(348)] = 17108, + [SMALL_STATE(349)] = 17223, + [SMALL_STATE(350)] = 17298, + [SMALL_STATE(351)] = 17369, + [SMALL_STATE(352)] = 17484, + [SMALL_STATE(353)] = 17599, + [SMALL_STATE(354)] = 17714, + [SMALL_STATE(355)] = 17829, + [SMALL_STATE(356)] = 17944, + [SMALL_STATE(357)] = 18059, + [SMALL_STATE(358)] = 18174, + [SMALL_STATE(359)] = 18281, + [SMALL_STATE(360)] = 18388, + [SMALL_STATE(361)] = 18461, + [SMALL_STATE(362)] = 18532, + [SMALL_STATE(363)] = 18647, + [SMALL_STATE(364)] = 18762, + [SMALL_STATE(365)] = 18877, + [SMALL_STATE(366)] = 18992, + [SMALL_STATE(367)] = 19081, + [SMALL_STATE(368)] = 19172, + [SMALL_STATE(369)] = 19265, + [SMALL_STATE(370)] = 19360, + [SMALL_STATE(371)] = 19447, + [SMALL_STATE(372)] = 19530, + [SMALL_STATE(373)] = 19613, + [SMALL_STATE(374)] = 19728, + [SMALL_STATE(375)] = 19843, + [SMALL_STATE(376)] = 19958, + [SMALL_STATE(377)] = 20073, + [SMALL_STATE(378)] = 20188, + [SMALL_STATE(379)] = 20303, + [SMALL_STATE(380)] = 20410, + [SMALL_STATE(381)] = 20525, + [SMALL_STATE(382)] = 20640, + [SMALL_STATE(383)] = 20711, + [SMALL_STATE(384)] = 20826, + [SMALL_STATE(385)] = 20941, + [SMALL_STATE(386)] = 21056, + [SMALL_STATE(387)] = 21171, + [SMALL_STATE(388)] = 21286, + [SMALL_STATE(389)] = 21401, + [SMALL_STATE(390)] = 21516, + [SMALL_STATE(391)] = 21631, + [SMALL_STATE(392)] = 21746, + [SMALL_STATE(393)] = 21861, + [SMALL_STATE(394)] = 21976, + [SMALL_STATE(395)] = 22091, + [SMALL_STATE(396)] = 22206, + [SMALL_STATE(397)] = 22321, + [SMALL_STATE(398)] = 22394, + [SMALL_STATE(399)] = 22509, + [SMALL_STATE(400)] = 22624, + [SMALL_STATE(401)] = 22739, + [SMALL_STATE(402)] = 22854, + [SMALL_STATE(403)] = 22969, + [SMALL_STATE(404)] = 23084, + [SMALL_STATE(405)] = 23199, + [SMALL_STATE(406)] = 23314, + [SMALL_STATE(407)] = 23429, + [SMALL_STATE(408)] = 23544, + [SMALL_STATE(409)] = 23659, + [SMALL_STATE(410)] = 23774, + [SMALL_STATE(411)] = 23889, + [SMALL_STATE(412)] = 23962, + [SMALL_STATE(413)] = 24077, + [SMALL_STATE(414)] = 24192, + [SMALL_STATE(415)] = 24307, + [SMALL_STATE(416)] = 24422, + [SMALL_STATE(417)] = 24537, + [SMALL_STATE(418)] = 24652, + [SMALL_STATE(419)] = 24767, + [SMALL_STATE(420)] = 24882, + [SMALL_STATE(421)] = 24997, + [SMALL_STATE(422)] = 25112, + [SMALL_STATE(423)] = 25227, + [SMALL_STATE(424)] = 25342, + [SMALL_STATE(425)] = 25415, + [SMALL_STATE(426)] = 25530, + [SMALL_STATE(427)] = 25645, + [SMALL_STATE(428)] = 25760, + [SMALL_STATE(429)] = 25875, + [SMALL_STATE(430)] = 25990, + [SMALL_STATE(431)] = 26063, + [SMALL_STATE(432)] = 26136, + [SMALL_STATE(433)] = 26251, + [SMALL_STATE(434)] = 26366, + [SMALL_STATE(435)] = 26481, + [SMALL_STATE(436)] = 26596, + [SMALL_STATE(437)] = 26667, + [SMALL_STATE(438)] = 26782, + [SMALL_STATE(439)] = 26897, + [SMALL_STATE(440)] = 27012, + [SMALL_STATE(441)] = 27127, + [SMALL_STATE(442)] = 27242, + [SMALL_STATE(443)] = 27313, + [SMALL_STATE(444)] = 27428, + [SMALL_STATE(445)] = 27543, + [SMALL_STATE(446)] = 27658, + [SMALL_STATE(447)] = 27773, + [SMALL_STATE(448)] = 27844, + [SMALL_STATE(449)] = 27959, + [SMALL_STATE(450)] = 28074, + [SMALL_STATE(451)] = 28189, + [SMALL_STATE(452)] = 28304, + [SMALL_STATE(453)] = 28419, + [SMALL_STATE(454)] = 28534, + [SMALL_STATE(455)] = 28649, + [SMALL_STATE(456)] = 28764, + [SMALL_STATE(457)] = 28879, + [SMALL_STATE(458)] = 28994, + [SMALL_STATE(459)] = 29109, + [SMALL_STATE(460)] = 29224, + [SMALL_STATE(461)] = 29339, + [SMALL_STATE(462)] = 29454, + [SMALL_STATE(463)] = 29569, + [SMALL_STATE(464)] = 29684, + [SMALL_STATE(465)] = 29799, + [SMALL_STATE(466)] = 29914, + [SMALL_STATE(467)] = 30029, + [SMALL_STATE(468)] = 30144, + [SMALL_STATE(469)] = 30215, + [SMALL_STATE(470)] = 30330, + [SMALL_STATE(471)] = 30445, + [SMALL_STATE(472)] = 30560, + [SMALL_STATE(473)] = 30631, + [SMALL_STATE(474)] = 30746, + [SMALL_STATE(475)] = 30861, + [SMALL_STATE(476)] = 30976, + [SMALL_STATE(477)] = 31091, + [SMALL_STATE(478)] = 31206, + [SMALL_STATE(479)] = 31321, + [SMALL_STATE(480)] = 31436, + [SMALL_STATE(481)] = 31551, + [SMALL_STATE(482)] = 31666, + [SMALL_STATE(483)] = 31781, + [SMALL_STATE(484)] = 31896, + [SMALL_STATE(485)] = 32011, + [SMALL_STATE(486)] = 32126, + [SMALL_STATE(487)] = 32241, + [SMALL_STATE(488)] = 32312, + [SMALL_STATE(489)] = 32427, + [SMALL_STATE(490)] = 32542, + [SMALL_STATE(491)] = 32657, + [SMALL_STATE(492)] = 32772, + [SMALL_STATE(493)] = 32887, + [SMALL_STATE(494)] = 33002, + [SMALL_STATE(495)] = 33117, + [SMALL_STATE(496)] = 33232, + [SMALL_STATE(497)] = 33347, + [SMALL_STATE(498)] = 33462, + [SMALL_STATE(499)] = 33567, + [SMALL_STATE(500)] = 33682, + [SMALL_STATE(501)] = 33797, + [SMALL_STATE(502)] = 33912, + [SMALL_STATE(503)] = 34027, + [SMALL_STATE(504)] = 34142, + [SMALL_STATE(505)] = 34257, + [SMALL_STATE(506)] = 34372, + [SMALL_STATE(507)] = 34487, + [SMALL_STATE(508)] = 34558, + [SMALL_STATE(509)] = 34673, + [SMALL_STATE(510)] = 34788, + [SMALL_STATE(511)] = 34903, + [SMALL_STATE(512)] = 35018, + [SMALL_STATE(513)] = 35133, + [SMALL_STATE(514)] = 35248, + [SMALL_STATE(515)] = 35363, + [SMALL_STATE(516)] = 35478, + [SMALL_STATE(517)] = 35593, + [SMALL_STATE(518)] = 35708, + [SMALL_STATE(519)] = 35823, + [SMALL_STATE(520)] = 35938, + [SMALL_STATE(521)] = 36053, + [SMALL_STATE(522)] = 36168, + [SMALL_STATE(523)] = 36239, + [SMALL_STATE(524)] = 36354, + [SMALL_STATE(525)] = 36469, + [SMALL_STATE(526)] = 36584, + [SMALL_STATE(527)] = 36699, + [SMALL_STATE(528)] = 36814, + [SMALL_STATE(529)] = 36929, + [SMALL_STATE(530)] = 37044, + [SMALL_STATE(531)] = 37159, + [SMALL_STATE(532)] = 37274, + [SMALL_STATE(533)] = 37389, + [SMALL_STATE(534)] = 37504, + [SMALL_STATE(535)] = 37619, + [SMALL_STATE(536)] = 37734, + [SMALL_STATE(537)] = 37849, + [SMALL_STATE(538)] = 37964, + [SMALL_STATE(539)] = 38079, + [SMALL_STATE(540)] = 38194, + [SMALL_STATE(541)] = 38309, + [SMALL_STATE(542)] = 38384, + [SMALL_STATE(543)] = 38499, + [SMALL_STATE(544)] = 38614, + [SMALL_STATE(545)] = 38729, + [SMALL_STATE(546)] = 38804, + [SMALL_STATE(547)] = 38919, + [SMALL_STATE(548)] = 39034, + [SMALL_STATE(549)] = 39149, + [SMALL_STATE(550)] = 39222, + [SMALL_STATE(551)] = 39337, + [SMALL_STATE(552)] = 39452, + [SMALL_STATE(553)] = 39567, + [SMALL_STATE(554)] = 39682, + [SMALL_STATE(555)] = 39797, + [SMALL_STATE(556)] = 39912, + [SMALL_STATE(557)] = 40027, + [SMALL_STATE(558)] = 40142, + [SMALL_STATE(559)] = 40257, + [SMALL_STATE(560)] = 40372, + [SMALL_STATE(561)] = 40443, + [SMALL_STATE(562)] = 40558, + [SMALL_STATE(563)] = 40673, + [SMALL_STATE(564)] = 40788, + [SMALL_STATE(565)] = 40903, + [SMALL_STATE(566)] = 41018, + [SMALL_STATE(567)] = 41133, + [SMALL_STATE(568)] = 41248, + [SMALL_STATE(569)] = 41353, + [SMALL_STATE(570)] = 41468, + [SMALL_STATE(571)] = 41583, + [SMALL_STATE(572)] = 41698, + [SMALL_STATE(573)] = 41813, + [SMALL_STATE(574)] = 41928, + [SMALL_STATE(575)] = 42043, + [SMALL_STATE(576)] = 42158, + [SMALL_STATE(577)] = 42273, + [SMALL_STATE(578)] = 42388, + [SMALL_STATE(579)] = 42503, + [SMALL_STATE(580)] = 42618, + [SMALL_STATE(581)] = 42733, + [SMALL_STATE(582)] = 42848, + [SMALL_STATE(583)] = 42963, + [SMALL_STATE(584)] = 43078, + [SMALL_STATE(585)] = 43193, + [SMALL_STATE(586)] = 43308, + [SMALL_STATE(587)] = 43423, + [SMALL_STATE(588)] = 43538, + [SMALL_STATE(589)] = 43653, + [SMALL_STATE(590)] = 43768, + [SMALL_STATE(591)] = 43883, + [SMALL_STATE(592)] = 43998, + [SMALL_STATE(593)] = 44113, + [SMALL_STATE(594)] = 44228, + [SMALL_STATE(595)] = 44343, + [SMALL_STATE(596)] = 44458, + [SMALL_STATE(597)] = 44573, + [SMALL_STATE(598)] = 44688, + [SMALL_STATE(599)] = 44803, + [SMALL_STATE(600)] = 44918, + [SMALL_STATE(601)] = 45033, + [SMALL_STATE(602)] = 45148, + [SMALL_STATE(603)] = 45263, + [SMALL_STATE(604)] = 45378, + [SMALL_STATE(605)] = 45493, + [SMALL_STATE(606)] = 45564, + [SMALL_STATE(607)] = 45679, + [SMALL_STATE(608)] = 45794, + [SMALL_STATE(609)] = 45909, + [SMALL_STATE(610)] = 46024, + [SMALL_STATE(611)] = 46139, + [SMALL_STATE(612)] = 46254, + [SMALL_STATE(613)] = 46369, + [SMALL_STATE(614)] = 46484, + [SMALL_STATE(615)] = 46599, + [SMALL_STATE(616)] = 46682, + [SMALL_STATE(617)] = 46797, + [SMALL_STATE(618)] = 46912, + [SMALL_STATE(619)] = 47027, + [SMALL_STATE(620)] = 47142, + [SMALL_STATE(621)] = 47257, + [SMALL_STATE(622)] = 47372, + [SMALL_STATE(623)] = 47487, + [SMALL_STATE(624)] = 47602, + [SMALL_STATE(625)] = 47717, + [SMALL_STATE(626)] = 47832, + [SMALL_STATE(627)] = 47947, + [SMALL_STATE(628)] = 48062, + [SMALL_STATE(629)] = 48177, + [SMALL_STATE(630)] = 48292, + [SMALL_STATE(631)] = 48397, + [SMALL_STATE(632)] = 48512, + [SMALL_STATE(633)] = 48627, + [SMALL_STATE(634)] = 48742, + [SMALL_STATE(635)] = 48857, + [SMALL_STATE(636)] = 48938, + [SMALL_STATE(637)] = 49053, + [SMALL_STATE(638)] = 49168, + [SMALL_STATE(639)] = 49283, + [SMALL_STATE(640)] = 49398, + [SMALL_STATE(641)] = 49513, + [SMALL_STATE(642)] = 49628, + [SMALL_STATE(643)] = 49743, + [SMALL_STATE(644)] = 49858, + [SMALL_STATE(645)] = 49973, + [SMALL_STATE(646)] = 50088, + [SMALL_STATE(647)] = 50203, + [SMALL_STATE(648)] = 50318, + [SMALL_STATE(649)] = 50433, + [SMALL_STATE(650)] = 50504, + [SMALL_STATE(651)] = 50619, + [SMALL_STATE(652)] = 50700, + [SMALL_STATE(653)] = 50815, + [SMALL_STATE(654)] = 50930, + [SMALL_STATE(655)] = 51045, + [SMALL_STATE(656)] = 51160, + [SMALL_STATE(657)] = 51275, + [SMALL_STATE(658)] = 51390, + [SMALL_STATE(659)] = 51505, + [SMALL_STATE(660)] = 51620, + [SMALL_STATE(661)] = 51693, + [SMALL_STATE(662)] = 51808, + [SMALL_STATE(663)] = 51879, + [SMALL_STATE(664)] = 51994, + [SMALL_STATE(665)] = 52109, + [SMALL_STATE(666)] = 52224, + [SMALL_STATE(667)] = 52339, + [SMALL_STATE(668)] = 52454, + [SMALL_STATE(669)] = 52569, + [SMALL_STATE(670)] = 52684, + [SMALL_STATE(671)] = 52799, + [SMALL_STATE(672)] = 52914, + [SMALL_STATE(673)] = 52987, + [SMALL_STATE(674)] = 53102, + [SMALL_STATE(675)] = 53217, + [SMALL_STATE(676)] = 53332, + [SMALL_STATE(677)] = 53447, + [SMALL_STATE(678)] = 53562, + [SMALL_STATE(679)] = 53677, + [SMALL_STATE(680)] = 53748, + [SMALL_STATE(681)] = 53863, + [SMALL_STATE(682)] = 53978, + [SMALL_STATE(683)] = 54093, + [SMALL_STATE(684)] = 54208, + [SMALL_STATE(685)] = 54323, + [SMALL_STATE(686)] = 54438, + [SMALL_STATE(687)] = 54553, + [SMALL_STATE(688)] = 54668, + [SMALL_STATE(689)] = 54783, + [SMALL_STATE(690)] = 54898, + [SMALL_STATE(691)] = 55013, + [SMALL_STATE(692)] = 55128, + [SMALL_STATE(693)] = 55243, + [SMALL_STATE(694)] = 55358, + [SMALL_STATE(695)] = 55473, + [SMALL_STATE(696)] = 55588, + [SMALL_STATE(697)] = 55673, + [SMALL_STATE(698)] = 55788, + [SMALL_STATE(699)] = 55903, + [SMALL_STATE(700)] = 56018, + [SMALL_STATE(701)] = 56133, + [SMALL_STATE(702)] = 56248, + [SMALL_STATE(703)] = 56363, + [SMALL_STATE(704)] = 56478, + [SMALL_STATE(705)] = 56583, + [SMALL_STATE(706)] = 56698, + [SMALL_STATE(707)] = 56813, + [SMALL_STATE(708)] = 56928, + [SMALL_STATE(709)] = 57043, + [SMALL_STATE(710)] = 57158, + [SMALL_STATE(711)] = 57273, + [SMALL_STATE(712)] = 57388, + [SMALL_STATE(713)] = 57503, + [SMALL_STATE(714)] = 57618, + [SMALL_STATE(715)] = 57689, + [SMALL_STATE(716)] = 57804, + [SMALL_STATE(717)] = 57919, + [SMALL_STATE(718)] = 58034, + [SMALL_STATE(719)] = 58149, + [SMALL_STATE(720)] = 58264, + [SMALL_STATE(721)] = 58379, + [SMALL_STATE(722)] = 58494, + [SMALL_STATE(723)] = 58565, + [SMALL_STATE(724)] = 58680, + [SMALL_STATE(725)] = 58795, + [SMALL_STATE(726)] = 58910, + [SMALL_STATE(727)] = 58981, + [SMALL_STATE(728)] = 59096, + [SMALL_STATE(729)] = 59211, + [SMALL_STATE(730)] = 59326, + [SMALL_STATE(731)] = 59441, + [SMALL_STATE(732)] = 59556, + [SMALL_STATE(733)] = 59627, + [SMALL_STATE(734)] = 59742, + [SMALL_STATE(735)] = 59813, + [SMALL_STATE(736)] = 59888, + [SMALL_STATE(737)] = 60003, + [SMALL_STATE(738)] = 60118, + [SMALL_STATE(739)] = 60233, + [SMALL_STATE(740)] = 60348, + [SMALL_STATE(741)] = 60463, + [SMALL_STATE(742)] = 60534, + [SMALL_STATE(743)] = 60619, + [SMALL_STATE(744)] = 60734, + [SMALL_STATE(745)] = 60851, + [SMALL_STATE(746)] = 60966, + [SMALL_STATE(747)] = 61081, + [SMALL_STATE(748)] = 61164, + [SMALL_STATE(749)] = 61279, + [SMALL_STATE(750)] = 61394, + [SMALL_STATE(751)] = 61509, + [SMALL_STATE(752)] = 61624, + [SMALL_STATE(753)] = 61739, + [SMALL_STATE(754)] = 61854, + [SMALL_STATE(755)] = 61969, + [SMALL_STATE(756)] = 62040, + [SMALL_STATE(757)] = 62155, + [SMALL_STATE(758)] = 62270, + [SMALL_STATE(759)] = 62385, + [SMALL_STATE(760)] = 62500, + [SMALL_STATE(761)] = 62615, + [SMALL_STATE(762)] = 62730, + [SMALL_STATE(763)] = 62845, + [SMALL_STATE(764)] = 62960, + [SMALL_STATE(765)] = 63075, + [SMALL_STATE(766)] = 63182, + [SMALL_STATE(767)] = 63297, + [SMALL_STATE(768)] = 63412, + [SMALL_STATE(769)] = 63527, + [SMALL_STATE(770)] = 63642, + [SMALL_STATE(771)] = 63749, + [SMALL_STATE(772)] = 63864, + [SMALL_STATE(773)] = 63979, + [SMALL_STATE(774)] = 64094, + [SMALL_STATE(775)] = 64209, + [SMALL_STATE(776)] = 64324, + [SMALL_STATE(777)] = 64439, + [SMALL_STATE(778)] = 64554, + [SMALL_STATE(779)] = 64669, + [SMALL_STATE(780)] = 64784, + [SMALL_STATE(781)] = 64899, + [SMALL_STATE(782)] = 65014, + [SMALL_STATE(783)] = 65085, + [SMALL_STATE(784)] = 65200, + [SMALL_STATE(785)] = 65315, + [SMALL_STATE(786)] = 65430, + [SMALL_STATE(787)] = 65545, + [SMALL_STATE(788)] = 65660, + [SMALL_STATE(789)] = 65775, + [SMALL_STATE(790)] = 65890, + [SMALL_STATE(791)] = 66005, + [SMALL_STATE(792)] = 66120, + [SMALL_STATE(793)] = 66191, + [SMALL_STATE(794)] = 66306, + [SMALL_STATE(795)] = 66421, + [SMALL_STATE(796)] = 66536, + [SMALL_STATE(797)] = 66651, + [SMALL_STATE(798)] = 66766, + [SMALL_STATE(799)] = 66881, + [SMALL_STATE(800)] = 66996, + [SMALL_STATE(801)] = 67111, + [SMALL_STATE(802)] = 67226, + [SMALL_STATE(803)] = 67341, + [SMALL_STATE(804)] = 67456, + [SMALL_STATE(805)] = 67571, + [SMALL_STATE(806)] = 67686, + [SMALL_STATE(807)] = 67801, + [SMALL_STATE(808)] = 67916, + [SMALL_STATE(809)] = 68031, + [SMALL_STATE(810)] = 68146, + [SMALL_STATE(811)] = 68261, + [SMALL_STATE(812)] = 68350, + [SMALL_STATE(813)] = 68441, + [SMALL_STATE(814)] = 68534, + [SMALL_STATE(815)] = 68649, + [SMALL_STATE(816)] = 68744, + [SMALL_STATE(817)] = 68831, + [SMALL_STATE(818)] = 68946, + [SMALL_STATE(819)] = 69029, + [SMALL_STATE(820)] = 69112, + [SMALL_STATE(821)] = 69227, + [SMALL_STATE(822)] = 69302, + [SMALL_STATE(823)] = 69417, + [SMALL_STATE(824)] = 69532, + [SMALL_STATE(825)] = 69647, + [SMALL_STATE(826)] = 69762, + [SMALL_STATE(827)] = 69877, + [SMALL_STATE(828)] = 69992, + [SMALL_STATE(829)] = 70107, + [SMALL_STATE(830)] = 70222, + [SMALL_STATE(831)] = 70337, + [SMALL_STATE(832)] = 70452, + [SMALL_STATE(833)] = 70527, + [SMALL_STATE(834)] = 70642, + [SMALL_STATE(835)] = 70757, + [SMALL_STATE(836)] = 70830, + [SMALL_STATE(837)] = 70945, + [SMALL_STATE(838)] = 71060, + [SMALL_STATE(839)] = 71175, + [SMALL_STATE(840)] = 71282, + [SMALL_STATE(841)] = 71397, + [SMALL_STATE(842)] = 71512, + [SMALL_STATE(843)] = 71627, + [SMALL_STATE(844)] = 71742, + [SMALL_STATE(845)] = 71857, + [SMALL_STATE(846)] = 71972, + [SMALL_STATE(847)] = 72087, + [SMALL_STATE(848)] = 72202, + [SMALL_STATE(849)] = 72273, + [SMALL_STATE(850)] = 72388, + [SMALL_STATE(851)] = 72503, + [SMALL_STATE(852)] = 72618, + [SMALL_STATE(853)] = 72733, + [SMALL_STATE(854)] = 72848, + [SMALL_STATE(855)] = 72963, + [SMALL_STATE(856)] = 73078, + [SMALL_STATE(857)] = 73193, + [SMALL_STATE(858)] = 73308, + [SMALL_STATE(859)] = 73423, + [SMALL_STATE(860)] = 73538, + [SMALL_STATE(861)] = 73653, + [SMALL_STATE(862)] = 73768, + [SMALL_STATE(863)] = 73883, + [SMALL_STATE(864)] = 73998, + [SMALL_STATE(865)] = 74066, + [SMALL_STATE(866)] = 74136, + [SMALL_STATE(867)] = 74204, + [SMALL_STATE(868)] = 74274, + [SMALL_STATE(869)] = 74344, + [SMALL_STATE(870)] = 74414, + [SMALL_STATE(871)] = 74484, + [SMALL_STATE(872)] = 74554, + [SMALL_STATE(873)] = 74622, + [SMALL_STATE(874)] = 74692, + [SMALL_STATE(875)] = 74760, + [SMALL_STATE(876)] = 74830, + [SMALL_STATE(877)] = 74900, + [SMALL_STATE(878)] = 74970, + [SMALL_STATE(879)] = 75048, + [SMALL_STATE(880)] = 75118, + [SMALL_STATE(881)] = 75196, + [SMALL_STATE(882)] = 75266, + [SMALL_STATE(883)] = 75334, + [SMALL_STATE(884)] = 75402, + [SMALL_STATE(885)] = 75472, + [SMALL_STATE(886)] = 75542, + [SMALL_STATE(887)] = 75610, + [SMALL_STATE(888)] = 75678, + [SMALL_STATE(889)] = 75748, + [SMALL_STATE(890)] = 75818, + [SMALL_STATE(891)] = 75886, + [SMALL_STATE(892)] = 75954, + [SMALL_STATE(893)] = 76024, + [SMALL_STATE(894)] = 76092, + [SMALL_STATE(895)] = 76160, + [SMALL_STATE(896)] = 76228, + [SMALL_STATE(897)] = 76296, + [SMALL_STATE(898)] = 76364, + [SMALL_STATE(899)] = 76432, + [SMALL_STATE(900)] = 76500, + [SMALL_STATE(901)] = 76568, + [SMALL_STATE(902)] = 76636, + [SMALL_STATE(903)] = 76704, + [SMALL_STATE(904)] = 76772, + [SMALL_STATE(905)] = 76840, + [SMALL_STATE(906)] = 76910, + [SMALL_STATE(907)] = 76978, + [SMALL_STATE(908)] = 77048, + [SMALL_STATE(909)] = 77118, + [SMALL_STATE(910)] = 77186, + [SMALL_STATE(911)] = 77253, + [SMALL_STATE(912)] = 77320, + [SMALL_STATE(913)] = 77387, + [SMALL_STATE(914)] = 77458, + [SMALL_STATE(915)] = 77525, + [SMALL_STATE(916)] = 77592, + [SMALL_STATE(917)] = 77659, + [SMALL_STATE(918)] = 77726, + [SMALL_STATE(919)] = 77793, + [SMALL_STATE(920)] = 77860, + [SMALL_STATE(921)] = 77927, + [SMALL_STATE(922)] = 77994, + [SMALL_STATE(923)] = 78061, + [SMALL_STATE(924)] = 78128, + [SMALL_STATE(925)] = 78195, + [SMALL_STATE(926)] = 78262, + [SMALL_STATE(927)] = 78329, + [SMALL_STATE(928)] = 78396, + [SMALL_STATE(929)] = 78463, + [SMALL_STATE(930)] = 78530, + [SMALL_STATE(931)] = 78597, + [SMALL_STATE(932)] = 78664, + [SMALL_STATE(933)] = 78731, + [SMALL_STATE(934)] = 78798, + [SMALL_STATE(935)] = 78865, + [SMALL_STATE(936)] = 78932, + [SMALL_STATE(937)] = 78999, + [SMALL_STATE(938)] = 79066, + [SMALL_STATE(939)] = 79137, + [SMALL_STATE(940)] = 79204, + [SMALL_STATE(941)] = 79271, + [SMALL_STATE(942)] = 79338, + [SMALL_STATE(943)] = 79409, + [SMALL_STATE(944)] = 79476, + [SMALL_STATE(945)] = 79543, + [SMALL_STATE(946)] = 79610, + [SMALL_STATE(947)] = 79677, + [SMALL_STATE(948)] = 79744, + [SMALL_STATE(949)] = 79811, + [SMALL_STATE(950)] = 79878, + [SMALL_STATE(951)] = 79945, + [SMALL_STATE(952)] = 80012, + [SMALL_STATE(953)] = 80079, + [SMALL_STATE(954)] = 80146, + [SMALL_STATE(955)] = 80213, + [SMALL_STATE(956)] = 80280, + [SMALL_STATE(957)] = 80347, + [SMALL_STATE(958)] = 80414, + [SMALL_STATE(959)] = 80481, + [SMALL_STATE(960)] = 80548, + [SMALL_STATE(961)] = 80615, + [SMALL_STATE(962)] = 80682, + [SMALL_STATE(963)] = 80749, + [SMALL_STATE(964)] = 80816, + [SMALL_STATE(965)] = 80883, + [SMALL_STATE(966)] = 80950, + [SMALL_STATE(967)] = 81017, + [SMALL_STATE(968)] = 81084, + [SMALL_STATE(969)] = 81151, + [SMALL_STATE(970)] = 81218, + [SMALL_STATE(971)] = 81285, + [SMALL_STATE(972)] = 81352, + [SMALL_STATE(973)] = 81419, + [SMALL_STATE(974)] = 81486, + [SMALL_STATE(975)] = 81553, + [SMALL_STATE(976)] = 81624, + [SMALL_STATE(977)] = 81695, + [SMALL_STATE(978)] = 81762, + [SMALL_STATE(979)] = 81829, + [SMALL_STATE(980)] = 81896, + [SMALL_STATE(981)] = 81963, + [SMALL_STATE(982)] = 82030, + [SMALL_STATE(983)] = 82097, + [SMALL_STATE(984)] = 82164, + [SMALL_STATE(985)] = 82231, + [SMALL_STATE(986)] = 82298, + [SMALL_STATE(987)] = 82365, + [SMALL_STATE(988)] = 82432, + [SMALL_STATE(989)] = 82499, + [SMALL_STATE(990)] = 82566, + [SMALL_STATE(991)] = 82633, + [SMALL_STATE(992)] = 82700, + [SMALL_STATE(993)] = 82767, + [SMALL_STATE(994)] = 82834, + [SMALL_STATE(995)] = 82901, + [SMALL_STATE(996)] = 82968, + [SMALL_STATE(997)] = 83035, + [SMALL_STATE(998)] = 83102, + [SMALL_STATE(999)] = 83169, + [SMALL_STATE(1000)] = 83236, + [SMALL_STATE(1001)] = 83303, + [SMALL_STATE(1002)] = 83370, + [SMALL_STATE(1003)] = 83437, + [SMALL_STATE(1004)] = 83504, + [SMALL_STATE(1005)] = 83571, + [SMALL_STATE(1006)] = 83638, + [SMALL_STATE(1007)] = 83705, + [SMALL_STATE(1008)] = 83772, + [SMALL_STATE(1009)] = 83839, + [SMALL_STATE(1010)] = 83906, + [SMALL_STATE(1011)] = 83977, + [SMALL_STATE(1012)] = 84044, + [SMALL_STATE(1013)] = 84111, + [SMALL_STATE(1014)] = 84178, + [SMALL_STATE(1015)] = 84245, + [SMALL_STATE(1016)] = 84312, + [SMALL_STATE(1017)] = 84379, + [SMALL_STATE(1018)] = 84446, + [SMALL_STATE(1019)] = 84518, + [SMALL_STATE(1020)] = 84590, + [SMALL_STATE(1021)] = 84668, + [SMALL_STATE(1022)] = 84740, + [SMALL_STATE(1023)] = 84801, + [SMALL_STATE(1024)] = 84896, + [SMALL_STATE(1025)] = 84973, + [SMALL_STATE(1026)] = 85054, + [SMALL_STATE(1027)] = 85115, + [SMALL_STATE(1028)] = 85194, + [SMALL_STATE(1029)] = 85269, + [SMALL_STATE(1030)] = 85338, + [SMALL_STATE(1031)] = 85407, + [SMALL_STATE(1032)] = 85472, + [SMALL_STATE(1033)] = 85535, + [SMALL_STATE(1034)] = 85600, + [SMALL_STATE(1035)] = 85663, + [SMALL_STATE(1036)] = 85724, + [SMALL_STATE(1037)] = 85787, + [SMALL_STATE(1038)] = 85850, + [SMALL_STATE(1039)] = 85935, + [SMALL_STATE(1040)] = 86032, + [SMALL_STATE(1041)] = 86093, + [SMALL_STATE(1042)] = 86166, + [SMALL_STATE(1043)] = 86227, + [SMALL_STATE(1044)] = 86300, + [SMALL_STATE(1045)] = 86365, + [SMALL_STATE(1046)] = 86426, + [SMALL_STATE(1047)] = 86491, + [SMALL_STATE(1048)] = 86554, + [SMALL_STATE(1049)] = 86615, + [SMALL_STATE(1050)] = 86712, + [SMALL_STATE(1051)] = 86785, + [SMALL_STATE(1052)] = 86846, + [SMALL_STATE(1053)] = 86917, + [SMALL_STATE(1054)] = 86978, + [SMALL_STATE(1055)] = 87039, + [SMALL_STATE(1056)] = 87122, + [SMALL_STATE(1057)] = 87183, + [SMALL_STATE(1058)] = 87278, + [SMALL_STATE(1059)] = 87339, + [SMALL_STATE(1060)] = 87402, + [SMALL_STATE(1061)] = 87463, + [SMALL_STATE(1062)] = 87560, + [SMALL_STATE(1063)] = 87621, + [SMALL_STATE(1064)] = 87682, + [SMALL_STATE(1065)] = 87740, + [SMALL_STATE(1066)] = 87808, + [SMALL_STATE(1067)] = 87868, + [SMALL_STATE(1068)] = 87926, [SMALL_STATE(1069)] = 87984, [SMALL_STATE(1070)] = 88042, [SMALL_STATE(1071)] = 88102, [SMALL_STATE(1072)] = 88160, [SMALL_STATE(1073)] = 88220, [SMALL_STATE(1074)] = 88280, - [SMALL_STATE(1075)] = 88340, - [SMALL_STATE(1076)] = 88398, - [SMALL_STATE(1077)] = 88458, - [SMALL_STATE(1078)] = 88516, - [SMALL_STATE(1079)] = 88584, - [SMALL_STATE(1080)] = 88644, - [SMALL_STATE(1081)] = 88701, - [SMALL_STATE(1082)] = 88758, - [SMALL_STATE(1083)] = 88815, - [SMALL_STATE(1084)] = 88872, - [SMALL_STATE(1085)] = 88933, - [SMALL_STATE(1086)] = 88990, - [SMALL_STATE(1087)] = 89047, + [SMALL_STATE(1075)] = 88338, + [SMALL_STATE(1076)] = 88396, + [SMALL_STATE(1077)] = 88454, + [SMALL_STATE(1078)] = 88512, + [SMALL_STATE(1079)] = 88572, + [SMALL_STATE(1080)] = 88630, + [SMALL_STATE(1081)] = 88688, + [SMALL_STATE(1082)] = 88746, + [SMALL_STATE(1083)] = 88806, + [SMALL_STATE(1084)] = 88866, + [SMALL_STATE(1085)] = 88926, + [SMALL_STATE(1086)] = 88986, + [SMALL_STATE(1087)] = 89046, [SMALL_STATE(1088)] = 89104, [SMALL_STATE(1089)] = 89161, - [SMALL_STATE(1090)] = 89218, - [SMALL_STATE(1091)] = 89275, - [SMALL_STATE(1092)] = 89332, + [SMALL_STATE(1090)] = 89226, + [SMALL_STATE(1091)] = 89283, + [SMALL_STATE(1092)] = 89340, [SMALL_STATE(1093)] = 89397, [SMALL_STATE(1094)] = 89454, [SMALL_STATE(1095)] = 89511, @@ -163209,1100 +164296,1100 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1101)] = 89853, [SMALL_STATE(1102)] = 89910, [SMALL_STATE(1103)] = 89967, - [SMALL_STATE(1104)] = 90024, + [SMALL_STATE(1104)] = 90032, [SMALL_STATE(1105)] = 90089, - [SMALL_STATE(1106)] = 90146, - [SMALL_STATE(1107)] = 90203, - [SMALL_STATE(1108)] = 90260, - [SMALL_STATE(1109)] = 90317, - [SMALL_STATE(1110)] = 90382, - [SMALL_STATE(1111)] = 90439, - [SMALL_STATE(1112)] = 90496, - [SMALL_STATE(1113)] = 90553, - [SMALL_STATE(1114)] = 90610, - [SMALL_STATE(1115)] = 90667, - [SMALL_STATE(1116)] = 90724, - [SMALL_STATE(1117)] = 90785, - [SMALL_STATE(1118)] = 90846, - [SMALL_STATE(1119)] = 90903, - [SMALL_STATE(1120)] = 90960, - [SMALL_STATE(1121)] = 91017, - [SMALL_STATE(1122)] = 91074, - [SMALL_STATE(1123)] = 91139, - [SMALL_STATE(1124)] = 91204, - [SMALL_STATE(1125)] = 91269, - [SMALL_STATE(1126)] = 91326, - [SMALL_STATE(1127)] = 91383, + [SMALL_STATE(1106)] = 90154, + [SMALL_STATE(1107)] = 90211, + [SMALL_STATE(1108)] = 90272, + [SMALL_STATE(1109)] = 90337, + [SMALL_STATE(1110)] = 90402, + [SMALL_STATE(1111)] = 90459, + [SMALL_STATE(1112)] = 90516, + [SMALL_STATE(1113)] = 90573, + [SMALL_STATE(1114)] = 90630, + [SMALL_STATE(1115)] = 90687, + [SMALL_STATE(1116)] = 90752, + [SMALL_STATE(1117)] = 90809, + [SMALL_STATE(1118)] = 90866, + [SMALL_STATE(1119)] = 90927, + [SMALL_STATE(1120)] = 90984, + [SMALL_STATE(1121)] = 91041, + [SMALL_STATE(1122)] = 91098, + [SMALL_STATE(1123)] = 91155, + [SMALL_STATE(1124)] = 91212, + [SMALL_STATE(1125)] = 91277, + [SMALL_STATE(1126)] = 91334, + [SMALL_STATE(1127)] = 91391, [SMALL_STATE(1128)] = 91448, - [SMALL_STATE(1129)] = 91505, - [SMALL_STATE(1130)] = 91562, - [SMALL_STATE(1131)] = 91619, - [SMALL_STATE(1132)] = 91684, - [SMALL_STATE(1133)] = 91741, - [SMALL_STATE(1134)] = 91798, - [SMALL_STATE(1135)] = 91855, - [SMALL_STATE(1136)] = 91912, - [SMALL_STATE(1137)] = 91969, - [SMALL_STATE(1138)] = 92026, - [SMALL_STATE(1139)] = 92083, - [SMALL_STATE(1140)] = 92140, - [SMALL_STATE(1141)] = 92197, - [SMALL_STATE(1142)] = 92254, - [SMALL_STATE(1143)] = 92318, - [SMALL_STATE(1144)] = 92382, - [SMALL_STATE(1145)] = 92446, - [SMALL_STATE(1146)] = 92500, - [SMALL_STATE(1147)] = 92562, - [SMALL_STATE(1148)] = 92628, - [SMALL_STATE(1149)] = 92682, - [SMALL_STATE(1150)] = 92744, - [SMALL_STATE(1151)] = 92798, - [SMALL_STATE(1152)] = 92852, - [SMALL_STATE(1153)] = 92914, + [SMALL_STATE(1129)] = 91509, + [SMALL_STATE(1130)] = 91566, + [SMALL_STATE(1131)] = 91623, + [SMALL_STATE(1132)] = 91680, + [SMALL_STATE(1133)] = 91745, + [SMALL_STATE(1134)] = 91802, + [SMALL_STATE(1135)] = 91859, + [SMALL_STATE(1136)] = 91916, + [SMALL_STATE(1137)] = 91973, + [SMALL_STATE(1138)] = 92030, + [SMALL_STATE(1139)] = 92087, + [SMALL_STATE(1140)] = 92144, + [SMALL_STATE(1141)] = 92201, + [SMALL_STATE(1142)] = 92258, + [SMALL_STATE(1143)] = 92315, + [SMALL_STATE(1144)] = 92372, + [SMALL_STATE(1145)] = 92429, + [SMALL_STATE(1146)] = 92486, + [SMALL_STATE(1147)] = 92543, + [SMALL_STATE(1148)] = 92600, + [SMALL_STATE(1149)] = 92657, + [SMALL_STATE(1150)] = 92714, + [SMALL_STATE(1151)] = 92778, + [SMALL_STATE(1152)] = 92842, + [SMALL_STATE(1153)] = 92906, [SMALL_STATE(1154)] = 92968, - [SMALL_STATE(1155)] = 93034, - [SMALL_STATE(1156)] = 93088, - [SMALL_STATE(1157)] = 93150, - [SMALL_STATE(1158)] = 93212, - [SMALL_STATE(1159)] = 93277, - [SMALL_STATE(1160)] = 93340, - [SMALL_STATE(1161)] = 93405, - [SMALL_STATE(1162)] = 93466, - [SMALL_STATE(1163)] = 93517, - [SMALL_STATE(1164)] = 93578, - [SMALL_STATE(1165)] = 93629, - [SMALL_STATE(1166)] = 93692, - [SMALL_STATE(1167)] = 93743, - [SMALL_STATE(1168)] = 93808, - [SMALL_STATE(1169)] = 93869, - [SMALL_STATE(1170)] = 93930, - [SMALL_STATE(1171)] = 93981, - [SMALL_STATE(1172)] = 94046, - [SMALL_STATE(1173)] = 94099, - [SMALL_STATE(1174)] = 94150, - [SMALL_STATE(1175)] = 94238, - [SMALL_STATE(1176)] = 94290, - [SMALL_STATE(1177)] = 94340, - [SMALL_STATE(1178)] = 94392, - [SMALL_STATE(1179)] = 94444, - [SMALL_STATE(1180)] = 94494, - [SMALL_STATE(1181)] = 94546, - [SMALL_STATE(1182)] = 94608, - [SMALL_STATE(1183)] = 94666, - [SMALL_STATE(1184)] = 94724, - [SMALL_STATE(1185)] = 94774, - [SMALL_STATE(1186)] = 94832, - [SMALL_STATE(1187)] = 94892, - [SMALL_STATE(1188)] = 94950, - [SMALL_STATE(1189)] = 95010, - [SMALL_STATE(1190)] = 95070, - [SMALL_STATE(1191)] = 95128, - [SMALL_STATE(1192)] = 95190, - [SMALL_STATE(1193)] = 95248, - [SMALL_STATE(1194)] = 95306, - [SMALL_STATE(1195)] = 95356, - [SMALL_STATE(1196)] = 95414, - [SMALL_STATE(1197)] = 95500, - [SMALL_STATE(1198)] = 95560, - [SMALL_STATE(1199)] = 95618, - [SMALL_STATE(1200)] = 95678, - [SMALL_STATE(1201)] = 95732, - [SMALL_STATE(1202)] = 95788, - [SMALL_STATE(1203)] = 95844, - [SMALL_STATE(1204)] = 95900, - [SMALL_STATE(1205)] = 95956, - [SMALL_STATE(1206)] = 96006, - [SMALL_STATE(1207)] = 96056, - [SMALL_STATE(1208)] = 96110, - [SMALL_STATE(1209)] = 96166, - [SMALL_STATE(1210)] = 96224, - [SMALL_STATE(1211)] = 96274, - [SMALL_STATE(1212)] = 96326, - [SMALL_STATE(1213)] = 96414, - [SMALL_STATE(1214)] = 96500, - [SMALL_STATE(1215)] = 96570, - [SMALL_STATE(1216)] = 96642, - [SMALL_STATE(1217)] = 96716, - [SMALL_STATE(1218)] = 96766, - [SMALL_STATE(1219)] = 96842, - [SMALL_STATE(1220)] = 96930, - [SMALL_STATE(1221)] = 96996, - [SMALL_STATE(1222)] = 97058, - [SMALL_STATE(1223)] = 97120, - [SMALL_STATE(1224)] = 97182, - [SMALL_STATE(1225)] = 97242, - [SMALL_STATE(1226)] = 97289, - [SMALL_STATE(1227)] = 97336, - [SMALL_STATE(1228)] = 97387, - [SMALL_STATE(1229)] = 97436, - [SMALL_STATE(1230)] = 97483, - [SMALL_STATE(1231)] = 97530, - [SMALL_STATE(1232)] = 97577, - [SMALL_STATE(1233)] = 97624, - [SMALL_STATE(1234)] = 97671, - [SMALL_STATE(1235)] = 97720, - [SMALL_STATE(1236)] = 97777, - [SMALL_STATE(1237)] = 97824, - [SMALL_STATE(1238)] = 97873, - [SMALL_STATE(1239)] = 97920, - [SMALL_STATE(1240)] = 97973, - [SMALL_STATE(1241)] = 98030, - [SMALL_STATE(1242)] = 98079, - [SMALL_STATE(1243)] = 98126, - [SMALL_STATE(1244)] = 98175, - [SMALL_STATE(1245)] = 98234, - [SMALL_STATE(1246)] = 98281, - [SMALL_STATE(1247)] = 98328, - [SMALL_STATE(1248)] = 98385, - [SMALL_STATE(1249)] = 98436, - [SMALL_STATE(1250)] = 98485, - [SMALL_STATE(1251)] = 98532, - [SMALL_STATE(1252)] = 98583, - [SMALL_STATE(1253)] = 98632, - [SMALL_STATE(1254)] = 98679, - [SMALL_STATE(1255)] = 98726, - [SMALL_STATE(1256)] = 98777, - [SMALL_STATE(1257)] = 98824, - [SMALL_STATE(1258)] = 98873, - [SMALL_STATE(1259)] = 98920, - [SMALL_STATE(1260)] = 98967, - [SMALL_STATE(1261)] = 99014, - [SMALL_STATE(1262)] = 99071, - [SMALL_STATE(1263)] = 99118, - [SMALL_STATE(1264)] = 99165, - [SMALL_STATE(1265)] = 99212, - [SMALL_STATE(1266)] = 99259, - [SMALL_STATE(1267)] = 99306, - [SMALL_STATE(1268)] = 99353, - [SMALL_STATE(1269)] = 99400, - [SMALL_STATE(1270)] = 99447, - [SMALL_STATE(1271)] = 99494, - [SMALL_STATE(1272)] = 99543, - [SMALL_STATE(1273)] = 99590, - [SMALL_STATE(1274)] = 99637, - [SMALL_STATE(1275)] = 99684, - [SMALL_STATE(1276)] = 99731, - [SMALL_STATE(1277)] = 99778, - [SMALL_STATE(1278)] = 99825, - [SMALL_STATE(1279)] = 99872, - [SMALL_STATE(1280)] = 99919, - [SMALL_STATE(1281)] = 99966, - [SMALL_STATE(1282)] = 100013, - [SMALL_STATE(1283)] = 100062, - [SMALL_STATE(1284)] = 100109, - [SMALL_STATE(1285)] = 100156, - [SMALL_STATE(1286)] = 100203, - [SMALL_STATE(1287)] = 100250, - [SMALL_STATE(1288)] = 100297, - [SMALL_STATE(1289)] = 100344, - [SMALL_STATE(1290)] = 100393, - [SMALL_STATE(1291)] = 100440, - [SMALL_STATE(1292)] = 100487, - [SMALL_STATE(1293)] = 100536, - [SMALL_STATE(1294)] = 100583, - [SMALL_STATE(1295)] = 100630, - [SMALL_STATE(1296)] = 100677, - [SMALL_STATE(1297)] = 100724, - [SMALL_STATE(1298)] = 100771, - [SMALL_STATE(1299)] = 100824, - [SMALL_STATE(1300)] = 100871, - [SMALL_STATE(1301)] = 100918, - [SMALL_STATE(1302)] = 100965, - [SMALL_STATE(1303)] = 101012, - [SMALL_STATE(1304)] = 101059, - [SMALL_STATE(1305)] = 101120, - [SMALL_STATE(1306)] = 101167, - [SMALL_STATE(1307)] = 101214, - [SMALL_STATE(1308)] = 101261, - [SMALL_STATE(1309)] = 101308, - [SMALL_STATE(1310)] = 101355, - [SMALL_STATE(1311)] = 101402, - [SMALL_STATE(1312)] = 101451, - [SMALL_STATE(1313)] = 101500, - [SMALL_STATE(1314)] = 101549, - [SMALL_STATE(1315)] = 101598, - [SMALL_STATE(1316)] = 101647, - [SMALL_STATE(1317)] = 101694, - [SMALL_STATE(1318)] = 101741, - [SMALL_STATE(1319)] = 101790, - [SMALL_STATE(1320)] = 101849, - [SMALL_STATE(1321)] = 101896, - [SMALL_STATE(1322)] = 101943, - [SMALL_STATE(1323)] = 102002, - [SMALL_STATE(1324)] = 102049, - [SMALL_STATE(1325)] = 102095, - [SMALL_STATE(1326)] = 102141, - [SMALL_STATE(1327)] = 102187, - [SMALL_STATE(1328)] = 102271, - [SMALL_STATE(1329)] = 102327, - [SMALL_STATE(1330)] = 102387, - [SMALL_STATE(1331)] = 102433, - [SMALL_STATE(1332)] = 102479, - [SMALL_STATE(1333)] = 102525, - [SMALL_STATE(1334)] = 102577, - [SMALL_STATE(1335)] = 102623, - [SMALL_STATE(1336)] = 102669, - [SMALL_STATE(1337)] = 102715, - [SMALL_STATE(1338)] = 102761, - [SMALL_STATE(1339)] = 102807, - [SMALL_STATE(1340)] = 102853, - [SMALL_STATE(1341)] = 102903, - [SMALL_STATE(1342)] = 102949, - [SMALL_STATE(1343)] = 102999, - [SMALL_STATE(1344)] = 103049, - [SMALL_STATE(1345)] = 103099, - [SMALL_STATE(1346)] = 103149, - [SMALL_STATE(1347)] = 103195, - [SMALL_STATE(1348)] = 103241, - [SMALL_STATE(1349)] = 103287, - [SMALL_STATE(1350)] = 103333, - [SMALL_STATE(1351)] = 103379, - [SMALL_STATE(1352)] = 103425, - [SMALL_STATE(1353)] = 103471, - [SMALL_STATE(1354)] = 103517, - [SMALL_STATE(1355)] = 103563, - [SMALL_STATE(1356)] = 103609, - [SMALL_STATE(1357)] = 103655, - [SMALL_STATE(1358)] = 103707, - [SMALL_STATE(1359)] = 103753, - [SMALL_STATE(1360)] = 103811, - [SMALL_STATE(1361)] = 103857, - [SMALL_STATE(1362)] = 103903, - [SMALL_STATE(1363)] = 103949, - [SMALL_STATE(1364)] = 103997, - [SMALL_STATE(1365)] = 104081, - [SMALL_STATE(1366)] = 104127, - [SMALL_STATE(1367)] = 104181, - [SMALL_STATE(1368)] = 104227, - [SMALL_STATE(1369)] = 104273, - [SMALL_STATE(1370)] = 104323, - [SMALL_STATE(1371)] = 104369, - [SMALL_STATE(1372)] = 104415, - [SMALL_STATE(1373)] = 104461, - [SMALL_STATE(1374)] = 104547, - [SMALL_STATE(1375)] = 104633, - [SMALL_STATE(1376)] = 104679, - [SMALL_STATE(1377)] = 104725, - [SMALL_STATE(1378)] = 104771, - [SMALL_STATE(1379)] = 104817, - [SMALL_STATE(1380)] = 104863, - [SMALL_STATE(1381)] = 104909, - [SMALL_STATE(1382)] = 104959, - [SMALL_STATE(1383)] = 105005, - [SMALL_STATE(1384)] = 105051, - [SMALL_STATE(1385)] = 105097, - [SMALL_STATE(1386)] = 105165, - [SMALL_STATE(1387)] = 105235, - [SMALL_STATE(1388)] = 105307, - [SMALL_STATE(1389)] = 105381, - [SMALL_STATE(1390)] = 105445, - [SMALL_STATE(1391)] = 105491, - [SMALL_STATE(1392)] = 105551, - [SMALL_STATE(1393)] = 105611, - [SMALL_STATE(1394)] = 105657, - [SMALL_STATE(1395)] = 105713, - [SMALL_STATE(1396)] = 105759, - [SMALL_STATE(1397)] = 105819, - [SMALL_STATE(1398)] = 105865, - [SMALL_STATE(1399)] = 105951, - [SMALL_STATE(1400)] = 105997, - [SMALL_STATE(1401)] = 106043, - [SMALL_STATE(1402)] = 106089, - [SMALL_STATE(1403)] = 106135, - [SMALL_STATE(1404)] = 106181, - [SMALL_STATE(1405)] = 106227, - [SMALL_STATE(1406)] = 106273, - [SMALL_STATE(1407)] = 106319, - [SMALL_STATE(1408)] = 106365, - [SMALL_STATE(1409)] = 106411, - [SMALL_STATE(1410)] = 106457, - [SMALL_STATE(1411)] = 106504, - [SMALL_STATE(1412)] = 106553, - [SMALL_STATE(1413)] = 106608, - [SMALL_STATE(1414)] = 106655, - [SMALL_STATE(1415)] = 106708, - [SMALL_STATE(1416)] = 106755, - [SMALL_STATE(1417)] = 106802, - [SMALL_STATE(1418)] = 106849, - [SMALL_STATE(1419)] = 106894, - [SMALL_STATE(1420)] = 106945, - [SMALL_STATE(1421)] = 106992, - [SMALL_STATE(1422)] = 107073, - [SMALL_STATE(1423)] = 107120, - [SMALL_STATE(1424)] = 107201, - [SMALL_STATE(1425)] = 107266, - [SMALL_STATE(1426)] = 107311, - [SMALL_STATE(1427)] = 107356, - [SMALL_STATE(1428)] = 107415, - [SMALL_STATE(1429)] = 107482, - [SMALL_STATE(1430)] = 107551, - [SMALL_STATE(1431)] = 107622, - [SMALL_STATE(1432)] = 107685, - [SMALL_STATE(1433)] = 107744, - [SMALL_STATE(1434)] = 107789, - [SMALL_STATE(1435)] = 107848, - [SMALL_STATE(1436)] = 107903, - [SMALL_STATE(1437)] = 107950, - [SMALL_STATE(1438)] = 107997, - [SMALL_STATE(1439)] = 108076, - [SMALL_STATE(1440)] = 108121, - [SMALL_STATE(1441)] = 108168, - [SMALL_STATE(1442)] = 108213, - [SMALL_STATE(1443)] = 108266, - [SMALL_STATE(1444)] = 108311, - [SMALL_STATE(1445)] = 108358, - [SMALL_STATE(1446)] = 108407, - [SMALL_STATE(1447)] = 108454, - [SMALL_STATE(1448)] = 108501, - [SMALL_STATE(1449)] = 108548, - [SMALL_STATE(1450)] = 108595, - [SMALL_STATE(1451)] = 108642, - [SMALL_STATE(1452)] = 108689, - [SMALL_STATE(1453)] = 108738, - [SMALL_STATE(1454)] = 108785, - [SMALL_STATE(1455)] = 108834, - [SMALL_STATE(1456)] = 108915, - [SMALL_STATE(1457)] = 108964, - [SMALL_STATE(1458)] = 109009, - [SMALL_STATE(1459)] = 109056, - [SMALL_STATE(1460)] = 109103, - [SMALL_STATE(1461)] = 109152, - [SMALL_STATE(1462)] = 109199, - [SMALL_STATE(1463)] = 109246, - [SMALL_STATE(1464)] = 109293, - [SMALL_STATE(1465)] = 109340, - [SMALL_STATE(1466)] = 109387, - [SMALL_STATE(1467)] = 109434, - [SMALL_STATE(1468)] = 109481, - [SMALL_STATE(1469)] = 109530, - [SMALL_STATE(1470)] = 109579, - [SMALL_STATE(1471)] = 109628, - [SMALL_STATE(1472)] = 109687, - [SMALL_STATE(1473)] = 109734, - [SMALL_STATE(1474)] = 109783, - [SMALL_STATE(1475)] = 109828, - [SMALL_STATE(1476)] = 109885, - [SMALL_STATE(1477)] = 109964, - [SMALL_STATE(1478)] = 110021, - [SMALL_STATE(1479)] = 110066, - [SMALL_STATE(1480)] = 110111, - [SMALL_STATE(1481)] = 110156, - [SMALL_STATE(1482)] = 110207, - [SMALL_STATE(1483)] = 110254, - [SMALL_STATE(1484)] = 110301, - [SMALL_STATE(1485)] = 110345, - [SMALL_STATE(1486)] = 110393, - [SMALL_STATE(1487)] = 110451, - [SMALL_STATE(1488)] = 110495, - [SMALL_STATE(1489)] = 110539, - [SMALL_STATE(1490)] = 110585, - [SMALL_STATE(1491)] = 110629, - [SMALL_STATE(1492)] = 110687, - [SMALL_STATE(1493)] = 110733, - [SMALL_STATE(1494)] = 110777, - [SMALL_STATE(1495)] = 110823, - [SMALL_STATE(1496)] = 110899, - [SMALL_STATE(1497)] = 110947, - [SMALL_STATE(1498)] = 111029, - [SMALL_STATE(1499)] = 111075, - [SMALL_STATE(1500)] = 111153, - [SMALL_STATE(1501)] = 111207, - [SMALL_STATE(1502)] = 111255, - [SMALL_STATE(1503)] = 111301, - [SMALL_STATE(1504)] = 111355, - [SMALL_STATE(1505)] = 111413, - [SMALL_STATE(1506)] = 111461, - [SMALL_STATE(1507)] = 111509, - [SMALL_STATE(1508)] = 111555, - [SMALL_STATE(1509)] = 111609, - [SMALL_STATE(1510)] = 111657, - [SMALL_STATE(1511)] = 111715, - [SMALL_STATE(1512)] = 111773, - [SMALL_STATE(1513)] = 111831, - [SMALL_STATE(1514)] = 111909, - [SMALL_STATE(1515)] = 111971, - [SMALL_STATE(1516)] = 112043, - [SMALL_STATE(1517)] = 112113, - [SMALL_STATE(1518)] = 112181, - [SMALL_STATE(1519)] = 112247, - [SMALL_STATE(1520)] = 112327, - [SMALL_STATE(1521)] = 112373, - [SMALL_STATE(1522)] = 112419, - [SMALL_STATE(1523)] = 112467, - [SMALL_STATE(1524)] = 112517, - [SMALL_STATE(1525)] = 112567, - [SMALL_STATE(1526)] = 112619, - [SMALL_STATE(1527)] = 112665, - [SMALL_STATE(1528)] = 112709, - [SMALL_STATE(1529)] = 112757, - [SMALL_STATE(1530)] = 112809, - [SMALL_STATE(1531)] = 112889, - [SMALL_STATE(1532)] = 112941, - [SMALL_STATE(1533)] = 112987, - [SMALL_STATE(1534)] = 113033, - [SMALL_STATE(1535)] = 113079, - [SMALL_STATE(1536)] = 113137, - [SMALL_STATE(1537)] = 113219, - [SMALL_STATE(1538)] = 113301, - [SMALL_STATE(1539)] = 113351, - [SMALL_STATE(1540)] = 113395, - [SMALL_STATE(1541)] = 113445, - [SMALL_STATE(1542)] = 113491, - [SMALL_STATE(1543)] = 113571, - [SMALL_STATE(1544)] = 113617, - [SMALL_STATE(1545)] = 113663, - [SMALL_STATE(1546)] = 113743, - [SMALL_STATE(1547)] = 113787, - [SMALL_STATE(1548)] = 113837, - [SMALL_STATE(1549)] = 113883, - [SMALL_STATE(1550)] = 113927, - [SMALL_STATE(1551)] = 113973, - [SMALL_STATE(1552)] = 114019, - [SMALL_STATE(1553)] = 114065, - [SMALL_STATE(1554)] = 114111, - [SMALL_STATE(1555)] = 114161, - [SMALL_STATE(1556)] = 114219, - [SMALL_STATE(1557)] = 114265, - [SMALL_STATE(1558)] = 114311, - [SMALL_STATE(1559)] = 114359, - [SMALL_STATE(1560)] = 114407, - [SMALL_STATE(1561)] = 114455, - [SMALL_STATE(1562)] = 114501, - [SMALL_STATE(1563)] = 114579, - [SMALL_STATE(1564)] = 114657, - [SMALL_STATE(1565)] = 114721, - [SMALL_STATE(1566)] = 114767, - [SMALL_STATE(1567)] = 114833, - [SMALL_STATE(1568)] = 114879, - [SMALL_STATE(1569)] = 114947, - [SMALL_STATE(1570)] = 115017, - [SMALL_STATE(1571)] = 115065, - [SMALL_STATE(1572)] = 115127, - [SMALL_STATE(1573)] = 115173, - [SMALL_STATE(1574)] = 115217, - [SMALL_STATE(1575)] = 115269, - [SMALL_STATE(1576)] = 115327, - [SMALL_STATE(1577)] = 115375, - [SMALL_STATE(1578)] = 115433, - [SMALL_STATE(1579)] = 115495, - [SMALL_STATE(1580)] = 115559, - [SMALL_STATE(1581)] = 115625, - [SMALL_STATE(1582)] = 115693, - [SMALL_STATE(1583)] = 115753, - [SMALL_STATE(1584)] = 115797, - [SMALL_STATE(1585)] = 115855, - [SMALL_STATE(1586)] = 115913, - [SMALL_STATE(1587)] = 115957, - [SMALL_STATE(1588)] = 116005, - [SMALL_STATE(1589)] = 116057, - [SMALL_STATE(1590)] = 116105, - [SMALL_STATE(1591)] = 116151, - [SMALL_STATE(1592)] = 116197, - [SMALL_STATE(1593)] = 116245, - [SMALL_STATE(1594)] = 116289, - [SMALL_STATE(1595)] = 116335, - [SMALL_STATE(1596)] = 116383, - [SMALL_STATE(1597)] = 116461, - [SMALL_STATE(1598)] = 116507, - [SMALL_STATE(1599)] = 116561, - [SMALL_STATE(1600)] = 116605, - [SMALL_STATE(1601)] = 116651, - [SMALL_STATE(1602)] = 116699, - [SMALL_STATE(1603)] = 116751, - [SMALL_STATE(1604)] = 116797, - [SMALL_STATE(1605)] = 116843, - [SMALL_STATE(1606)] = 116891, - [SMALL_STATE(1607)] = 116935, - [SMALL_STATE(1608)] = 116981, - [SMALL_STATE(1609)] = 117029, - [SMALL_STATE(1610)] = 117075, - [SMALL_STATE(1611)] = 117123, - [SMALL_STATE(1612)] = 117167, - [SMALL_STATE(1613)] = 117213, - [SMALL_STATE(1614)] = 117259, - [SMALL_STATE(1615)] = 117307, - [SMALL_STATE(1616)] = 117383, - [SMALL_STATE(1617)] = 117429, - [SMALL_STATE(1618)] = 117475, - [SMALL_STATE(1619)] = 117521, - [SMALL_STATE(1620)] = 117567, - [SMALL_STATE(1621)] = 117613, - [SMALL_STATE(1622)] = 117659, - [SMALL_STATE(1623)] = 117739, - [SMALL_STATE(1624)] = 117787, - [SMALL_STATE(1625)] = 117833, - [SMALL_STATE(1626)] = 117879, - [SMALL_STATE(1627)] = 117923, - [SMALL_STATE(1628)] = 117966, - [SMALL_STATE(1629)] = 118009, - [SMALL_STATE(1630)] = 118066, - [SMALL_STATE(1631)] = 118111, - [SMALL_STATE(1632)] = 118154, - [SMALL_STATE(1633)] = 118199, - [SMALL_STATE(1634)] = 118244, - [SMALL_STATE(1635)] = 118289, - [SMALL_STATE(1636)] = 118336, - [SMALL_STATE(1637)] = 118383, - [SMALL_STATE(1638)] = 118426, - [SMALL_STATE(1639)] = 118469, - [SMALL_STATE(1640)] = 118512, - [SMALL_STATE(1641)] = 118555, - [SMALL_STATE(1642)] = 118600, - [SMALL_STATE(1643)] = 118643, - [SMALL_STATE(1644)] = 118720, - [SMALL_STATE(1645)] = 118767, - [SMALL_STATE(1646)] = 118812, - [SMALL_STATE(1647)] = 118857, - [SMALL_STATE(1648)] = 118934, - [SMALL_STATE(1649)] = 118977, - [SMALL_STATE(1650)] = 119020, - [SMALL_STATE(1651)] = 119063, - [SMALL_STATE(1652)] = 119106, - [SMALL_STATE(1653)] = 119159, - [SMALL_STATE(1654)] = 119202, - [SMALL_STATE(1655)] = 119245, - [SMALL_STATE(1656)] = 119290, - [SMALL_STATE(1657)] = 119333, - [SMALL_STATE(1658)] = 119376, - [SMALL_STATE(1659)] = 119419, - [SMALL_STATE(1660)] = 119462, - [SMALL_STATE(1661)] = 119505, - [SMALL_STATE(1662)] = 119550, - [SMALL_STATE(1663)] = 119593, - [SMALL_STATE(1664)] = 119636, - [SMALL_STATE(1665)] = 119679, - [SMALL_STATE(1666)] = 119722, - [SMALL_STATE(1667)] = 119765, - [SMALL_STATE(1668)] = 119808, - [SMALL_STATE(1669)] = 119851, - [SMALL_STATE(1670)] = 119904, - [SMALL_STATE(1671)] = 119947, - [SMALL_STATE(1672)] = 119990, - [SMALL_STATE(1673)] = 120033, - [SMALL_STATE(1674)] = 120076, - [SMALL_STATE(1675)] = 120119, - [SMALL_STATE(1676)] = 120162, - [SMALL_STATE(1677)] = 120205, - [SMALL_STATE(1678)] = 120248, - [SMALL_STATE(1679)] = 120291, - [SMALL_STATE(1680)] = 120334, - [SMALL_STATE(1681)] = 120377, - [SMALL_STATE(1682)] = 120420, - [SMALL_STATE(1683)] = 120463, - [SMALL_STATE(1684)] = 120506, - [SMALL_STATE(1685)] = 120549, - [SMALL_STATE(1686)] = 120594, - [SMALL_STATE(1687)] = 120637, - [SMALL_STATE(1688)] = 120680, - [SMALL_STATE(1689)] = 120723, - [SMALL_STATE(1690)] = 120780, - [SMALL_STATE(1691)] = 120823, - [SMALL_STATE(1692)] = 120866, - [SMALL_STATE(1693)] = 120909, - [SMALL_STATE(1694)] = 120952, - [SMALL_STATE(1695)] = 120995, - [SMALL_STATE(1696)] = 121038, - [SMALL_STATE(1697)] = 121085, - [SMALL_STATE(1698)] = 121128, - [SMALL_STATE(1699)] = 121171, - [SMALL_STATE(1700)] = 121214, - [SMALL_STATE(1701)] = 121257, - [SMALL_STATE(1702)] = 121300, - [SMALL_STATE(1703)] = 121343, - [SMALL_STATE(1704)] = 121386, - [SMALL_STATE(1705)] = 121429, - [SMALL_STATE(1706)] = 121472, - [SMALL_STATE(1707)] = 121515, - [SMALL_STATE(1708)] = 121558, - [SMALL_STATE(1709)] = 121601, - [SMALL_STATE(1710)] = 121648, - [SMALL_STATE(1711)] = 121691, - [SMALL_STATE(1712)] = 121734, - [SMALL_STATE(1713)] = 121777, - [SMALL_STATE(1714)] = 121820, - [SMALL_STATE(1715)] = 121867, - [SMALL_STATE(1716)] = 121910, - [SMALL_STATE(1717)] = 121953, - [SMALL_STATE(1718)] = 121996, - [SMALL_STATE(1719)] = 122039, - [SMALL_STATE(1720)] = 122084, - [SMALL_STATE(1721)] = 122127, - [SMALL_STATE(1722)] = 122172, - [SMALL_STATE(1723)] = 122219, - [SMALL_STATE(1724)] = 122262, - [SMALL_STATE(1725)] = 122313, - [SMALL_STATE(1726)] = 122356, - [SMALL_STATE(1727)] = 122399, - [SMALL_STATE(1728)] = 122444, - [SMALL_STATE(1729)] = 122487, - [SMALL_STATE(1730)] = 122530, - [SMALL_STATE(1731)] = 122575, - [SMALL_STATE(1732)] = 122618, - [SMALL_STATE(1733)] = 122661, - [SMALL_STATE(1734)] = 122704, - [SMALL_STATE(1735)] = 122747, - [SMALL_STATE(1736)] = 122790, - [SMALL_STATE(1737)] = 122833, - [SMALL_STATE(1738)] = 122878, - [SMALL_STATE(1739)] = 122921, - [SMALL_STATE(1740)] = 122966, - [SMALL_STATE(1741)] = 123011, - [SMALL_STATE(1742)] = 123056, - [SMALL_STATE(1743)] = 123101, - [SMALL_STATE(1744)] = 123144, - [SMALL_STATE(1745)] = 123187, - [SMALL_STATE(1746)] = 123244, - [SMALL_STATE(1747)] = 123289, - [SMALL_STATE(1748)] = 123332, - [SMALL_STATE(1749)] = 123375, - [SMALL_STATE(1750)] = 123418, - [SMALL_STATE(1751)] = 123461, - [SMALL_STATE(1752)] = 123504, - [SMALL_STATE(1753)] = 123547, - [SMALL_STATE(1754)] = 123590, - [SMALL_STATE(1755)] = 123633, - [SMALL_STATE(1756)] = 123678, - [SMALL_STATE(1757)] = 123723, - [SMALL_STATE(1758)] = 123770, - [SMALL_STATE(1759)] = 123813, - [SMALL_STATE(1760)] = 123856, - [SMALL_STATE(1761)] = 123901, - [SMALL_STATE(1762)] = 123944, - [SMALL_STATE(1763)] = 123987, - [SMALL_STATE(1764)] = 124030, - [SMALL_STATE(1765)] = 124083, - [SMALL_STATE(1766)] = 124134, - [SMALL_STATE(1767)] = 124177, - [SMALL_STATE(1768)] = 124220, - [SMALL_STATE(1769)] = 124265, - [SMALL_STATE(1770)] = 124308, - [SMALL_STATE(1771)] = 124387, - [SMALL_STATE(1772)] = 124430, - [SMALL_STATE(1773)] = 124473, - [SMALL_STATE(1774)] = 124520, - [SMALL_STATE(1775)] = 124567, - [SMALL_STATE(1776)] = 124610, - [SMALL_STATE(1777)] = 124655, - [SMALL_STATE(1778)] = 124706, + [SMALL_STATE(1155)] = 93022, + [SMALL_STATE(1156)] = 93084, + [SMALL_STATE(1157)] = 93146, + [SMALL_STATE(1158)] = 93200, + [SMALL_STATE(1159)] = 93266, + [SMALL_STATE(1160)] = 93328, + [SMALL_STATE(1161)] = 93382, + [SMALL_STATE(1162)] = 93448, + [SMALL_STATE(1163)] = 93502, + [SMALL_STATE(1164)] = 93556, + [SMALL_STATE(1165)] = 93610, + [SMALL_STATE(1166)] = 93672, + [SMALL_STATE(1167)] = 93733, + [SMALL_STATE(1168)] = 93796, + [SMALL_STATE(1169)] = 93847, + [SMALL_STATE(1170)] = 93912, + [SMALL_STATE(1171)] = 93973, + [SMALL_STATE(1172)] = 94024, + [SMALL_STATE(1173)] = 94089, + [SMALL_STATE(1174)] = 94154, + [SMALL_STATE(1175)] = 94215, + [SMALL_STATE(1176)] = 94266, + [SMALL_STATE(1177)] = 94317, + [SMALL_STATE(1178)] = 94378, + [SMALL_STATE(1179)] = 94429, + [SMALL_STATE(1180)] = 94492, + [SMALL_STATE(1181)] = 94545, + [SMALL_STATE(1182)] = 94610, + [SMALL_STATE(1183)] = 94696, + [SMALL_STATE(1184)] = 94748, + [SMALL_STATE(1185)] = 94808, + [SMALL_STATE(1186)] = 94868, + [SMALL_STATE(1187)] = 94918, + [SMALL_STATE(1188)] = 94968, + [SMALL_STATE(1189)] = 95026, + [SMALL_STATE(1190)] = 95076, + [SMALL_STATE(1191)] = 95138, + [SMALL_STATE(1192)] = 95196, + [SMALL_STATE(1193)] = 95250, + [SMALL_STATE(1194)] = 95304, + [SMALL_STATE(1195)] = 95354, + [SMALL_STATE(1196)] = 95406, + [SMALL_STATE(1197)] = 95456, + [SMALL_STATE(1198)] = 95508, + [SMALL_STATE(1199)] = 95558, + [SMALL_STATE(1200)] = 95616, + [SMALL_STATE(1201)] = 95672, + [SMALL_STATE(1202)] = 95728, + [SMALL_STATE(1203)] = 95784, + [SMALL_STATE(1204)] = 95840, + [SMALL_STATE(1205)] = 95890, + [SMALL_STATE(1206)] = 95950, + [SMALL_STATE(1207)] = 96038, + [SMALL_STATE(1208)] = 96126, + [SMALL_STATE(1209)] = 96186, + [SMALL_STATE(1210)] = 96248, + [SMALL_STATE(1211)] = 96308, + [SMALL_STATE(1212)] = 96378, + [SMALL_STATE(1213)] = 96450, + [SMALL_STATE(1214)] = 96524, + [SMALL_STATE(1215)] = 96600, + [SMALL_STATE(1216)] = 96666, + [SMALL_STATE(1217)] = 96722, + [SMALL_STATE(1218)] = 96784, + [SMALL_STATE(1219)] = 96846, + [SMALL_STATE(1220)] = 96898, + [SMALL_STATE(1221)] = 96956, + [SMALL_STATE(1222)] = 97014, + [SMALL_STATE(1223)] = 97102, + [SMALL_STATE(1224)] = 97160, + [SMALL_STATE(1225)] = 97210, + [SMALL_STATE(1226)] = 97272, + [SMALL_STATE(1227)] = 97330, + [SMALL_STATE(1228)] = 97382, + [SMALL_STATE(1229)] = 97440, + [SMALL_STATE(1230)] = 97526, + [SMALL_STATE(1231)] = 97584, + [SMALL_STATE(1232)] = 97642, + [SMALL_STATE(1233)] = 97702, + [SMALL_STATE(1234)] = 97751, + [SMALL_STATE(1235)] = 97810, + [SMALL_STATE(1236)] = 97861, + [SMALL_STATE(1237)] = 97910, + [SMALL_STATE(1238)] = 97957, + [SMALL_STATE(1239)] = 98004, + [SMALL_STATE(1240)] = 98051, + [SMALL_STATE(1241)] = 98098, + [SMALL_STATE(1242)] = 98145, + [SMALL_STATE(1243)] = 98198, + [SMALL_STATE(1244)] = 98259, + [SMALL_STATE(1245)] = 98306, + [SMALL_STATE(1246)] = 98353, + [SMALL_STATE(1247)] = 98400, + [SMALL_STATE(1248)] = 98453, + [SMALL_STATE(1249)] = 98500, + [SMALL_STATE(1250)] = 98547, + [SMALL_STATE(1251)] = 98604, + [SMALL_STATE(1252)] = 98651, + [SMALL_STATE(1253)] = 98698, + [SMALL_STATE(1254)] = 98745, + [SMALL_STATE(1255)] = 98792, + [SMALL_STATE(1256)] = 98839, + [SMALL_STATE(1257)] = 98886, + [SMALL_STATE(1258)] = 98933, + [SMALL_STATE(1259)] = 98980, + [SMALL_STATE(1260)] = 99027, + [SMALL_STATE(1261)] = 99074, + [SMALL_STATE(1262)] = 99125, + [SMALL_STATE(1263)] = 99172, + [SMALL_STATE(1264)] = 99221, + [SMALL_STATE(1265)] = 99268, + [SMALL_STATE(1266)] = 99315, + [SMALL_STATE(1267)] = 99362, + [SMALL_STATE(1268)] = 99409, + [SMALL_STATE(1269)] = 99456, + [SMALL_STATE(1270)] = 99503, + [SMALL_STATE(1271)] = 99550, + [SMALL_STATE(1272)] = 99597, + [SMALL_STATE(1273)] = 99644, + [SMALL_STATE(1274)] = 99691, + [SMALL_STATE(1275)] = 99738, + [SMALL_STATE(1276)] = 99787, + [SMALL_STATE(1277)] = 99834, + [SMALL_STATE(1278)] = 99893, + [SMALL_STATE(1279)] = 99944, + [SMALL_STATE(1280)] = 99993, + [SMALL_STATE(1281)] = 100042, + [SMALL_STATE(1282)] = 100091, + [SMALL_STATE(1283)] = 100138, + [SMALL_STATE(1284)] = 100185, + [SMALL_STATE(1285)] = 100236, + [SMALL_STATE(1286)] = 100285, + [SMALL_STATE(1287)] = 100332, + [SMALL_STATE(1288)] = 100381, + [SMALL_STATE(1289)] = 100428, + [SMALL_STATE(1290)] = 100475, + [SMALL_STATE(1291)] = 100524, + [SMALL_STATE(1292)] = 100581, + [SMALL_STATE(1293)] = 100628, + [SMALL_STATE(1294)] = 100675, + [SMALL_STATE(1295)] = 100722, + [SMALL_STATE(1296)] = 100769, + [SMALL_STATE(1297)] = 100816, + [SMALL_STATE(1298)] = 100863, + [SMALL_STATE(1299)] = 100910, + [SMALL_STATE(1300)] = 100957, + [SMALL_STATE(1301)] = 101004, + [SMALL_STATE(1302)] = 101051, + [SMALL_STATE(1303)] = 101098, + [SMALL_STATE(1304)] = 101145, + [SMALL_STATE(1305)] = 101192, + [SMALL_STATE(1306)] = 101239, + [SMALL_STATE(1307)] = 101288, + [SMALL_STATE(1308)] = 101335, + [SMALL_STATE(1309)] = 101382, + [SMALL_STATE(1310)] = 101439, + [SMALL_STATE(1311)] = 101486, + [SMALL_STATE(1312)] = 101535, + [SMALL_STATE(1313)] = 101582, + [SMALL_STATE(1314)] = 101639, + [SMALL_STATE(1315)] = 101688, + [SMALL_STATE(1316)] = 101737, + [SMALL_STATE(1317)] = 101784, + [SMALL_STATE(1318)] = 101833, + [SMALL_STATE(1319)] = 101882, + [SMALL_STATE(1320)] = 101941, + [SMALL_STATE(1321)] = 101988, + [SMALL_STATE(1322)] = 102037, + [SMALL_STATE(1323)] = 102084, + [SMALL_STATE(1324)] = 102131, + [SMALL_STATE(1325)] = 102178, + [SMALL_STATE(1326)] = 102225, + [SMALL_STATE(1327)] = 102272, + [SMALL_STATE(1328)] = 102319, + [SMALL_STATE(1329)] = 102366, + [SMALL_STATE(1330)] = 102413, + [SMALL_STATE(1331)] = 102460, + [SMALL_STATE(1332)] = 102509, + [SMALL_STATE(1333)] = 102555, + [SMALL_STATE(1334)] = 102641, + [SMALL_STATE(1335)] = 102709, + [SMALL_STATE(1336)] = 102793, + [SMALL_STATE(1337)] = 102843, + [SMALL_STATE(1338)] = 102915, + [SMALL_STATE(1339)] = 102961, + [SMALL_STATE(1340)] = 103007, + [SMALL_STATE(1341)] = 103081, + [SMALL_STATE(1342)] = 103135, + [SMALL_STATE(1343)] = 103181, + [SMALL_STATE(1344)] = 103227, + [SMALL_STATE(1345)] = 103291, + [SMALL_STATE(1346)] = 103349, + [SMALL_STATE(1347)] = 103409, + [SMALL_STATE(1348)] = 103469, + [SMALL_STATE(1349)] = 103515, + [SMALL_STATE(1350)] = 103561, + [SMALL_STATE(1351)] = 103611, + [SMALL_STATE(1352)] = 103657, + [SMALL_STATE(1353)] = 103703, + [SMALL_STATE(1354)] = 103749, + [SMALL_STATE(1355)] = 103833, + [SMALL_STATE(1356)] = 103879, + [SMALL_STATE(1357)] = 103925, + [SMALL_STATE(1358)] = 103971, + [SMALL_STATE(1359)] = 104017, + [SMALL_STATE(1360)] = 104063, + [SMALL_STATE(1361)] = 104113, + [SMALL_STATE(1362)] = 104159, + [SMALL_STATE(1363)] = 104205, + [SMALL_STATE(1364)] = 104255, + [SMALL_STATE(1365)] = 104311, + [SMALL_STATE(1366)] = 104357, + [SMALL_STATE(1367)] = 104403, + [SMALL_STATE(1368)] = 104449, + [SMALL_STATE(1369)] = 104495, + [SMALL_STATE(1370)] = 104545, + [SMALL_STATE(1371)] = 104591, + [SMALL_STATE(1372)] = 104637, + [SMALL_STATE(1373)] = 104683, + [SMALL_STATE(1374)] = 104729, + [SMALL_STATE(1375)] = 104775, + [SMALL_STATE(1376)] = 104827, + [SMALL_STATE(1377)] = 104873, + [SMALL_STATE(1378)] = 104919, + [SMALL_STATE(1379)] = 104965, + [SMALL_STATE(1380)] = 105011, + [SMALL_STATE(1381)] = 105057, + [SMALL_STATE(1382)] = 105103, + [SMALL_STATE(1383)] = 105149, + [SMALL_STATE(1384)] = 105195, + [SMALL_STATE(1385)] = 105241, + [SMALL_STATE(1386)] = 105287, + [SMALL_STATE(1387)] = 105333, + [SMALL_STATE(1388)] = 105393, + [SMALL_STATE(1389)] = 105449, + [SMALL_STATE(1390)] = 105535, + [SMALL_STATE(1391)] = 105587, + [SMALL_STATE(1392)] = 105633, + [SMALL_STATE(1393)] = 105719, + [SMALL_STATE(1394)] = 105765, + [SMALL_STATE(1395)] = 105811, + [SMALL_STATE(1396)] = 105857, + [SMALL_STATE(1397)] = 105903, + [SMALL_STATE(1398)] = 105949, + [SMALL_STATE(1399)] = 105995, + [SMALL_STATE(1400)] = 106041, + [SMALL_STATE(1401)] = 106091, + [SMALL_STATE(1402)] = 106137, + [SMALL_STATE(1403)] = 106183, + [SMALL_STATE(1404)] = 106229, + [SMALL_STATE(1405)] = 106275, + [SMALL_STATE(1406)] = 106321, + [SMALL_STATE(1407)] = 106367, + [SMALL_STATE(1408)] = 106413, + [SMALL_STATE(1409)] = 106459, + [SMALL_STATE(1410)] = 106505, + [SMALL_STATE(1411)] = 106565, + [SMALL_STATE(1412)] = 106611, + [SMALL_STATE(1413)] = 106681, + [SMALL_STATE(1414)] = 106729, + [SMALL_STATE(1415)] = 106779, + [SMALL_STATE(1416)] = 106825, + [SMALL_STATE(1417)] = 106871, + [SMALL_STATE(1418)] = 106917, + [SMALL_STATE(1419)] = 106988, + [SMALL_STATE(1420)] = 107041, + [SMALL_STATE(1421)] = 107088, + [SMALL_STATE(1422)] = 107135, + [SMALL_STATE(1423)] = 107182, + [SMALL_STATE(1424)] = 107229, + [SMALL_STATE(1425)] = 107276, + [SMALL_STATE(1426)] = 107323, + [SMALL_STATE(1427)] = 107386, + [SMALL_STATE(1428)] = 107433, + [SMALL_STATE(1429)] = 107514, + [SMALL_STATE(1430)] = 107563, + [SMALL_STATE(1431)] = 107610, + [SMALL_STATE(1432)] = 107657, + [SMALL_STATE(1433)] = 107736, + [SMALL_STATE(1434)] = 107781, + [SMALL_STATE(1435)] = 107828, + [SMALL_STATE(1436)] = 107877, + [SMALL_STATE(1437)] = 107922, + [SMALL_STATE(1438)] = 107973, + [SMALL_STATE(1439)] = 108018, + [SMALL_STATE(1440)] = 108063, + [SMALL_STATE(1441)] = 108108, + [SMALL_STATE(1442)] = 108167, + [SMALL_STATE(1443)] = 108236, + [SMALL_STATE(1444)] = 108303, + [SMALL_STATE(1445)] = 108348, + [SMALL_STATE(1446)] = 108413, + [SMALL_STATE(1447)] = 108468, + [SMALL_STATE(1448)] = 108549, + [SMALL_STATE(1449)] = 108594, + [SMALL_STATE(1450)] = 108641, + [SMALL_STATE(1451)] = 108688, + [SMALL_STATE(1452)] = 108737, + [SMALL_STATE(1453)] = 108786, + [SMALL_STATE(1454)] = 108833, + [SMALL_STATE(1455)] = 108880, + [SMALL_STATE(1456)] = 108925, + [SMALL_STATE(1457)] = 108972, + [SMALL_STATE(1458)] = 109021, + [SMALL_STATE(1459)] = 109068, + [SMALL_STATE(1460)] = 109113, + [SMALL_STATE(1461)] = 109160, + [SMALL_STATE(1462)] = 109207, + [SMALL_STATE(1463)] = 109266, + [SMALL_STATE(1464)] = 109313, + [SMALL_STATE(1465)] = 109362, + [SMALL_STATE(1466)] = 109409, + [SMALL_STATE(1467)] = 109456, + [SMALL_STATE(1468)] = 109503, + [SMALL_STATE(1469)] = 109558, + [SMALL_STATE(1470)] = 109607, + [SMALL_STATE(1471)] = 109664, + [SMALL_STATE(1472)] = 109711, + [SMALL_STATE(1473)] = 109758, + [SMALL_STATE(1474)] = 109805, + [SMALL_STATE(1475)] = 109852, + [SMALL_STATE(1476)] = 109899, + [SMALL_STATE(1477)] = 109946, + [SMALL_STATE(1478)] = 110027, + [SMALL_STATE(1479)] = 110080, + [SMALL_STATE(1480)] = 110129, + [SMALL_STATE(1481)] = 110176, + [SMALL_STATE(1482)] = 110235, + [SMALL_STATE(1483)] = 110282, + [SMALL_STATE(1484)] = 110327, + [SMALL_STATE(1485)] = 110376, + [SMALL_STATE(1486)] = 110435, + [SMALL_STATE(1487)] = 110480, + [SMALL_STATE(1488)] = 110529, + [SMALL_STATE(1489)] = 110608, + [SMALL_STATE(1490)] = 110653, + [SMALL_STATE(1491)] = 110710, + [SMALL_STATE(1492)] = 110761, + [SMALL_STATE(1493)] = 110807, + [SMALL_STATE(1494)] = 110851, + [SMALL_STATE(1495)] = 110929, + [SMALL_STATE(1496)] = 110977, + [SMALL_STATE(1497)] = 111035, + [SMALL_STATE(1498)] = 111093, + [SMALL_STATE(1499)] = 111139, + [SMALL_STATE(1500)] = 111187, + [SMALL_STATE(1501)] = 111235, + [SMALL_STATE(1502)] = 111279, + [SMALL_STATE(1503)] = 111325, + [SMALL_STATE(1504)] = 111371, + [SMALL_STATE(1505)] = 111415, + [SMALL_STATE(1506)] = 111473, + [SMALL_STATE(1507)] = 111519, + [SMALL_STATE(1508)] = 111601, + [SMALL_STATE(1509)] = 111647, + [SMALL_STATE(1510)] = 111695, + [SMALL_STATE(1511)] = 111743, + [SMALL_STATE(1512)] = 111791, + [SMALL_STATE(1513)] = 111845, + [SMALL_STATE(1514)] = 111891, + [SMALL_STATE(1515)] = 111937, + [SMALL_STATE(1516)] = 111981, + [SMALL_STATE(1517)] = 112027, + [SMALL_STATE(1518)] = 112073, + [SMALL_STATE(1519)] = 112119, + [SMALL_STATE(1520)] = 112199, + [SMALL_STATE(1521)] = 112245, + [SMALL_STATE(1522)] = 112303, + [SMALL_STATE(1523)] = 112361, + [SMALL_STATE(1524)] = 112409, + [SMALL_STATE(1525)] = 112471, + [SMALL_STATE(1526)] = 112543, + [SMALL_STATE(1527)] = 112613, + [SMALL_STATE(1528)] = 112681, + [SMALL_STATE(1529)] = 112747, + [SMALL_STATE(1530)] = 112793, + [SMALL_STATE(1531)] = 112839, + [SMALL_STATE(1532)] = 112891, + [SMALL_STATE(1533)] = 112939, + [SMALL_STATE(1534)] = 112985, + [SMALL_STATE(1535)] = 113043, + [SMALL_STATE(1536)] = 113101, + [SMALL_STATE(1537)] = 113163, + [SMALL_STATE(1538)] = 113233, + [SMALL_STATE(1539)] = 113301, + [SMALL_STATE(1540)] = 113367, + [SMALL_STATE(1541)] = 113411, + [SMALL_STATE(1542)] = 113455, + [SMALL_STATE(1543)] = 113499, + [SMALL_STATE(1544)] = 113563, + [SMALL_STATE(1545)] = 113643, + [SMALL_STATE(1546)] = 113687, + [SMALL_STATE(1547)] = 113769, + [SMALL_STATE(1548)] = 113851, + [SMALL_STATE(1549)] = 113895, + [SMALL_STATE(1550)] = 113973, + [SMALL_STATE(1551)] = 114021, + [SMALL_STATE(1552)] = 114097, + [SMALL_STATE(1553)] = 114145, + [SMALL_STATE(1554)] = 114189, + [SMALL_STATE(1555)] = 114237, + [SMALL_STATE(1556)] = 114283, + [SMALL_STATE(1557)] = 114331, + [SMALL_STATE(1558)] = 114379, + [SMALL_STATE(1559)] = 114429, + [SMALL_STATE(1560)] = 114479, + [SMALL_STATE(1561)] = 114531, + [SMALL_STATE(1562)] = 114579, + [SMALL_STATE(1563)] = 114631, + [SMALL_STATE(1564)] = 114679, + [SMALL_STATE(1565)] = 114729, + [SMALL_STATE(1566)] = 114781, + [SMALL_STATE(1567)] = 114839, + [SMALL_STATE(1568)] = 114885, + [SMALL_STATE(1569)] = 114931, + [SMALL_STATE(1570)] = 114977, + [SMALL_STATE(1571)] = 115035, + [SMALL_STATE(1572)] = 115085, + [SMALL_STATE(1573)] = 115129, + [SMALL_STATE(1574)] = 115205, + [SMALL_STATE(1575)] = 115251, + [SMALL_STATE(1576)] = 115297, + [SMALL_STATE(1577)] = 115341, + [SMALL_STATE(1578)] = 115387, + [SMALL_STATE(1579)] = 115431, + [SMALL_STATE(1580)] = 115477, + [SMALL_STATE(1581)] = 115523, + [SMALL_STATE(1582)] = 115569, + [SMALL_STATE(1583)] = 115649, + [SMALL_STATE(1584)] = 115695, + [SMALL_STATE(1585)] = 115775, + [SMALL_STATE(1586)] = 115829, + [SMALL_STATE(1587)] = 115875, + [SMALL_STATE(1588)] = 115955, + [SMALL_STATE(1589)] = 116001, + [SMALL_STATE(1590)] = 116045, + [SMALL_STATE(1591)] = 116091, + [SMALL_STATE(1592)] = 116169, + [SMALL_STATE(1593)] = 116217, + [SMALL_STATE(1594)] = 116265, + [SMALL_STATE(1595)] = 116317, + [SMALL_STATE(1596)] = 116361, + [SMALL_STATE(1597)] = 116413, + [SMALL_STATE(1598)] = 116461, + [SMALL_STATE(1599)] = 116511, + [SMALL_STATE(1600)] = 116559, + [SMALL_STATE(1601)] = 116605, + [SMALL_STATE(1602)] = 116651, + [SMALL_STATE(1603)] = 116697, + [SMALL_STATE(1604)] = 116755, + [SMALL_STATE(1605)] = 116813, + [SMALL_STATE(1606)] = 116873, + [SMALL_STATE(1607)] = 116941, + [SMALL_STATE(1608)] = 117007, + [SMALL_STATE(1609)] = 117071, + [SMALL_STATE(1610)] = 117133, + [SMALL_STATE(1611)] = 117181, + [SMALL_STATE(1612)] = 117229, + [SMALL_STATE(1613)] = 117275, + [SMALL_STATE(1614)] = 117333, + [SMALL_STATE(1615)] = 117379, + [SMALL_STATE(1616)] = 117433, + [SMALL_STATE(1617)] = 117511, + [SMALL_STATE(1618)] = 117555, + [SMALL_STATE(1619)] = 117633, + [SMALL_STATE(1620)] = 117677, + [SMALL_STATE(1621)] = 117723, + [SMALL_STATE(1622)] = 117769, + [SMALL_STATE(1623)] = 117817, + [SMALL_STATE(1624)] = 117863, + [SMALL_STATE(1625)] = 117909, + [SMALL_STATE(1626)] = 117955, + [SMALL_STATE(1627)] = 118001, + [SMALL_STATE(1628)] = 118047, + [SMALL_STATE(1629)] = 118093, + [SMALL_STATE(1630)] = 118139, + [SMALL_STATE(1631)] = 118185, + [SMALL_STATE(1632)] = 118233, + [SMALL_STATE(1633)] = 118283, + [SMALL_STATE(1634)] = 118337, + [SMALL_STATE(1635)] = 118383, + [SMALL_STATE(1636)] = 118428, + [SMALL_STATE(1637)] = 118471, + [SMALL_STATE(1638)] = 118514, + [SMALL_STATE(1639)] = 118557, + [SMALL_STATE(1640)] = 118600, + [SMALL_STATE(1641)] = 118643, + [SMALL_STATE(1642)] = 118686, + [SMALL_STATE(1643)] = 118731, + [SMALL_STATE(1644)] = 118774, + [SMALL_STATE(1645)] = 118817, + [SMALL_STATE(1646)] = 118862, + [SMALL_STATE(1647)] = 118905, + [SMALL_STATE(1648)] = 118950, + [SMALL_STATE(1649)] = 118993, + [SMALL_STATE(1650)] = 119036, + [SMALL_STATE(1651)] = 119079, + [SMALL_STATE(1652)] = 119122, + [SMALL_STATE(1653)] = 119165, + [SMALL_STATE(1654)] = 119210, + [SMALL_STATE(1655)] = 119255, + [SMALL_STATE(1656)] = 119298, + [SMALL_STATE(1657)] = 119341, + [SMALL_STATE(1658)] = 119384, + [SMALL_STATE(1659)] = 119427, + [SMALL_STATE(1660)] = 119470, + [SMALL_STATE(1661)] = 119515, + [SMALL_STATE(1662)] = 119560, + [SMALL_STATE(1663)] = 119603, + [SMALL_STATE(1664)] = 119646, + [SMALL_STATE(1665)] = 119689, + [SMALL_STATE(1666)] = 119732, + [SMALL_STATE(1667)] = 119775, + [SMALL_STATE(1668)] = 119852, + [SMALL_STATE(1669)] = 119895, + [SMALL_STATE(1670)] = 119938, + [SMALL_STATE(1671)] = 119981, + [SMALL_STATE(1672)] = 120024, + [SMALL_STATE(1673)] = 120067, + [SMALL_STATE(1674)] = 120110, + [SMALL_STATE(1675)] = 120153, + [SMALL_STATE(1676)] = 120196, + [SMALL_STATE(1677)] = 120239, + [SMALL_STATE(1678)] = 120282, + [SMALL_STATE(1679)] = 120325, + [SMALL_STATE(1680)] = 120368, + [SMALL_STATE(1681)] = 120411, + [SMALL_STATE(1682)] = 120458, + [SMALL_STATE(1683)] = 120501, + [SMALL_STATE(1684)] = 120544, + [SMALL_STATE(1685)] = 120587, + [SMALL_STATE(1686)] = 120630, + [SMALL_STATE(1687)] = 120673, + [SMALL_STATE(1688)] = 120716, + [SMALL_STATE(1689)] = 120759, + [SMALL_STATE(1690)] = 120802, + [SMALL_STATE(1691)] = 120845, + [SMALL_STATE(1692)] = 120888, + [SMALL_STATE(1693)] = 120933, + [SMALL_STATE(1694)] = 120976, + [SMALL_STATE(1695)] = 121019, + [SMALL_STATE(1696)] = 121062, + [SMALL_STATE(1697)] = 121105, + [SMALL_STATE(1698)] = 121148, + [SMALL_STATE(1699)] = 121191, + [SMALL_STATE(1700)] = 121234, + [SMALL_STATE(1701)] = 121277, + [SMALL_STATE(1702)] = 121320, + [SMALL_STATE(1703)] = 121373, + [SMALL_STATE(1704)] = 121416, + [SMALL_STATE(1705)] = 121459, + [SMALL_STATE(1706)] = 121502, + [SMALL_STATE(1707)] = 121545, + [SMALL_STATE(1708)] = 121588, + [SMALL_STATE(1709)] = 121631, + [SMALL_STATE(1710)] = 121674, + [SMALL_STATE(1711)] = 121727, + [SMALL_STATE(1712)] = 121770, + [SMALL_STATE(1713)] = 121813, + [SMALL_STATE(1714)] = 121856, + [SMALL_STATE(1715)] = 121899, + [SMALL_STATE(1716)] = 121942, + [SMALL_STATE(1717)] = 121993, + [SMALL_STATE(1718)] = 122044, + [SMALL_STATE(1719)] = 122101, + [SMALL_STATE(1720)] = 122144, + [SMALL_STATE(1721)] = 122187, + [SMALL_STATE(1722)] = 122230, + [SMALL_STATE(1723)] = 122273, + [SMALL_STATE(1724)] = 122316, + [SMALL_STATE(1725)] = 122359, + [SMALL_STATE(1726)] = 122402, + [SMALL_STATE(1727)] = 122445, + [SMALL_STATE(1728)] = 122488, + [SMALL_STATE(1729)] = 122531, + [SMALL_STATE(1730)] = 122574, + [SMALL_STATE(1731)] = 122617, + [SMALL_STATE(1732)] = 122662, + [SMALL_STATE(1733)] = 122705, + [SMALL_STATE(1734)] = 122748, + [SMALL_STATE(1735)] = 122791, + [SMALL_STATE(1736)] = 122838, + [SMALL_STATE(1737)] = 122883, + [SMALL_STATE(1738)] = 122926, + [SMALL_STATE(1739)] = 122969, + [SMALL_STATE(1740)] = 123014, + [SMALL_STATE(1741)] = 123059, + [SMALL_STATE(1742)] = 123104, + [SMALL_STATE(1743)] = 123149, + [SMALL_STATE(1744)] = 123192, + [SMALL_STATE(1745)] = 123237, + [SMALL_STATE(1746)] = 123280, + [SMALL_STATE(1747)] = 123323, + [SMALL_STATE(1748)] = 123366, + [SMALL_STATE(1749)] = 123419, + [SMALL_STATE(1750)] = 123462, + [SMALL_STATE(1751)] = 123505, + [SMALL_STATE(1752)] = 123548, + [SMALL_STATE(1753)] = 123591, + [SMALL_STATE(1754)] = 123636, + [SMALL_STATE(1755)] = 123679, + [SMALL_STATE(1756)] = 123724, + [SMALL_STATE(1757)] = 123767, + [SMALL_STATE(1758)] = 123812, + [SMALL_STATE(1759)] = 123855, + [SMALL_STATE(1760)] = 123902, + [SMALL_STATE(1761)] = 123947, + [SMALL_STATE(1762)] = 123992, + [SMALL_STATE(1763)] = 124035, + [SMALL_STATE(1764)] = 124080, + [SMALL_STATE(1765)] = 124131, + [SMALL_STATE(1766)] = 124176, + [SMALL_STATE(1767)] = 124221, + [SMALL_STATE(1768)] = 124266, + [SMALL_STATE(1769)] = 124309, + [SMALL_STATE(1770)] = 124354, + [SMALL_STATE(1771)] = 124399, + [SMALL_STATE(1772)] = 124442, + [SMALL_STATE(1773)] = 124485, + [SMALL_STATE(1774)] = 124530, + [SMALL_STATE(1775)] = 124577, + [SMALL_STATE(1776)] = 124620, + [SMALL_STATE(1777)] = 124665, + [SMALL_STATE(1778)] = 124708, [SMALL_STATE(1779)] = 124751, [SMALL_STATE(1780)] = 124798, [SMALL_STATE(1781)] = 124841, [SMALL_STATE(1782)] = 124884, [SMALL_STATE(1783)] = 124929, [SMALL_STATE(1784)] = 124974, - [SMALL_STATE(1785)] = 125017, - [SMALL_STATE(1786)] = 125060, - [SMALL_STATE(1787)] = 125105, - [SMALL_STATE(1788)] = 125148, - [SMALL_STATE(1789)] = 125191, - [SMALL_STATE(1790)] = 125234, - [SMALL_STATE(1791)] = 125277, - [SMALL_STATE(1792)] = 125334, - [SMALL_STATE(1793)] = 125377, - [SMALL_STATE(1794)] = 125420, - [SMALL_STATE(1795)] = 125463, - [SMALL_STATE(1796)] = 125506, - [SMALL_STATE(1797)] = 125549, - [SMALL_STATE(1798)] = 125592, - [SMALL_STATE(1799)] = 125637, - [SMALL_STATE(1800)] = 125680, - [SMALL_STATE(1801)] = 125723, - [SMALL_STATE(1802)] = 125768, - [SMALL_STATE(1803)] = 125813, - [SMALL_STATE(1804)] = 125856, - [SMALL_STATE(1805)] = 125905, - [SMALL_STATE(1806)] = 125966, - [SMALL_STATE(1807)] = 126009, - [SMALL_STATE(1808)] = 126052, - [SMALL_STATE(1809)] = 126095, - [SMALL_STATE(1810)] = 126140, - [SMALL_STATE(1811)] = 126185, - [SMALL_STATE(1812)] = 126230, - [SMALL_STATE(1813)] = 126275, - [SMALL_STATE(1814)] = 126324, - [SMALL_STATE(1815)] = 126367, - [SMALL_STATE(1816)] = 126410, - [SMALL_STATE(1817)] = 126455, - [SMALL_STATE(1818)] = 126500, - [SMALL_STATE(1819)] = 126545, - [SMALL_STATE(1820)] = 126614, - [SMALL_STATE(1821)] = 126681, - [SMALL_STATE(1822)] = 126746, - [SMALL_STATE(1823)] = 126791, - [SMALL_STATE(1824)] = 126870, - [SMALL_STATE(1825)] = 126913, - [SMALL_STATE(1826)] = 126992, - [SMALL_STATE(1827)] = 127035, - [SMALL_STATE(1828)] = 127080, - [SMALL_STATE(1829)] = 127123, - [SMALL_STATE(1830)] = 127186, - [SMALL_STATE(1831)] = 127231, - [SMALL_STATE(1832)] = 127274, - [SMALL_STATE(1833)] = 127317, - [SMALL_STATE(1834)] = 127360, - [SMALL_STATE(1835)] = 127405, - [SMALL_STATE(1836)] = 127448, - [SMALL_STATE(1837)] = 127491, - [SMALL_STATE(1838)] = 127533, - [SMALL_STATE(1839)] = 127575, - [SMALL_STATE(1840)] = 127617, - [SMALL_STATE(1841)] = 127659, - [SMALL_STATE(1842)] = 127701, - [SMALL_STATE(1843)] = 127743, - [SMALL_STATE(1844)] = 127785, - [SMALL_STATE(1845)] = 127827, - [SMALL_STATE(1846)] = 127869, - [SMALL_STATE(1847)] = 127913, - [SMALL_STATE(1848)] = 127955, - [SMALL_STATE(1849)] = 127997, - [SMALL_STATE(1850)] = 128039, - [SMALL_STATE(1851)] = 128081, - [SMALL_STATE(1852)] = 128123, - [SMALL_STATE(1853)] = 128169, - [SMALL_STATE(1854)] = 128211, - [SMALL_STATE(1855)] = 128253, - [SMALL_STATE(1856)] = 128295, - [SMALL_STATE(1857)] = 128337, - [SMALL_STATE(1858)] = 128379, - [SMALL_STATE(1859)] = 128421, - [SMALL_STATE(1860)] = 128463, - [SMALL_STATE(1861)] = 128505, - [SMALL_STATE(1862)] = 128547, - [SMALL_STATE(1863)] = 128589, - [SMALL_STATE(1864)] = 128631, - [SMALL_STATE(1865)] = 128673, - [SMALL_STATE(1866)] = 128715, - [SMALL_STATE(1867)] = 128757, - [SMALL_STATE(1868)] = 128799, - [SMALL_STATE(1869)] = 128841, - [SMALL_STATE(1870)] = 128883, - [SMALL_STATE(1871)] = 128925, - [SMALL_STATE(1872)] = 128967, - [SMALL_STATE(1873)] = 129009, - [SMALL_STATE(1874)] = 129051, - [SMALL_STATE(1875)] = 129093, - [SMALL_STATE(1876)] = 129135, - [SMALL_STATE(1877)] = 129177, - [SMALL_STATE(1878)] = 129219, - [SMALL_STATE(1879)] = 129261, - [SMALL_STATE(1880)] = 129303, - [SMALL_STATE(1881)] = 129345, - [SMALL_STATE(1882)] = 129387, - [SMALL_STATE(1883)] = 129429, - [SMALL_STATE(1884)] = 129471, - [SMALL_STATE(1885)] = 129513, - [SMALL_STATE(1886)] = 129555, - [SMALL_STATE(1887)] = 129597, - [SMALL_STATE(1888)] = 129643, - [SMALL_STATE(1889)] = 129695, - [SMALL_STATE(1890)] = 129737, - [SMALL_STATE(1891)] = 129779, - [SMALL_STATE(1892)] = 129821, - [SMALL_STATE(1893)] = 129863, - [SMALL_STATE(1894)] = 129907, - [SMALL_STATE(1895)] = 129949, - [SMALL_STATE(1896)] = 129991, - [SMALL_STATE(1897)] = 130035, - [SMALL_STATE(1898)] = 130077, - [SMALL_STATE(1899)] = 130119, - [SMALL_STATE(1900)] = 130161, - [SMALL_STATE(1901)] = 130203, - [SMALL_STATE(1902)] = 130245, - [SMALL_STATE(1903)] = 130287, - [SMALL_STATE(1904)] = 130329, - [SMALL_STATE(1905)] = 130371, - [SMALL_STATE(1906)] = 130413, - [SMALL_STATE(1907)] = 130455, - [SMALL_STATE(1908)] = 130497, - [SMALL_STATE(1909)] = 130539, - [SMALL_STATE(1910)] = 130585, - [SMALL_STATE(1911)] = 130627, - [SMALL_STATE(1912)] = 130669, - [SMALL_STATE(1913)] = 130711, - [SMALL_STATE(1914)] = 130753, - [SMALL_STATE(1915)] = 130795, - [SMALL_STATE(1916)] = 130837, - [SMALL_STATE(1917)] = 130879, - [SMALL_STATE(1918)] = 130921, - [SMALL_STATE(1919)] = 130965, - [SMALL_STATE(1920)] = 131007, - [SMALL_STATE(1921)] = 131049, - [SMALL_STATE(1922)] = 131093, - [SMALL_STATE(1923)] = 131135, - [SMALL_STATE(1924)] = 131181, - [SMALL_STATE(1925)] = 131225, - [SMALL_STATE(1926)] = 131269, - [SMALL_STATE(1927)] = 131311, - [SMALL_STATE(1928)] = 131353, - [SMALL_STATE(1929)] = 131395, - [SMALL_STATE(1930)] = 131437, - [SMALL_STATE(1931)] = 131479, - [SMALL_STATE(1932)] = 131521, - [SMALL_STATE(1933)] = 131563, - [SMALL_STATE(1934)] = 131605, - [SMALL_STATE(1935)] = 131647, - [SMALL_STATE(1936)] = 131689, - [SMALL_STATE(1937)] = 131735, - [SMALL_STATE(1938)] = 131777, - [SMALL_STATE(1939)] = 131819, - [SMALL_STATE(1940)] = 131861, - [SMALL_STATE(1941)] = 131903, - [SMALL_STATE(1942)] = 131949, - [SMALL_STATE(1943)] = 131991, - [SMALL_STATE(1944)] = 132033, - [SMALL_STATE(1945)] = 132075, - [SMALL_STATE(1946)] = 132117, - [SMALL_STATE(1947)] = 132159, - [SMALL_STATE(1948)] = 132201, - [SMALL_STATE(1949)] = 132243, - [SMALL_STATE(1950)] = 132285, - [SMALL_STATE(1951)] = 132329, - [SMALL_STATE(1952)] = 132371, - [SMALL_STATE(1953)] = 132417, - [SMALL_STATE(1954)] = 132461, - [SMALL_STATE(1955)] = 132507, - [SMALL_STATE(1956)] = 132549, - [SMALL_STATE(1957)] = 132591, - [SMALL_STATE(1958)] = 132633, - [SMALL_STATE(1959)] = 132675, - [SMALL_STATE(1960)] = 132717, - [SMALL_STATE(1961)] = 132759, - [SMALL_STATE(1962)] = 132801, - [SMALL_STATE(1963)] = 132843, - [SMALL_STATE(1964)] = 132885, - [SMALL_STATE(1965)] = 132927, - [SMALL_STATE(1966)] = 132968, - [SMALL_STATE(1967)] = 133029, - [SMALL_STATE(1968)] = 133070, - [SMALL_STATE(1969)] = 133111, - [SMALL_STATE(1970)] = 133186, - [SMALL_STATE(1971)] = 133231, - [SMALL_STATE(1972)] = 133282, - [SMALL_STATE(1973)] = 133337, - [SMALL_STATE(1974)] = 133378, - [SMALL_STATE(1975)] = 133435, - [SMALL_STATE(1976)] = 133476, - [SMALL_STATE(1977)] = 133517, - [SMALL_STATE(1978)] = 133558, - [SMALL_STATE(1979)] = 133599, - [SMALL_STATE(1980)] = 133640, - [SMALL_STATE(1981)] = 133681, - [SMALL_STATE(1982)] = 133722, - [SMALL_STATE(1983)] = 133763, - [SMALL_STATE(1984)] = 133804, - [SMALL_STATE(1985)] = 133849, - [SMALL_STATE(1986)] = 133890, - [SMALL_STATE(1987)] = 133931, - [SMALL_STATE(1988)] = 133972, - [SMALL_STATE(1989)] = 134013, - [SMALL_STATE(1990)] = 134070, - [SMALL_STATE(1991)] = 134111, - [SMALL_STATE(1992)] = 134152, - [SMALL_STATE(1993)] = 134193, - [SMALL_STATE(1994)] = 134234, - [SMALL_STATE(1995)] = 134275, - [SMALL_STATE(1996)] = 134316, - [SMALL_STATE(1997)] = 134357, - [SMALL_STATE(1998)] = 134398, - [SMALL_STATE(1999)] = 134473, - [SMALL_STATE(2000)] = 134518, - [SMALL_STATE(2001)] = 134559, - [SMALL_STATE(2002)] = 134634, - [SMALL_STATE(2003)] = 134687, - [SMALL_STATE(2004)] = 134742, - [SMALL_STATE(2005)] = 134783, - [SMALL_STATE(2006)] = 134824, - [SMALL_STATE(2007)] = 134865, - [SMALL_STATE(2008)] = 134906, - [SMALL_STATE(2009)] = 134947, - [SMALL_STATE(2010)] = 134992, - [SMALL_STATE(2011)] = 135035, - [SMALL_STATE(2012)] = 135090, - [SMALL_STATE(2013)] = 135131, - [SMALL_STATE(2014)] = 135176, - [SMALL_STATE(2015)] = 135231, - [SMALL_STATE(2016)] = 135272, - [SMALL_STATE(2017)] = 135331, - [SMALL_STATE(2018)] = 135372, - [SMALL_STATE(2019)] = 135421, - [SMALL_STATE(2020)] = 135462, - [SMALL_STATE(2021)] = 135503, - [SMALL_STATE(2022)] = 135560, - [SMALL_STATE(2023)] = 135601, - [SMALL_STATE(2024)] = 135642, - [SMALL_STATE(2025)] = 135683, - [SMALL_STATE(2026)] = 135724, - [SMALL_STATE(2027)] = 135765, - [SMALL_STATE(2028)] = 135832, - [SMALL_STATE(2029)] = 135873, - [SMALL_STATE(2030)] = 135918, - [SMALL_STATE(2031)] = 135959, - [SMALL_STATE(2032)] = 136006, - [SMALL_STATE(2033)] = 136081, - [SMALL_STATE(2034)] = 136156, - [SMALL_STATE(2035)] = 136197, - [SMALL_STATE(2036)] = 136262, - [SMALL_STATE(2037)] = 136307, - [SMALL_STATE(2038)] = 136348, - [SMALL_STATE(2039)] = 136389, - [SMALL_STATE(2040)] = 136436, - [SMALL_STATE(2041)] = 136499, - [SMALL_STATE(2042)] = 136544, - [SMALL_STATE(2043)] = 136589, - [SMALL_STATE(2044)] = 136634, - [SMALL_STATE(2045)] = 136684, - [SMALL_STATE(2046)] = 136726, - [SMALL_STATE(2047)] = 136768, - [SMALL_STATE(2048)] = 136810, - [SMALL_STATE(2049)] = 136852, - [SMALL_STATE(2050)] = 136894, - [SMALL_STATE(2051)] = 136936, - [SMALL_STATE(2052)] = 136976, - [SMALL_STATE(2053)] = 137019, - [SMALL_STATE(2054)] = 137062, - [SMALL_STATE(2055)] = 137099, - [SMALL_STATE(2056)] = 137155, - [SMALL_STATE(2057)] = 137211, - [SMALL_STATE(2058)] = 137267, - [SMALL_STATE(2059)] = 137323, - [SMALL_STATE(2060)] = 137379, - [SMALL_STATE(2061)] = 137435, - [SMALL_STATE(2062)] = 137491, - [SMALL_STATE(2063)] = 137547, - [SMALL_STATE(2064)] = 137603, - [SMALL_STATE(2065)] = 137659, - [SMALL_STATE(2066)] = 137715, - [SMALL_STATE(2067)] = 137771, - [SMALL_STATE(2068)] = 137827, - [SMALL_STATE(2069)] = 137883, - [SMALL_STATE(2070)] = 137939, - [SMALL_STATE(2071)] = 137995, - [SMALL_STATE(2072)] = 138051, - [SMALL_STATE(2073)] = 138107, - [SMALL_STATE(2074)] = 138163, - [SMALL_STATE(2075)] = 138219, - [SMALL_STATE(2076)] = 138275, - [SMALL_STATE(2077)] = 138331, - [SMALL_STATE(2078)] = 138387, - [SMALL_STATE(2079)] = 138443, - [SMALL_STATE(2080)] = 138499, - [SMALL_STATE(2081)] = 138555, - [SMALL_STATE(2082)] = 138611, - [SMALL_STATE(2083)] = 138667, - [SMALL_STATE(2084)] = 138723, - [SMALL_STATE(2085)] = 138779, - [SMALL_STATE(2086)] = 138835, - [SMALL_STATE(2087)] = 138891, - [SMALL_STATE(2088)] = 138947, - [SMALL_STATE(2089)] = 139003, - [SMALL_STATE(2090)] = 139059, - [SMALL_STATE(2091)] = 139115, - [SMALL_STATE(2092)] = 139171, - [SMALL_STATE(2093)] = 139227, - [SMALL_STATE(2094)] = 139283, - [SMALL_STATE(2095)] = 139339, - [SMALL_STATE(2096)] = 139395, - [SMALL_STATE(2097)] = 139451, - [SMALL_STATE(2098)] = 139507, - [SMALL_STATE(2099)] = 139541, - [SMALL_STATE(2100)] = 139597, - [SMALL_STATE(2101)] = 139653, - [SMALL_STATE(2102)] = 139709, - [SMALL_STATE(2103)] = 139765, - [SMALL_STATE(2104)] = 139821, - [SMALL_STATE(2105)] = 139877, - [SMALL_STATE(2106)] = 139933, - [SMALL_STATE(2107)] = 139989, - [SMALL_STATE(2108)] = 140045, - [SMALL_STATE(2109)] = 140100, - [SMALL_STATE(2110)] = 140153, - [SMALL_STATE(2111)] = 140206, - [SMALL_STATE(2112)] = 140259, - [SMALL_STATE(2113)] = 140312, - [SMALL_STATE(2114)] = 140365, - [SMALL_STATE(2115)] = 140418, - [SMALL_STATE(2116)] = 140471, - [SMALL_STATE(2117)] = 140514, - [SMALL_STATE(2118)] = 140567, - [SMALL_STATE(2119)] = 140620, - [SMALL_STATE(2120)] = 140673, - [SMALL_STATE(2121)] = 140726, - [SMALL_STATE(2122)] = 140779, + [SMALL_STATE(1785)] = 125023, + [SMALL_STATE(1786)] = 125070, + [SMALL_STATE(1787)] = 125115, + [SMALL_STATE(1788)] = 125158, + [SMALL_STATE(1789)] = 125201, + [SMALL_STATE(1790)] = 125278, + [SMALL_STATE(1791)] = 125321, + [SMALL_STATE(1792)] = 125368, + [SMALL_STATE(1793)] = 125413, + [SMALL_STATE(1794)] = 125492, + [SMALL_STATE(1795)] = 125571, + [SMALL_STATE(1796)] = 125614, + [SMALL_STATE(1797)] = 125657, + [SMALL_STATE(1798)] = 125700, + [SMALL_STATE(1799)] = 125743, + [SMALL_STATE(1800)] = 125786, + [SMALL_STATE(1801)] = 125829, + [SMALL_STATE(1802)] = 125874, + [SMALL_STATE(1803)] = 125919, + [SMALL_STATE(1804)] = 125976, + [SMALL_STATE(1805)] = 126019, + [SMALL_STATE(1806)] = 126066, + [SMALL_STATE(1807)] = 126111, + [SMALL_STATE(1808)] = 126154, + [SMALL_STATE(1809)] = 126197, + [SMALL_STATE(1810)] = 126260, + [SMALL_STATE(1811)] = 126325, + [SMALL_STATE(1812)] = 126368, + [SMALL_STATE(1813)] = 126411, + [SMALL_STATE(1814)] = 126454, + [SMALL_STATE(1815)] = 126497, + [SMALL_STATE(1816)] = 126540, + [SMALL_STATE(1817)] = 126607, + [SMALL_STATE(1818)] = 126676, + [SMALL_STATE(1819)] = 126719, + [SMALL_STATE(1820)] = 126764, + [SMALL_STATE(1821)] = 126809, + [SMALL_STATE(1822)] = 126854, + [SMALL_STATE(1823)] = 126899, + [SMALL_STATE(1824)] = 126948, + [SMALL_STATE(1825)] = 126991, + [SMALL_STATE(1826)] = 127034, + [SMALL_STATE(1827)] = 127077, + [SMALL_STATE(1828)] = 127120, + [SMALL_STATE(1829)] = 127181, + [SMALL_STATE(1830)] = 127224, + [SMALL_STATE(1831)] = 127269, + [SMALL_STATE(1832)] = 127312, + [SMALL_STATE(1833)] = 127369, + [SMALL_STATE(1834)] = 127412, + [SMALL_STATE(1835)] = 127469, + [SMALL_STATE(1836)] = 127512, + [SMALL_STATE(1837)] = 127555, + [SMALL_STATE(1838)] = 127598, + [SMALL_STATE(1839)] = 127641, + [SMALL_STATE(1840)] = 127688, + [SMALL_STATE(1841)] = 127731, + [SMALL_STATE(1842)] = 127774, + [SMALL_STATE(1843)] = 127819, + [SMALL_STATE(1844)] = 127898, + [SMALL_STATE(1845)] = 127941, + [SMALL_STATE(1846)] = 127988, + [SMALL_STATE(1847)] = 128031, + [SMALL_STATE(1848)] = 128076, + [SMALL_STATE(1849)] = 128123, + [SMALL_STATE(1850)] = 128165, + [SMALL_STATE(1851)] = 128207, + [SMALL_STATE(1852)] = 128259, + [SMALL_STATE(1853)] = 128303, + [SMALL_STATE(1854)] = 128345, + [SMALL_STATE(1855)] = 128391, + [SMALL_STATE(1856)] = 128435, + [SMALL_STATE(1857)] = 128485, + [SMALL_STATE(1858)] = 128527, + [SMALL_STATE(1859)] = 128569, + [SMALL_STATE(1860)] = 128611, + [SMALL_STATE(1861)] = 128653, + [SMALL_STATE(1862)] = 128695, + [SMALL_STATE(1863)] = 128737, + [SMALL_STATE(1864)] = 128779, + [SMALL_STATE(1865)] = 128821, + [SMALL_STATE(1866)] = 128863, + [SMALL_STATE(1867)] = 128905, + [SMALL_STATE(1868)] = 128947, + [SMALL_STATE(1869)] = 128989, + [SMALL_STATE(1870)] = 129031, + [SMALL_STATE(1871)] = 129073, + [SMALL_STATE(1872)] = 129115, + [SMALL_STATE(1873)] = 129157, + [SMALL_STATE(1874)] = 129199, + [SMALL_STATE(1875)] = 129241, + [SMALL_STATE(1876)] = 129283, + [SMALL_STATE(1877)] = 129325, + [SMALL_STATE(1878)] = 129367, + [SMALL_STATE(1879)] = 129409, + [SMALL_STATE(1880)] = 129451, + [SMALL_STATE(1881)] = 129493, + [SMALL_STATE(1882)] = 129535, + [SMALL_STATE(1883)] = 129577, + [SMALL_STATE(1884)] = 129619, + [SMALL_STATE(1885)] = 129661, + [SMALL_STATE(1886)] = 129705, + [SMALL_STATE(1887)] = 129747, + [SMALL_STATE(1888)] = 129789, + [SMALL_STATE(1889)] = 129831, + [SMALL_STATE(1890)] = 129875, + [SMALL_STATE(1891)] = 129917, + [SMALL_STATE(1892)] = 129963, + [SMALL_STATE(1893)] = 130005, + [SMALL_STATE(1894)] = 130047, + [SMALL_STATE(1895)] = 130089, + [SMALL_STATE(1896)] = 130131, + [SMALL_STATE(1897)] = 130173, + [SMALL_STATE(1898)] = 130219, + [SMALL_STATE(1899)] = 130263, + [SMALL_STATE(1900)] = 130305, + [SMALL_STATE(1901)] = 130349, + [SMALL_STATE(1902)] = 130393, + [SMALL_STATE(1903)] = 130437, + [SMALL_STATE(1904)] = 130479, + [SMALL_STATE(1905)] = 130521, + [SMALL_STATE(1906)] = 130563, + [SMALL_STATE(1907)] = 130605, + [SMALL_STATE(1908)] = 130647, + [SMALL_STATE(1909)] = 130689, + [SMALL_STATE(1910)] = 130731, + [SMALL_STATE(1911)] = 130773, + [SMALL_STATE(1912)] = 130815, + [SMALL_STATE(1913)] = 130857, + [SMALL_STATE(1914)] = 130903, + [SMALL_STATE(1915)] = 130945, + [SMALL_STATE(1916)] = 130987, + [SMALL_STATE(1917)] = 131033, + [SMALL_STATE(1918)] = 131075, + [SMALL_STATE(1919)] = 131117, + [SMALL_STATE(1920)] = 131159, + [SMALL_STATE(1921)] = 131201, + [SMALL_STATE(1922)] = 131243, + [SMALL_STATE(1923)] = 131285, + [SMALL_STATE(1924)] = 131327, + [SMALL_STATE(1925)] = 131373, + [SMALL_STATE(1926)] = 131415, + [SMALL_STATE(1927)] = 131457, + [SMALL_STATE(1928)] = 131499, + [SMALL_STATE(1929)] = 131541, + [SMALL_STATE(1930)] = 131583, + [SMALL_STATE(1931)] = 131625, + [SMALL_STATE(1932)] = 131667, + [SMALL_STATE(1933)] = 131709, + [SMALL_STATE(1934)] = 131751, + [SMALL_STATE(1935)] = 131793, + [SMALL_STATE(1936)] = 131835, + [SMALL_STATE(1937)] = 131877, + [SMALL_STATE(1938)] = 131921, + [SMALL_STATE(1939)] = 131963, + [SMALL_STATE(1940)] = 132005, + [SMALL_STATE(1941)] = 132047, + [SMALL_STATE(1942)] = 132089, + [SMALL_STATE(1943)] = 132131, + [SMALL_STATE(1944)] = 132173, + [SMALL_STATE(1945)] = 132215, + [SMALL_STATE(1946)] = 132257, + [SMALL_STATE(1947)] = 132299, + [SMALL_STATE(1948)] = 132341, + [SMALL_STATE(1949)] = 132383, + [SMALL_STATE(1950)] = 132425, + [SMALL_STATE(1951)] = 132467, + [SMALL_STATE(1952)] = 132509, + [SMALL_STATE(1953)] = 132551, + [SMALL_STATE(1954)] = 132593, + [SMALL_STATE(1955)] = 132635, + [SMALL_STATE(1956)] = 132677, + [SMALL_STATE(1957)] = 132723, + [SMALL_STATE(1958)] = 132765, + [SMALL_STATE(1959)] = 132807, + [SMALL_STATE(1960)] = 132849, + [SMALL_STATE(1961)] = 132891, + [SMALL_STATE(1962)] = 132933, + [SMALL_STATE(1963)] = 132975, + [SMALL_STATE(1964)] = 133017, + [SMALL_STATE(1965)] = 133059, + [SMALL_STATE(1966)] = 133101, + [SMALL_STATE(1967)] = 133143, + [SMALL_STATE(1968)] = 133189, + [SMALL_STATE(1969)] = 133231, + [SMALL_STATE(1970)] = 133273, + [SMALL_STATE(1971)] = 133315, + [SMALL_STATE(1972)] = 133357, + [SMALL_STATE(1973)] = 133399, + [SMALL_STATE(1974)] = 133441, + [SMALL_STATE(1975)] = 133483, + [SMALL_STATE(1976)] = 133525, + [SMALL_STATE(1977)] = 133567, + [SMALL_STATE(1978)] = 133609, + [SMALL_STATE(1979)] = 133650, + [SMALL_STATE(1980)] = 133691, + [SMALL_STATE(1981)] = 133766, + [SMALL_STATE(1982)] = 133821, + [SMALL_STATE(1983)] = 133876, + [SMALL_STATE(1984)] = 133935, + [SMALL_STATE(1985)] = 134002, + [SMALL_STATE(1986)] = 134067, + [SMALL_STATE(1987)] = 134130, + [SMALL_STATE(1988)] = 134191, + [SMALL_STATE(1989)] = 134266, + [SMALL_STATE(1990)] = 134341, + [SMALL_STATE(1991)] = 134386, + [SMALL_STATE(1992)] = 134443, + [SMALL_STATE(1993)] = 134518, + [SMALL_STATE(1994)] = 134569, + [SMALL_STATE(1995)] = 134624, + [SMALL_STATE(1996)] = 134681, + [SMALL_STATE(1997)] = 134726, + [SMALL_STATE(1998)] = 134769, + [SMALL_STATE(1999)] = 134810, + [SMALL_STATE(2000)] = 134855, + [SMALL_STATE(2001)] = 134900, + [SMALL_STATE(2002)] = 134945, + [SMALL_STATE(2003)] = 134986, + [SMALL_STATE(2004)] = 135027, + [SMALL_STATE(2005)] = 135072, + [SMALL_STATE(2006)] = 135113, + [SMALL_STATE(2007)] = 135154, + [SMALL_STATE(2008)] = 135195, + [SMALL_STATE(2009)] = 135236, + [SMALL_STATE(2010)] = 135277, + [SMALL_STATE(2011)] = 135318, + [SMALL_STATE(2012)] = 135359, + [SMALL_STATE(2013)] = 135400, + [SMALL_STATE(2014)] = 135441, + [SMALL_STATE(2015)] = 135482, + [SMALL_STATE(2016)] = 135523, + [SMALL_STATE(2017)] = 135564, + [SMALL_STATE(2018)] = 135605, + [SMALL_STATE(2019)] = 135646, + [SMALL_STATE(2020)] = 135687, + [SMALL_STATE(2021)] = 135728, + [SMALL_STATE(2022)] = 135769, + [SMALL_STATE(2023)] = 135810, + [SMALL_STATE(2024)] = 135851, + [SMALL_STATE(2025)] = 135892, + [SMALL_STATE(2026)] = 135933, + [SMALL_STATE(2027)] = 135974, + [SMALL_STATE(2028)] = 136015, + [SMALL_STATE(2029)] = 136056, + [SMALL_STATE(2030)] = 136097, + [SMALL_STATE(2031)] = 136138, + [SMALL_STATE(2032)] = 136179, + [SMALL_STATE(2033)] = 136220, + [SMALL_STATE(2034)] = 136261, + [SMALL_STATE(2035)] = 136336, + [SMALL_STATE(2036)] = 136391, + [SMALL_STATE(2037)] = 136432, + [SMALL_STATE(2038)] = 136473, + [SMALL_STATE(2039)] = 136514, + [SMALL_STATE(2040)] = 136563, + [SMALL_STATE(2041)] = 136604, + [SMALL_STATE(2042)] = 136651, + [SMALL_STATE(2043)] = 136692, + [SMALL_STATE(2044)] = 136733, + [SMALL_STATE(2045)] = 136774, + [SMALL_STATE(2046)] = 136815, + [SMALL_STATE(2047)] = 136856, + [SMALL_STATE(2048)] = 136897, + [SMALL_STATE(2049)] = 136944, + [SMALL_STATE(2050)] = 136985, + [SMALL_STATE(2051)] = 137026, + [SMALL_STATE(2052)] = 137071, + [SMALL_STATE(2053)] = 137116, + [SMALL_STATE(2054)] = 137161, + [SMALL_STATE(2055)] = 137214, + [SMALL_STATE(2056)] = 137271, + [SMALL_STATE(2057)] = 137316, + [SMALL_STATE(2058)] = 137358, + [SMALL_STATE(2059)] = 137398, + [SMALL_STATE(2060)] = 137440, + [SMALL_STATE(2061)] = 137482, + [SMALL_STATE(2062)] = 137524, + [SMALL_STATE(2063)] = 137566, + [SMALL_STATE(2064)] = 137608, + [SMALL_STATE(2065)] = 137652, + [SMALL_STATE(2066)] = 137702, + [SMALL_STATE(2067)] = 137745, + [SMALL_STATE(2068)] = 137782, + [SMALL_STATE(2069)] = 137838, + [SMALL_STATE(2070)] = 137894, + [SMALL_STATE(2071)] = 137950, + [SMALL_STATE(2072)] = 138006, + [SMALL_STATE(2073)] = 138062, + [SMALL_STATE(2074)] = 138118, + [SMALL_STATE(2075)] = 138174, + [SMALL_STATE(2076)] = 138230, + [SMALL_STATE(2077)] = 138286, + [SMALL_STATE(2078)] = 138342, + [SMALL_STATE(2079)] = 138398, + [SMALL_STATE(2080)] = 138454, + [SMALL_STATE(2081)] = 138510, + [SMALL_STATE(2082)] = 138566, + [SMALL_STATE(2083)] = 138622, + [SMALL_STATE(2084)] = 138678, + [SMALL_STATE(2085)] = 138734, + [SMALL_STATE(2086)] = 138790, + [SMALL_STATE(2087)] = 138846, + [SMALL_STATE(2088)] = 138902, + [SMALL_STATE(2089)] = 138958, + [SMALL_STATE(2090)] = 139014, + [SMALL_STATE(2091)] = 139070, + [SMALL_STATE(2092)] = 139126, + [SMALL_STATE(2093)] = 139182, + [SMALL_STATE(2094)] = 139238, + [SMALL_STATE(2095)] = 139294, + [SMALL_STATE(2096)] = 139350, + [SMALL_STATE(2097)] = 139406, + [SMALL_STATE(2098)] = 139462, + [SMALL_STATE(2099)] = 139518, + [SMALL_STATE(2100)] = 139552, + [SMALL_STATE(2101)] = 139608, + [SMALL_STATE(2102)] = 139664, + [SMALL_STATE(2103)] = 139720, + [SMALL_STATE(2104)] = 139776, + [SMALL_STATE(2105)] = 139832, + [SMALL_STATE(2106)] = 139888, + [SMALL_STATE(2107)] = 139944, + [SMALL_STATE(2108)] = 140000, + [SMALL_STATE(2109)] = 140056, + [SMALL_STATE(2110)] = 140112, + [SMALL_STATE(2111)] = 140168, + [SMALL_STATE(2112)] = 140224, + [SMALL_STATE(2113)] = 140280, + [SMALL_STATE(2114)] = 140336, + [SMALL_STATE(2115)] = 140392, + [SMALL_STATE(2116)] = 140448, + [SMALL_STATE(2117)] = 140504, + [SMALL_STATE(2118)] = 140560, + [SMALL_STATE(2119)] = 140616, + [SMALL_STATE(2120)] = 140672, + [SMALL_STATE(2121)] = 140728, + [SMALL_STATE(2122)] = 140781, [SMALL_STATE(2123)] = 140834, [SMALL_STATE(2124)] = 140887, [SMALL_STATE(2125)] = 140940, - [SMALL_STATE(2126)] = 140995, - [SMALL_STATE(2127)] = 141048, - [SMALL_STATE(2128)] = 141101, - [SMALL_STATE(2129)] = 141154, - [SMALL_STATE(2130)] = 141209, - [SMALL_STATE(2131)] = 141252, - [SMALL_STATE(2132)] = 141305, - [SMALL_STATE(2133)] = 141358, - [SMALL_STATE(2134)] = 141411, - [SMALL_STATE(2135)] = 141464, - [SMALL_STATE(2136)] = 141517, - [SMALL_STATE(2137)] = 141572, - [SMALL_STATE(2138)] = 141627, - [SMALL_STATE(2139)] = 141680, - [SMALL_STATE(2140)] = 141733, - [SMALL_STATE(2141)] = 141786, - [SMALL_STATE(2142)] = 141839, - [SMALL_STATE(2143)] = 141892, - [SMALL_STATE(2144)] = 141945, - [SMALL_STATE(2145)] = 141998, - [SMALL_STATE(2146)] = 142051, - [SMALL_STATE(2147)] = 142104, - [SMALL_STATE(2148)] = 142157, - [SMALL_STATE(2149)] = 142210, - [SMALL_STATE(2150)] = 142263, - [SMALL_STATE(2151)] = 142316, - [SMALL_STATE(2152)] = 142369, - [SMALL_STATE(2153)] = 142412, - [SMALL_STATE(2154)] = 142465, - [SMALL_STATE(2155)] = 142518, - [SMALL_STATE(2156)] = 142571, - [SMALL_STATE(2157)] = 142624, - [SMALL_STATE(2158)] = 142679, - [SMALL_STATE(2159)] = 142732, - [SMALL_STATE(2160)] = 142785, - [SMALL_STATE(2161)] = 142838, - [SMALL_STATE(2162)] = 142893, - [SMALL_STATE(2163)] = 142946, - [SMALL_STATE(2164)] = 142999, - [SMALL_STATE(2165)] = 143052, - [SMALL_STATE(2166)] = 143107, - [SMALL_STATE(2167)] = 143160, - [SMALL_STATE(2168)] = 143213, - [SMALL_STATE(2169)] = 143266, - [SMALL_STATE(2170)] = 143319, - [SMALL_STATE(2171)] = 143372, - [SMALL_STATE(2172)] = 143425, - [SMALL_STATE(2173)] = 143478, - [SMALL_STATE(2174)] = 143531, - [SMALL_STATE(2175)] = 143584, - [SMALL_STATE(2176)] = 143637, - [SMALL_STATE(2177)] = 143690, - [SMALL_STATE(2178)] = 143743, - [SMALL_STATE(2179)] = 143796, - [SMALL_STATE(2180)] = 143849, - [SMALL_STATE(2181)] = 143902, - [SMALL_STATE(2182)] = 143955, - [SMALL_STATE(2183)] = 144010, - [SMALL_STATE(2184)] = 144063, - [SMALL_STATE(2185)] = 144116, - [SMALL_STATE(2186)] = 144159, - [SMALL_STATE(2187)] = 144212, - [SMALL_STATE(2188)] = 144265, - [SMALL_STATE(2189)] = 144318, - [SMALL_STATE(2190)] = 144371, - [SMALL_STATE(2191)] = 144424, - [SMALL_STATE(2192)] = 144479, - [SMALL_STATE(2193)] = 144532, - [SMALL_STATE(2194)] = 144585, - [SMALL_STATE(2195)] = 144638, - [SMALL_STATE(2196)] = 144691, - [SMALL_STATE(2197)] = 144744, + [SMALL_STATE(2126)] = 140993, + [SMALL_STATE(2127)] = 141046, + [SMALL_STATE(2128)] = 141099, + [SMALL_STATE(2129)] = 141152, + [SMALL_STATE(2130)] = 141205, + [SMALL_STATE(2131)] = 141258, + [SMALL_STATE(2132)] = 141311, + [SMALL_STATE(2133)] = 141364, + [SMALL_STATE(2134)] = 141417, + [SMALL_STATE(2135)] = 141470, + [SMALL_STATE(2136)] = 141525, + [SMALL_STATE(2137)] = 141578, + [SMALL_STATE(2138)] = 141631, + [SMALL_STATE(2139)] = 141684, + [SMALL_STATE(2140)] = 141737, + [SMALL_STATE(2141)] = 141790, + [SMALL_STATE(2142)] = 141843, + [SMALL_STATE(2143)] = 141898, + [SMALL_STATE(2144)] = 141951, + [SMALL_STATE(2145)] = 142006, + [SMALL_STATE(2146)] = 142059, + [SMALL_STATE(2147)] = 142112, + [SMALL_STATE(2148)] = 142165, + [SMALL_STATE(2149)] = 142208, + [SMALL_STATE(2150)] = 142251, + [SMALL_STATE(2151)] = 142304, + [SMALL_STATE(2152)] = 142347, + [SMALL_STATE(2153)] = 142400, + [SMALL_STATE(2154)] = 142453, + [SMALL_STATE(2155)] = 142506, + [SMALL_STATE(2156)] = 142559, + [SMALL_STATE(2157)] = 142612, + [SMALL_STATE(2158)] = 142665, + [SMALL_STATE(2159)] = 142718, + [SMALL_STATE(2160)] = 142771, + [SMALL_STATE(2161)] = 142824, + [SMALL_STATE(2162)] = 142877, + [SMALL_STATE(2163)] = 142930, + [SMALL_STATE(2164)] = 142983, + [SMALL_STATE(2165)] = 143036, + [SMALL_STATE(2166)] = 143089, + [SMALL_STATE(2167)] = 143142, + [SMALL_STATE(2168)] = 143195, + [SMALL_STATE(2169)] = 143248, + [SMALL_STATE(2170)] = 143301, + [SMALL_STATE(2171)] = 143354, + [SMALL_STATE(2172)] = 143407, + [SMALL_STATE(2173)] = 143460, + [SMALL_STATE(2174)] = 143513, + [SMALL_STATE(2175)] = 143566, + [SMALL_STATE(2176)] = 143619, + [SMALL_STATE(2177)] = 143674, + [SMALL_STATE(2178)] = 143727, + [SMALL_STATE(2179)] = 143780, + [SMALL_STATE(2180)] = 143835, + [SMALL_STATE(2181)] = 143888, + [SMALL_STATE(2182)] = 143941, + [SMALL_STATE(2183)] = 143986, + [SMALL_STATE(2184)] = 144039, + [SMALL_STATE(2185)] = 144092, + [SMALL_STATE(2186)] = 144145, + [SMALL_STATE(2187)] = 144200, + [SMALL_STATE(2188)] = 144255, + [SMALL_STATE(2189)] = 144308, + [SMALL_STATE(2190)] = 144361, + [SMALL_STATE(2191)] = 144414, + [SMALL_STATE(2192)] = 144467, + [SMALL_STATE(2193)] = 144522, + [SMALL_STATE(2194)] = 144575, + [SMALL_STATE(2195)] = 144630, + [SMALL_STATE(2196)] = 144683, + [SMALL_STATE(2197)] = 144736, [SMALL_STATE(2198)] = 144789, [SMALL_STATE(2199)] = 144842, [SMALL_STATE(2200)] = 144895, @@ -164316,1091 +165403,1113 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2208)] = 145319, [SMALL_STATE(2209)] = 145372, [SMALL_STATE(2210)] = 145425, - [SMALL_STATE(2211)] = 145478, - [SMALL_STATE(2212)] = 145531, - [SMALL_STATE(2213)] = 145584, - [SMALL_STATE(2214)] = 145637, - [SMALL_STATE(2215)] = 145678, - [SMALL_STATE(2216)] = 145719, - [SMALL_STATE(2217)] = 145760, - [SMALL_STATE(2218)] = 145801, - [SMALL_STATE(2219)] = 145839, - [SMALL_STATE(2220)] = 145877, - [SMALL_STATE(2221)] = 145915, - [SMALL_STATE(2222)] = 145953, - [SMALL_STATE(2223)] = 145990, - [SMALL_STATE(2224)] = 146027, - [SMALL_STATE(2225)] = 146064, - [SMALL_STATE(2226)] = 146101, - [SMALL_STATE(2227)] = 146138, - [SMALL_STATE(2228)] = 146175, - [SMALL_STATE(2229)] = 146212, - [SMALL_STATE(2230)] = 146249, - [SMALL_STATE(2231)] = 146286, - [SMALL_STATE(2232)] = 146323, - [SMALL_STATE(2233)] = 146360, - [SMALL_STATE(2234)] = 146397, - [SMALL_STATE(2235)] = 146433, - [SMALL_STATE(2236)] = 146485, - [SMALL_STATE(2237)] = 146521, - [SMALL_STATE(2238)] = 146557, - [SMALL_STATE(2239)] = 146609, - [SMALL_STATE(2240)] = 146645, - [SMALL_STATE(2241)] = 146697, - [SMALL_STATE(2242)] = 146748, - [SMALL_STATE(2243)] = 146799, - [SMALL_STATE(2244)] = 146850, - [SMALL_STATE(2245)] = 146899, - [SMALL_STATE(2246)] = 146950, - [SMALL_STATE(2247)] = 147001, - [SMALL_STATE(2248)] = 147052, - [SMALL_STATE(2249)] = 147103, - [SMALL_STATE(2250)] = 147154, - [SMALL_STATE(2251)] = 147203, - [SMALL_STATE(2252)] = 147254, - [SMALL_STATE(2253)] = 147302, - [SMALL_STATE(2254)] = 147350, - [SMALL_STATE(2255)] = 147384, - [SMALL_STATE(2256)] = 147432, - [SMALL_STATE(2257)] = 147466, - [SMALL_STATE(2258)] = 147500, - [SMALL_STATE(2259)] = 147534, - [SMALL_STATE(2260)] = 147582, - [SMALL_STATE(2261)] = 147628, - [SMALL_STATE(2262)] = 147661, - [SMALL_STATE(2263)] = 147690, - [SMALL_STATE(2264)] = 147735, - [SMALL_STATE(2265)] = 147762, - [SMALL_STATE(2266)] = 147789, - [SMALL_STATE(2267)] = 147816, - [SMALL_STATE(2268)] = 147853, - [SMALL_STATE(2269)] = 147898, - [SMALL_STATE(2270)] = 147944, - [SMALL_STATE(2271)] = 147990, - [SMALL_STATE(2272)] = 148036, - [SMALL_STATE(2273)] = 148082, - [SMALL_STATE(2274)] = 148128, - [SMALL_STATE(2275)] = 148174, - [SMALL_STATE(2276)] = 148212, - [SMALL_STATE(2277)] = 148250, - [SMALL_STATE(2278)] = 148296, - [SMALL_STATE(2279)] = 148342, - [SMALL_STATE(2280)] = 148388, - [SMALL_STATE(2281)] = 148413, - [SMALL_STATE(2282)] = 148444, - [SMALL_STATE(2283)] = 148469, - [SMALL_STATE(2284)] = 148494, - [SMALL_STATE(2285)] = 148529, - [SMALL_STATE(2286)] = 148553, - [SMALL_STATE(2287)] = 148585, - [SMALL_STATE(2288)] = 148625, - [SMALL_STATE(2289)] = 148665, - [SMALL_STATE(2290)] = 148701, - [SMALL_STATE(2291)] = 148741, - [SMALL_STATE(2292)] = 148781, - [SMALL_STATE(2293)] = 148817, - [SMALL_STATE(2294)] = 148853, - [SMALL_STATE(2295)] = 148893, - [SMALL_STATE(2296)] = 148929, - [SMALL_STATE(2297)] = 148953, - [SMALL_STATE(2298)] = 148989, - [SMALL_STATE(2299)] = 149023, - [SMALL_STATE(2300)] = 149059, - [SMALL_STATE(2301)] = 149085, - [SMALL_STATE(2302)] = 149121, - [SMALL_STATE(2303)] = 149145, - [SMALL_STATE(2304)] = 149181, - [SMALL_STATE(2305)] = 149211, - [SMALL_STATE(2306)] = 149251, - [SMALL_STATE(2307)] = 149287, - [SMALL_STATE(2308)] = 149319, - [SMALL_STATE(2309)] = 149359, - [SMALL_STATE(2310)] = 149399, - [SMALL_STATE(2311)] = 149439, - [SMALL_STATE(2312)] = 149476, - [SMALL_STATE(2313)] = 149499, - [SMALL_STATE(2314)] = 149536, - [SMALL_STATE(2315)] = 149567, - [SMALL_STATE(2316)] = 149600, - [SMALL_STATE(2317)] = 149631, - [SMALL_STATE(2318)] = 149654, - [SMALL_STATE(2319)] = 149685, - [SMALL_STATE(2320)] = 149716, - [SMALL_STATE(2321)] = 149747, - [SMALL_STATE(2322)] = 149780, - [SMALL_STATE(2323)] = 149811, - [SMALL_STATE(2324)] = 149846, - [SMALL_STATE(2325)] = 149877, - [SMALL_STATE(2326)] = 149912, - [SMALL_STATE(2327)] = 149937, - [SMALL_STATE(2328)] = 149974, - [SMALL_STATE(2329)] = 150005, - [SMALL_STATE(2330)] = 150036, - [SMALL_STATE(2331)] = 150067, - [SMALL_STATE(2332)] = 150098, - [SMALL_STATE(2333)] = 150123, - [SMALL_STATE(2334)] = 150156, - [SMALL_STATE(2335)] = 150181, - [SMALL_STATE(2336)] = 150212, - [SMALL_STATE(2337)] = 150243, - [SMALL_STATE(2338)] = 150274, - [SMALL_STATE(2339)] = 150309, - [SMALL_STATE(2340)] = 150346, - [SMALL_STATE(2341)] = 150377, - [SMALL_STATE(2342)] = 150412, - [SMALL_STATE(2343)] = 150449, - [SMALL_STATE(2344)] = 150484, - [SMALL_STATE(2345)] = 150515, - [SMALL_STATE(2346)] = 150548, - [SMALL_STATE(2347)] = 150579, - [SMALL_STATE(2348)] = 150614, - [SMALL_STATE(2349)] = 150637, - [SMALL_STATE(2350)] = 150670, - [SMALL_STATE(2351)] = 150707, - [SMALL_STATE(2352)] = 150744, - [SMALL_STATE(2353)] = 150775, - [SMALL_STATE(2354)] = 150808, - [SMALL_STATE(2355)] = 150837, - [SMALL_STATE(2356)] = 150874, - [SMALL_STATE(2357)] = 150907, - [SMALL_STATE(2358)] = 150940, - [SMALL_STATE(2359)] = 150973, - [SMALL_STATE(2360)] = 151010, - [SMALL_STATE(2361)] = 151039, - [SMALL_STATE(2362)] = 151062, - [SMALL_STATE(2363)] = 151085, - [SMALL_STATE(2364)] = 151122, - [SMALL_STATE(2365)] = 151145, - [SMALL_STATE(2366)] = 151176, - [SMALL_STATE(2367)] = 151204, - [SMALL_STATE(2368)] = 151236, - [SMALL_STATE(2369)] = 151270, - [SMALL_STATE(2370)] = 151298, - [SMALL_STATE(2371)] = 151328, - [SMALL_STATE(2372)] = 151356, - [SMALL_STATE(2373)] = 151390, - [SMALL_STATE(2374)] = 151412, - [SMALL_STATE(2375)] = 151446, - [SMALL_STATE(2376)] = 151474, - [SMALL_STATE(2377)] = 151508, - [SMALL_STATE(2378)] = 151542, - [SMALL_STATE(2379)] = 151576, - [SMALL_STATE(2380)] = 151606, - [SMALL_STATE(2381)] = 151640, - [SMALL_STATE(2382)] = 151672, - [SMALL_STATE(2383)] = 151706, - [SMALL_STATE(2384)] = 151740, - [SMALL_STATE(2385)] = 151772, - [SMALL_STATE(2386)] = 151800, - [SMALL_STATE(2387)] = 151828, - [SMALL_STATE(2388)] = 151856, - [SMALL_STATE(2389)] = 151884, - [SMALL_STATE(2390)] = 151916, - [SMALL_STATE(2391)] = 151944, - [SMALL_STATE(2392)] = 151976, - [SMALL_STATE(2393)] = 152004, - [SMALL_STATE(2394)] = 152032, - [SMALL_STATE(2395)] = 152066, - [SMALL_STATE(2396)] = 152098, - [SMALL_STATE(2397)] = 152132, - [SMALL_STATE(2398)] = 152160, - [SMALL_STATE(2399)] = 152188, - [SMALL_STATE(2400)] = 152222, - [SMALL_STATE(2401)] = 152254, - [SMALL_STATE(2402)] = 152286, - [SMALL_STATE(2403)] = 152320, - [SMALL_STATE(2404)] = 152352, - [SMALL_STATE(2405)] = 152380, - [SMALL_STATE(2406)] = 152412, - [SMALL_STATE(2407)] = 152444, - [SMALL_STATE(2408)] = 152476, - [SMALL_STATE(2409)] = 152510, - [SMALL_STATE(2410)] = 152542, - [SMALL_STATE(2411)] = 152576, - [SMALL_STATE(2412)] = 152604, - [SMALL_STATE(2413)] = 152638, - [SMALL_STATE(2414)] = 152666, - [SMALL_STATE(2415)] = 152700, - [SMALL_STATE(2416)] = 152732, - [SMALL_STATE(2417)] = 152754, - [SMALL_STATE(2418)] = 152788, - [SMALL_STATE(2419)] = 152816, - [SMALL_STATE(2420)] = 152850, - [SMALL_STATE(2421)] = 152882, - [SMALL_STATE(2422)] = 152916, - [SMALL_STATE(2423)] = 152948, - [SMALL_STATE(2424)] = 152976, - [SMALL_STATE(2425)] = 153004, - [SMALL_STATE(2426)] = 153026, - [SMALL_STATE(2427)] = 153054, - [SMALL_STATE(2428)] = 153086, - [SMALL_STATE(2429)] = 153120, - [SMALL_STATE(2430)] = 153152, - [SMALL_STATE(2431)] = 153183, - [SMALL_STATE(2432)] = 153214, - [SMALL_STATE(2433)] = 153245, - [SMALL_STATE(2434)] = 153276, - [SMALL_STATE(2435)] = 153307, - [SMALL_STATE(2436)] = 153332, - [SMALL_STATE(2437)] = 153363, - [SMALL_STATE(2438)] = 153394, - [SMALL_STATE(2439)] = 153425, - [SMALL_STATE(2440)] = 153456, - [SMALL_STATE(2441)] = 153487, - [SMALL_STATE(2442)] = 153518, - [SMALL_STATE(2443)] = 153543, - [SMALL_STATE(2444)] = 153574, - [SMALL_STATE(2445)] = 153605, - [SMALL_STATE(2446)] = 153636, - [SMALL_STATE(2447)] = 153667, - [SMALL_STATE(2448)] = 153698, - [SMALL_STATE(2449)] = 153729, - [SMALL_STATE(2450)] = 153760, - [SMALL_STATE(2451)] = 153791, - [SMALL_STATE(2452)] = 153822, - [SMALL_STATE(2453)] = 153853, - [SMALL_STATE(2454)] = 153878, - [SMALL_STATE(2455)] = 153909, - [SMALL_STATE(2456)] = 153940, - [SMALL_STATE(2457)] = 153971, - [SMALL_STATE(2458)] = 154002, - [SMALL_STATE(2459)] = 154027, - [SMALL_STATE(2460)] = 154058, - [SMALL_STATE(2461)] = 154089, - [SMALL_STATE(2462)] = 154120, - [SMALL_STATE(2463)] = 154151, - [SMALL_STATE(2464)] = 154182, - [SMALL_STATE(2465)] = 154213, - [SMALL_STATE(2466)] = 154244, - [SMALL_STATE(2467)] = 154275, - [SMALL_STATE(2468)] = 154306, - [SMALL_STATE(2469)] = 154337, - [SMALL_STATE(2470)] = 154368, - [SMALL_STATE(2471)] = 154393, - [SMALL_STATE(2472)] = 154424, - [SMALL_STATE(2473)] = 154455, - [SMALL_STATE(2474)] = 154486, - [SMALL_STATE(2475)] = 154517, - [SMALL_STATE(2476)] = 154542, - [SMALL_STATE(2477)] = 154573, - [SMALL_STATE(2478)] = 154604, - [SMALL_STATE(2479)] = 154629, - [SMALL_STATE(2480)] = 154660, - [SMALL_STATE(2481)] = 154685, - [SMALL_STATE(2482)] = 154716, - [SMALL_STATE(2483)] = 154747, - [SMALL_STATE(2484)] = 154772, - [SMALL_STATE(2485)] = 154797, - [SMALL_STATE(2486)] = 154828, - [SMALL_STATE(2487)] = 154859, - [SMALL_STATE(2488)] = 154884, - [SMALL_STATE(2489)] = 154915, - [SMALL_STATE(2490)] = 154946, - [SMALL_STATE(2491)] = 154971, - [SMALL_STATE(2492)] = 155002, - [SMALL_STATE(2493)] = 155027, - [SMALL_STATE(2494)] = 155058, - [SMALL_STATE(2495)] = 155089, - [SMALL_STATE(2496)] = 155120, - [SMALL_STATE(2497)] = 155151, - [SMALL_STATE(2498)] = 155182, - [SMALL_STATE(2499)] = 155207, - [SMALL_STATE(2500)] = 155238, - [SMALL_STATE(2501)] = 155269, - [SMALL_STATE(2502)] = 155294, - [SMALL_STATE(2503)] = 155319, - [SMALL_STATE(2504)] = 155350, - [SMALL_STATE(2505)] = 155375, - [SMALL_STATE(2506)] = 155406, - [SMALL_STATE(2507)] = 155437, - [SMALL_STATE(2508)] = 155462, - [SMALL_STATE(2509)] = 155493, - [SMALL_STATE(2510)] = 155524, - [SMALL_STATE(2511)] = 155555, - [SMALL_STATE(2512)] = 155586, - [SMALL_STATE(2513)] = 155617, - [SMALL_STATE(2514)] = 155648, - [SMALL_STATE(2515)] = 155673, - [SMALL_STATE(2516)] = 155704, - [SMALL_STATE(2517)] = 155735, - [SMALL_STATE(2518)] = 155766, - [SMALL_STATE(2519)] = 155797, - [SMALL_STATE(2520)] = 155828, - [SMALL_STATE(2521)] = 155859, - [SMALL_STATE(2522)] = 155884, - [SMALL_STATE(2523)] = 155915, - [SMALL_STATE(2524)] = 155946, - [SMALL_STATE(2525)] = 155977, - [SMALL_STATE(2526)] = 156002, - [SMALL_STATE(2527)] = 156033, - [SMALL_STATE(2528)] = 156064, - [SMALL_STATE(2529)] = 156095, - [SMALL_STATE(2530)] = 156126, - [SMALL_STATE(2531)] = 156157, - [SMALL_STATE(2532)] = 156182, - [SMALL_STATE(2533)] = 156213, - [SMALL_STATE(2534)] = 156244, - [SMALL_STATE(2535)] = 156275, - [SMALL_STATE(2536)] = 156306, - [SMALL_STATE(2537)] = 156337, - [SMALL_STATE(2538)] = 156368, - [SMALL_STATE(2539)] = 156399, - [SMALL_STATE(2540)] = 156430, - [SMALL_STATE(2541)] = 156461, - [SMALL_STATE(2542)] = 156492, - [SMALL_STATE(2543)] = 156523, - [SMALL_STATE(2544)] = 156554, - [SMALL_STATE(2545)] = 156582, - [SMALL_STATE(2546)] = 156602, - [SMALL_STATE(2547)] = 156622, - [SMALL_STATE(2548)] = 156650, - [SMALL_STATE(2549)] = 156678, - [SMALL_STATE(2550)] = 156706, - [SMALL_STATE(2551)] = 156726, - [SMALL_STATE(2552)] = 156754, - [SMALL_STATE(2553)] = 156774, - [SMALL_STATE(2554)] = 156802, - [SMALL_STATE(2555)] = 156830, - [SMALL_STATE(2556)] = 156850, - [SMALL_STATE(2557)] = 156870, - [SMALL_STATE(2558)] = 156898, - [SMALL_STATE(2559)] = 156918, - [SMALL_STATE(2560)] = 156946, - [SMALL_STATE(2561)] = 156974, - [SMALL_STATE(2562)] = 157002, - [SMALL_STATE(2563)] = 157028, - [SMALL_STATE(2564)] = 157056, - [SMALL_STATE(2565)] = 157084, - [SMALL_STATE(2566)] = 157112, - [SMALL_STATE(2567)] = 157132, - [SMALL_STATE(2568)] = 157152, - [SMALL_STATE(2569)] = 157172, - [SMALL_STATE(2570)] = 157192, - [SMALL_STATE(2571)] = 157212, - [SMALL_STATE(2572)] = 157238, - [SMALL_STATE(2573)] = 157258, - [SMALL_STATE(2574)] = 157281, - [SMALL_STATE(2575)] = 157304, - [SMALL_STATE(2576)] = 157327, - [SMALL_STATE(2577)] = 157350, - [SMALL_STATE(2578)] = 157373, - [SMALL_STATE(2579)] = 157396, - [SMALL_STATE(2580)] = 157419, - [SMALL_STATE(2581)] = 157442, - [SMALL_STATE(2582)] = 157465, - [SMALL_STATE(2583)] = 157488, - [SMALL_STATE(2584)] = 157511, - [SMALL_STATE(2585)] = 157534, - [SMALL_STATE(2586)] = 157557, - [SMALL_STATE(2587)] = 157580, - [SMALL_STATE(2588)] = 157603, - [SMALL_STATE(2589)] = 157624, - [SMALL_STATE(2590)] = 157647, - [SMALL_STATE(2591)] = 157668, - [SMALL_STATE(2592)] = 157691, - [SMALL_STATE(2593)] = 157714, - [SMALL_STATE(2594)] = 157737, - [SMALL_STATE(2595)] = 157755, - [SMALL_STATE(2596)] = 157773, - [SMALL_STATE(2597)] = 157787, - [SMALL_STATE(2598)] = 157807, - [SMALL_STATE(2599)] = 157827, - [SMALL_STATE(2600)] = 157845, - [SMALL_STATE(2601)] = 157871, - [SMALL_STATE(2602)] = 157888, - [SMALL_STATE(2603)] = 157911, - [SMALL_STATE(2604)] = 157930, - [SMALL_STATE(2605)] = 157945, - [SMALL_STATE(2606)] = 157964, - [SMALL_STATE(2607)] = 157983, - [SMALL_STATE(2608)] = 157998, - [SMALL_STATE(2609)] = 158017, - [SMALL_STATE(2610)] = 158036, - [SMALL_STATE(2611)] = 158055, - [SMALL_STATE(2612)] = 158072, - [SMALL_STATE(2613)] = 158091, - [SMALL_STATE(2614)] = 158108, - [SMALL_STATE(2615)] = 158127, - [SMALL_STATE(2616)] = 158146, - [SMALL_STATE(2617)] = 158161, - [SMALL_STATE(2618)] = 158180, - [SMALL_STATE(2619)] = 158197, - [SMALL_STATE(2620)] = 158214, - [SMALL_STATE(2621)] = 158233, - [SMALL_STATE(2622)] = 158256, - [SMALL_STATE(2623)] = 158275, - [SMALL_STATE(2624)] = 158292, - [SMALL_STATE(2625)] = 158315, - [SMALL_STATE(2626)] = 158338, - [SMALL_STATE(2627)] = 158355, - [SMALL_STATE(2628)] = 158370, - [SMALL_STATE(2629)] = 158393, - [SMALL_STATE(2630)] = 158412, - [SMALL_STATE(2631)] = 158427, - [SMALL_STATE(2632)] = 158442, - [SMALL_STATE(2633)] = 158459, - [SMALL_STATE(2634)] = 158474, - [SMALL_STATE(2635)] = 158493, - [SMALL_STATE(2636)] = 158508, - [SMALL_STATE(2637)] = 158527, - [SMALL_STATE(2638)] = 158550, - [SMALL_STATE(2639)] = 158567, - [SMALL_STATE(2640)] = 158586, - [SMALL_STATE(2641)] = 158605, - [SMALL_STATE(2642)] = 158622, - [SMALL_STATE(2643)] = 158639, - [SMALL_STATE(2644)] = 158658, - [SMALL_STATE(2645)] = 158681, - [SMALL_STATE(2646)] = 158698, - [SMALL_STATE(2647)] = 158713, - [SMALL_STATE(2648)] = 158732, - [SMALL_STATE(2649)] = 158755, - [SMALL_STATE(2650)] = 158772, - [SMALL_STATE(2651)] = 158791, - [SMALL_STATE(2652)] = 158810, - [SMALL_STATE(2653)] = 158833, - [SMALL_STATE(2654)] = 158853, - [SMALL_STATE(2655)] = 158867, - [SMALL_STATE(2656)] = 158881, - [SMALL_STATE(2657)] = 158901, - [SMALL_STATE(2658)] = 158921, - [SMALL_STATE(2659)] = 158941, - [SMALL_STATE(2660)] = 158957, - [SMALL_STATE(2661)] = 158977, - [SMALL_STATE(2662)] = 158997, - [SMALL_STATE(2663)] = 159011, - [SMALL_STATE(2664)] = 159027, - [SMALL_STATE(2665)] = 159043, - [SMALL_STATE(2666)] = 159057, - [SMALL_STATE(2667)] = 159077, - [SMALL_STATE(2668)] = 159093, - [SMALL_STATE(2669)] = 159113, - [SMALL_STATE(2670)] = 159129, - [SMALL_STATE(2671)] = 159145, - [SMALL_STATE(2672)] = 159161, - [SMALL_STATE(2673)] = 159181, - [SMALL_STATE(2674)] = 159201, - [SMALL_STATE(2675)] = 159221, - [SMALL_STATE(2676)] = 159235, - [SMALL_STATE(2677)] = 159255, - [SMALL_STATE(2678)] = 159275, - [SMALL_STATE(2679)] = 159295, - [SMALL_STATE(2680)] = 159315, - [SMALL_STATE(2681)] = 159329, - [SMALL_STATE(2682)] = 159345, - [SMALL_STATE(2683)] = 159359, - [SMALL_STATE(2684)] = 159373, - [SMALL_STATE(2685)] = 159386, - [SMALL_STATE(2686)] = 159401, - [SMALL_STATE(2687)] = 159418, - [SMALL_STATE(2688)] = 159435, - [SMALL_STATE(2689)] = 159448, - [SMALL_STATE(2690)] = 159461, - [SMALL_STATE(2691)] = 159474, - [SMALL_STATE(2692)] = 159489, - [SMALL_STATE(2693)] = 159502, - [SMALL_STATE(2694)] = 159519, - [SMALL_STATE(2695)] = 159532, - [SMALL_STATE(2696)] = 159545, - [SMALL_STATE(2697)] = 159562, - [SMALL_STATE(2698)] = 159579, - [SMALL_STATE(2699)] = 159592, - [SMALL_STATE(2700)] = 159605, - [SMALL_STATE(2701)] = 159622, - [SMALL_STATE(2702)] = 159639, - [SMALL_STATE(2703)] = 159656, - [SMALL_STATE(2704)] = 159673, - [SMALL_STATE(2705)] = 159690, - [SMALL_STATE(2706)] = 159703, - [SMALL_STATE(2707)] = 159718, - [SMALL_STATE(2708)] = 159735, - [SMALL_STATE(2709)] = 159752, - [SMALL_STATE(2710)] = 159769, - [SMALL_STATE(2711)] = 159780, - [SMALL_STATE(2712)] = 159797, - [SMALL_STATE(2713)] = 159814, - [SMALL_STATE(2714)] = 159831, - [SMALL_STATE(2715)] = 159848, - [SMALL_STATE(2716)] = 159863, - [SMALL_STATE(2717)] = 159878, - [SMALL_STATE(2718)] = 159895, - [SMALL_STATE(2719)] = 159908, - [SMALL_STATE(2720)] = 159921, - [SMALL_STATE(2721)] = 159934, - [SMALL_STATE(2722)] = 159945, - [SMALL_STATE(2723)] = 159958, - [SMALL_STATE(2724)] = 159973, - [SMALL_STATE(2725)] = 159990, - [SMALL_STATE(2726)] = 160007, - [SMALL_STATE(2727)] = 160024, - [SMALL_STATE(2728)] = 160039, - [SMALL_STATE(2729)] = 160052, - [SMALL_STATE(2730)] = 160069, - [SMALL_STATE(2731)] = 160082, - [SMALL_STATE(2732)] = 160094, - [SMALL_STATE(2733)] = 160108, - [SMALL_STATE(2734)] = 160118, - [SMALL_STATE(2735)] = 160132, - [SMALL_STATE(2736)] = 160146, - [SMALL_STATE(2737)] = 160160, - [SMALL_STATE(2738)] = 160174, - [SMALL_STATE(2739)] = 160188, - [SMALL_STATE(2740)] = 160202, - [SMALL_STATE(2741)] = 160216, - [SMALL_STATE(2742)] = 160230, - [SMALL_STATE(2743)] = 160244, - [SMALL_STATE(2744)] = 160258, - [SMALL_STATE(2745)] = 160272, - [SMALL_STATE(2746)] = 160286, - [SMALL_STATE(2747)] = 160300, - [SMALL_STATE(2748)] = 160314, - [SMALL_STATE(2749)] = 160328, - [SMALL_STATE(2750)] = 160342, - [SMALL_STATE(2751)] = 160356, - [SMALL_STATE(2752)] = 160370, - [SMALL_STATE(2753)] = 160384, - [SMALL_STATE(2754)] = 160398, - [SMALL_STATE(2755)] = 160412, - [SMALL_STATE(2756)] = 160426, - [SMALL_STATE(2757)] = 160436, - [SMALL_STATE(2758)] = 160450, - [SMALL_STATE(2759)] = 160464, - [SMALL_STATE(2760)] = 160478, - [SMALL_STATE(2761)] = 160492, - [SMALL_STATE(2762)] = 160506, - [SMALL_STATE(2763)] = 160520, - [SMALL_STATE(2764)] = 160530, - [SMALL_STATE(2765)] = 160544, - [SMALL_STATE(2766)] = 160558, - [SMALL_STATE(2767)] = 160572, - [SMALL_STATE(2768)] = 160586, - [SMALL_STATE(2769)] = 160600, - [SMALL_STATE(2770)] = 160614, - [SMALL_STATE(2771)] = 160628, - [SMALL_STATE(2772)] = 160642, - [SMALL_STATE(2773)] = 160656, - [SMALL_STATE(2774)] = 160670, - [SMALL_STATE(2775)] = 160684, - [SMALL_STATE(2776)] = 160698, - [SMALL_STATE(2777)] = 160708, - [SMALL_STATE(2778)] = 160722, - [SMALL_STATE(2779)] = 160736, - [SMALL_STATE(2780)] = 160750, - [SMALL_STATE(2781)] = 160764, - [SMALL_STATE(2782)] = 160778, - [SMALL_STATE(2783)] = 160792, - [SMALL_STATE(2784)] = 160806, - [SMALL_STATE(2785)] = 160820, - [SMALL_STATE(2786)] = 160834, - [SMALL_STATE(2787)] = 160848, - [SMALL_STATE(2788)] = 160862, - [SMALL_STATE(2789)] = 160876, - [SMALL_STATE(2790)] = 160890, - [SMALL_STATE(2791)] = 160904, - [SMALL_STATE(2792)] = 160918, - [SMALL_STATE(2793)] = 160932, - [SMALL_STATE(2794)] = 160946, - [SMALL_STATE(2795)] = 160960, - [SMALL_STATE(2796)] = 160974, - [SMALL_STATE(2797)] = 160988, - [SMALL_STATE(2798)] = 161002, - [SMALL_STATE(2799)] = 161016, - [SMALL_STATE(2800)] = 161030, - [SMALL_STATE(2801)] = 161042, - [SMALL_STATE(2802)] = 161054, - [SMALL_STATE(2803)] = 161068, - [SMALL_STATE(2804)] = 161082, - [SMALL_STATE(2805)] = 161096, - [SMALL_STATE(2806)] = 161110, - [SMALL_STATE(2807)] = 161124, - [SMALL_STATE(2808)] = 161138, - [SMALL_STATE(2809)] = 161152, - [SMALL_STATE(2810)] = 161166, - [SMALL_STATE(2811)] = 161178, - [SMALL_STATE(2812)] = 161192, - [SMALL_STATE(2813)] = 161206, - [SMALL_STATE(2814)] = 161220, - [SMALL_STATE(2815)] = 161234, - [SMALL_STATE(2816)] = 161246, - [SMALL_STATE(2817)] = 161260, - [SMALL_STATE(2818)] = 161274, - [SMALL_STATE(2819)] = 161288, - [SMALL_STATE(2820)] = 161302, - [SMALL_STATE(2821)] = 161314, - [SMALL_STATE(2822)] = 161326, - [SMALL_STATE(2823)] = 161338, - [SMALL_STATE(2824)] = 161352, - [SMALL_STATE(2825)] = 161366, - [SMALL_STATE(2826)] = 161380, - [SMALL_STATE(2827)] = 161394, - [SMALL_STATE(2828)] = 161408, - [SMALL_STATE(2829)] = 161420, - [SMALL_STATE(2830)] = 161432, - [SMALL_STATE(2831)] = 161446, - [SMALL_STATE(2832)] = 161460, - [SMALL_STATE(2833)] = 161474, - [SMALL_STATE(2834)] = 161488, - [SMALL_STATE(2835)] = 161502, - [SMALL_STATE(2836)] = 161516, - [SMALL_STATE(2837)] = 161530, - [SMALL_STATE(2838)] = 161544, - [SMALL_STATE(2839)] = 161558, - [SMALL_STATE(2840)] = 161572, - [SMALL_STATE(2841)] = 161586, - [SMALL_STATE(2842)] = 161600, - [SMALL_STATE(2843)] = 161614, - [SMALL_STATE(2844)] = 161628, - [SMALL_STATE(2845)] = 161642, - [SMALL_STATE(2846)] = 161656, - [SMALL_STATE(2847)] = 161670, - [SMALL_STATE(2848)] = 161684, - [SMALL_STATE(2849)] = 161698, - [SMALL_STATE(2850)] = 161710, - [SMALL_STATE(2851)] = 161724, - [SMALL_STATE(2852)] = 161738, - [SMALL_STATE(2853)] = 161752, - [SMALL_STATE(2854)] = 161766, - [SMALL_STATE(2855)] = 161780, - [SMALL_STATE(2856)] = 161794, - [SMALL_STATE(2857)] = 161808, - [SMALL_STATE(2858)] = 161822, - [SMALL_STATE(2859)] = 161832, - [SMALL_STATE(2860)] = 161846, - [SMALL_STATE(2861)] = 161860, - [SMALL_STATE(2862)] = 161874, - [SMALL_STATE(2863)] = 161888, - [SMALL_STATE(2864)] = 161900, - [SMALL_STATE(2865)] = 161912, - [SMALL_STATE(2866)] = 161926, - [SMALL_STATE(2867)] = 161940, - [SMALL_STATE(2868)] = 161954, - [SMALL_STATE(2869)] = 161968, - [SMALL_STATE(2870)] = 161982, - [SMALL_STATE(2871)] = 161996, - [SMALL_STATE(2872)] = 162010, - [SMALL_STATE(2873)] = 162024, - [SMALL_STATE(2874)] = 162038, - [SMALL_STATE(2875)] = 162052, - [SMALL_STATE(2876)] = 162066, - [SMALL_STATE(2877)] = 162080, - [SMALL_STATE(2878)] = 162094, - [SMALL_STATE(2879)] = 162108, - [SMALL_STATE(2880)] = 162122, - [SMALL_STATE(2881)] = 162136, - [SMALL_STATE(2882)] = 162150, - [SMALL_STATE(2883)] = 162162, - [SMALL_STATE(2884)] = 162172, - [SMALL_STATE(2885)] = 162184, - [SMALL_STATE(2886)] = 162198, - [SMALL_STATE(2887)] = 162210, - [SMALL_STATE(2888)] = 162222, - [SMALL_STATE(2889)] = 162234, - [SMALL_STATE(2890)] = 162248, - [SMALL_STATE(2891)] = 162262, - [SMALL_STATE(2892)] = 162274, - [SMALL_STATE(2893)] = 162288, - [SMALL_STATE(2894)] = 162300, - [SMALL_STATE(2895)] = 162314, - [SMALL_STATE(2896)] = 162326, - [SMALL_STATE(2897)] = 162340, - [SMALL_STATE(2898)] = 162354, - [SMALL_STATE(2899)] = 162368, - [SMALL_STATE(2900)] = 162382, - [SMALL_STATE(2901)] = 162394, - [SMALL_STATE(2902)] = 162405, - [SMALL_STATE(2903)] = 162416, - [SMALL_STATE(2904)] = 162427, - [SMALL_STATE(2905)] = 162438, - [SMALL_STATE(2906)] = 162449, - [SMALL_STATE(2907)] = 162458, - [SMALL_STATE(2908)] = 162467, - [SMALL_STATE(2909)] = 162478, - [SMALL_STATE(2910)] = 162489, - [SMALL_STATE(2911)] = 162500, - [SMALL_STATE(2912)] = 162511, - [SMALL_STATE(2913)] = 162522, - [SMALL_STATE(2914)] = 162533, - [SMALL_STATE(2915)] = 162544, - [SMALL_STATE(2916)] = 162555, - [SMALL_STATE(2917)] = 162566, - [SMALL_STATE(2918)] = 162577, - [SMALL_STATE(2919)] = 162588, - [SMALL_STATE(2920)] = 162599, - [SMALL_STATE(2921)] = 162610, - [SMALL_STATE(2922)] = 162621, - [SMALL_STATE(2923)] = 162632, - [SMALL_STATE(2924)] = 162643, - [SMALL_STATE(2925)] = 162654, - [SMALL_STATE(2926)] = 162665, - [SMALL_STATE(2927)] = 162676, - [SMALL_STATE(2928)] = 162687, - [SMALL_STATE(2929)] = 162698, - [SMALL_STATE(2930)] = 162709, - [SMALL_STATE(2931)] = 162718, - [SMALL_STATE(2932)] = 162729, - [SMALL_STATE(2933)] = 162740, - [SMALL_STATE(2934)] = 162751, - [SMALL_STATE(2935)] = 162762, - [SMALL_STATE(2936)] = 162773, - [SMALL_STATE(2937)] = 162784, - [SMALL_STATE(2938)] = 162795, - [SMALL_STATE(2939)] = 162806, - [SMALL_STATE(2940)] = 162817, - [SMALL_STATE(2941)] = 162828, - [SMALL_STATE(2942)] = 162839, - [SMALL_STATE(2943)] = 162850, - [SMALL_STATE(2944)] = 162861, - [SMALL_STATE(2945)] = 162872, - [SMALL_STATE(2946)] = 162883, - [SMALL_STATE(2947)] = 162892, - [SMALL_STATE(2948)] = 162903, - [SMALL_STATE(2949)] = 162914, - [SMALL_STATE(2950)] = 162925, - [SMALL_STATE(2951)] = 162936, - [SMALL_STATE(2952)] = 162947, - [SMALL_STATE(2953)] = 162956, - [SMALL_STATE(2954)] = 162967, - [SMALL_STATE(2955)] = 162978, - [SMALL_STATE(2956)] = 162989, - [SMALL_STATE(2957)] = 163000, - [SMALL_STATE(2958)] = 163011, - [SMALL_STATE(2959)] = 163022, - [SMALL_STATE(2960)] = 163033, - [SMALL_STATE(2961)] = 163044, - [SMALL_STATE(2962)] = 163055, - [SMALL_STATE(2963)] = 163066, - [SMALL_STATE(2964)] = 163077, - [SMALL_STATE(2965)] = 163088, - [SMALL_STATE(2966)] = 163099, - [SMALL_STATE(2967)] = 163110, - [SMALL_STATE(2968)] = 163118, - [SMALL_STATE(2969)] = 163126, - [SMALL_STATE(2970)] = 163134, - [SMALL_STATE(2971)] = 163142, - [SMALL_STATE(2972)] = 163150, - [SMALL_STATE(2973)] = 163158, - [SMALL_STATE(2974)] = 163166, - [SMALL_STATE(2975)] = 163174, - [SMALL_STATE(2976)] = 163182, - [SMALL_STATE(2977)] = 163190, - [SMALL_STATE(2978)] = 163198, - [SMALL_STATE(2979)] = 163206, - [SMALL_STATE(2980)] = 163214, - [SMALL_STATE(2981)] = 163222, - [SMALL_STATE(2982)] = 163230, - [SMALL_STATE(2983)] = 163238, - [SMALL_STATE(2984)] = 163246, - [SMALL_STATE(2985)] = 163254, - [SMALL_STATE(2986)] = 163262, - [SMALL_STATE(2987)] = 163270, - [SMALL_STATE(2988)] = 163278, - [SMALL_STATE(2989)] = 163286, - [SMALL_STATE(2990)] = 163294, - [SMALL_STATE(2991)] = 163302, - [SMALL_STATE(2992)] = 163310, - [SMALL_STATE(2993)] = 163318, - [SMALL_STATE(2994)] = 163326, - [SMALL_STATE(2995)] = 163334, - [SMALL_STATE(2996)] = 163342, - [SMALL_STATE(2997)] = 163350, - [SMALL_STATE(2998)] = 163358, - [SMALL_STATE(2999)] = 163366, - [SMALL_STATE(3000)] = 163374, - [SMALL_STATE(3001)] = 163382, - [SMALL_STATE(3002)] = 163390, - [SMALL_STATE(3003)] = 163398, - [SMALL_STATE(3004)] = 163406, - [SMALL_STATE(3005)] = 163414, - [SMALL_STATE(3006)] = 163422, - [SMALL_STATE(3007)] = 163430, - [SMALL_STATE(3008)] = 163438, - [SMALL_STATE(3009)] = 163446, - [SMALL_STATE(3010)] = 163454, - [SMALL_STATE(3011)] = 163462, - [SMALL_STATE(3012)] = 163470, - [SMALL_STATE(3013)] = 163478, - [SMALL_STATE(3014)] = 163486, - [SMALL_STATE(3015)] = 163494, - [SMALL_STATE(3016)] = 163502, - [SMALL_STATE(3017)] = 163510, - [SMALL_STATE(3018)] = 163518, - [SMALL_STATE(3019)] = 163526, - [SMALL_STATE(3020)] = 163534, - [SMALL_STATE(3021)] = 163542, - [SMALL_STATE(3022)] = 163550, - [SMALL_STATE(3023)] = 163558, - [SMALL_STATE(3024)] = 163566, - [SMALL_STATE(3025)] = 163574, - [SMALL_STATE(3026)] = 163582, - [SMALL_STATE(3027)] = 163590, - [SMALL_STATE(3028)] = 163598, - [SMALL_STATE(3029)] = 163606, - [SMALL_STATE(3030)] = 163614, - [SMALL_STATE(3031)] = 163622, - [SMALL_STATE(3032)] = 163630, - [SMALL_STATE(3033)] = 163638, - [SMALL_STATE(3034)] = 163646, - [SMALL_STATE(3035)] = 163654, - [SMALL_STATE(3036)] = 163662, - [SMALL_STATE(3037)] = 163670, - [SMALL_STATE(3038)] = 163678, - [SMALL_STATE(3039)] = 163686, - [SMALL_STATE(3040)] = 163694, - [SMALL_STATE(3041)] = 163702, - [SMALL_STATE(3042)] = 163710, - [SMALL_STATE(3043)] = 163718, - [SMALL_STATE(3044)] = 163726, - [SMALL_STATE(3045)] = 163734, - [SMALL_STATE(3046)] = 163742, - [SMALL_STATE(3047)] = 163750, - [SMALL_STATE(3048)] = 163758, - [SMALL_STATE(3049)] = 163766, - [SMALL_STATE(3050)] = 163774, - [SMALL_STATE(3051)] = 163782, - [SMALL_STATE(3052)] = 163790, - [SMALL_STATE(3053)] = 163798, - [SMALL_STATE(3054)] = 163806, - [SMALL_STATE(3055)] = 163814, - [SMALL_STATE(3056)] = 163822, - [SMALL_STATE(3057)] = 163830, - [SMALL_STATE(3058)] = 163838, - [SMALL_STATE(3059)] = 163846, - [SMALL_STATE(3060)] = 163854, - [SMALL_STATE(3061)] = 163862, - [SMALL_STATE(3062)] = 163870, - [SMALL_STATE(3063)] = 163878, - [SMALL_STATE(3064)] = 163886, - [SMALL_STATE(3065)] = 163894, - [SMALL_STATE(3066)] = 163902, - [SMALL_STATE(3067)] = 163910, - [SMALL_STATE(3068)] = 163918, - [SMALL_STATE(3069)] = 163926, - [SMALL_STATE(3070)] = 163934, - [SMALL_STATE(3071)] = 163942, - [SMALL_STATE(3072)] = 163950, - [SMALL_STATE(3073)] = 163958, - [SMALL_STATE(3074)] = 163966, - [SMALL_STATE(3075)] = 163974, - [SMALL_STATE(3076)] = 163982, - [SMALL_STATE(3077)] = 163990, - [SMALL_STATE(3078)] = 163998, - [SMALL_STATE(3079)] = 164006, - [SMALL_STATE(3080)] = 164014, - [SMALL_STATE(3081)] = 164022, - [SMALL_STATE(3082)] = 164030, - [SMALL_STATE(3083)] = 164038, - [SMALL_STATE(3084)] = 164046, - [SMALL_STATE(3085)] = 164054, - [SMALL_STATE(3086)] = 164062, - [SMALL_STATE(3087)] = 164070, - [SMALL_STATE(3088)] = 164078, - [SMALL_STATE(3089)] = 164086, - [SMALL_STATE(3090)] = 164094, - [SMALL_STATE(3091)] = 164102, - [SMALL_STATE(3092)] = 164110, - [SMALL_STATE(3093)] = 164118, - [SMALL_STATE(3094)] = 164126, - [SMALL_STATE(3095)] = 164134, - [SMALL_STATE(3096)] = 164142, - [SMALL_STATE(3097)] = 164150, - [SMALL_STATE(3098)] = 164158, - [SMALL_STATE(3099)] = 164166, - [SMALL_STATE(3100)] = 164174, - [SMALL_STATE(3101)] = 164182, - [SMALL_STATE(3102)] = 164190, - [SMALL_STATE(3103)] = 164198, - [SMALL_STATE(3104)] = 164206, - [SMALL_STATE(3105)] = 164214, - [SMALL_STATE(3106)] = 164222, - [SMALL_STATE(3107)] = 164230, - [SMALL_STATE(3108)] = 164238, - [SMALL_STATE(3109)] = 164246, - [SMALL_STATE(3110)] = 164254, - [SMALL_STATE(3111)] = 164262, - [SMALL_STATE(3112)] = 164270, - [SMALL_STATE(3113)] = 164278, - [SMALL_STATE(3114)] = 164286, - [SMALL_STATE(3115)] = 164294, - [SMALL_STATE(3116)] = 164302, - [SMALL_STATE(3117)] = 164310, - [SMALL_STATE(3118)] = 164318, - [SMALL_STATE(3119)] = 164326, - [SMALL_STATE(3120)] = 164334, - [SMALL_STATE(3121)] = 164342, - [SMALL_STATE(3122)] = 164350, - [SMALL_STATE(3123)] = 164358, - [SMALL_STATE(3124)] = 164366, - [SMALL_STATE(3125)] = 164374, - [SMALL_STATE(3126)] = 164382, - [SMALL_STATE(3127)] = 164390, - [SMALL_STATE(3128)] = 164398, - [SMALL_STATE(3129)] = 164406, - [SMALL_STATE(3130)] = 164414, - [SMALL_STATE(3131)] = 164422, - [SMALL_STATE(3132)] = 164430, - [SMALL_STATE(3133)] = 164438, - [SMALL_STATE(3134)] = 164446, - [SMALL_STATE(3135)] = 164454, - [SMALL_STATE(3136)] = 164462, - [SMALL_STATE(3137)] = 164470, - [SMALL_STATE(3138)] = 164478, - [SMALL_STATE(3139)] = 164486, - [SMALL_STATE(3140)] = 164494, - [SMALL_STATE(3141)] = 164502, - [SMALL_STATE(3142)] = 164510, - [SMALL_STATE(3143)] = 164518, - [SMALL_STATE(3144)] = 164526, - [SMALL_STATE(3145)] = 164534, - [SMALL_STATE(3146)] = 164542, - [SMALL_STATE(3147)] = 164550, - [SMALL_STATE(3148)] = 164558, - [SMALL_STATE(3149)] = 164566, - [SMALL_STATE(3150)] = 164574, - [SMALL_STATE(3151)] = 164582, - [SMALL_STATE(3152)] = 164590, - [SMALL_STATE(3153)] = 164598, - [SMALL_STATE(3154)] = 164606, - [SMALL_STATE(3155)] = 164614, - [SMALL_STATE(3156)] = 164622, - [SMALL_STATE(3157)] = 164630, - [SMALL_STATE(3158)] = 164638, - [SMALL_STATE(3159)] = 164646, - [SMALL_STATE(3160)] = 164654, - [SMALL_STATE(3161)] = 164662, - [SMALL_STATE(3162)] = 164670, - [SMALL_STATE(3163)] = 164678, - [SMALL_STATE(3164)] = 164686, - [SMALL_STATE(3165)] = 164694, - [SMALL_STATE(3166)] = 164702, - [SMALL_STATE(3167)] = 164710, - [SMALL_STATE(3168)] = 164718, - [SMALL_STATE(3169)] = 164726, - [SMALL_STATE(3170)] = 164734, - [SMALL_STATE(3171)] = 164742, - [SMALL_STATE(3172)] = 164750, - [SMALL_STATE(3173)] = 164758, - [SMALL_STATE(3174)] = 164766, - [SMALL_STATE(3175)] = 164774, - [SMALL_STATE(3176)] = 164782, - [SMALL_STATE(3177)] = 164790, - [SMALL_STATE(3178)] = 164798, - [SMALL_STATE(3179)] = 164806, - [SMALL_STATE(3180)] = 164814, - [SMALL_STATE(3181)] = 164822, - [SMALL_STATE(3182)] = 164830, - [SMALL_STATE(3183)] = 164838, - [SMALL_STATE(3184)] = 164846, - [SMALL_STATE(3185)] = 164854, - [SMALL_STATE(3186)] = 164862, - [SMALL_STATE(3187)] = 164870, - [SMALL_STATE(3188)] = 164878, - [SMALL_STATE(3189)] = 164886, - [SMALL_STATE(3190)] = 164894, - [SMALL_STATE(3191)] = 164902, - [SMALL_STATE(3192)] = 164910, - [SMALL_STATE(3193)] = 164918, - [SMALL_STATE(3194)] = 164926, - [SMALL_STATE(3195)] = 164934, - [SMALL_STATE(3196)] = 164942, - [SMALL_STATE(3197)] = 164950, - [SMALL_STATE(3198)] = 164958, - [SMALL_STATE(3199)] = 164966, - [SMALL_STATE(3200)] = 164974, - [SMALL_STATE(3201)] = 164982, - [SMALL_STATE(3202)] = 164990, - [SMALL_STATE(3203)] = 164998, - [SMALL_STATE(3204)] = 165006, - [SMALL_STATE(3205)] = 165014, - [SMALL_STATE(3206)] = 165022, - [SMALL_STATE(3207)] = 165030, - [SMALL_STATE(3208)] = 165038, - [SMALL_STATE(3209)] = 165046, - [SMALL_STATE(3210)] = 165054, - [SMALL_STATE(3211)] = 165062, - [SMALL_STATE(3212)] = 165070, - [SMALL_STATE(3213)] = 165078, - [SMALL_STATE(3214)] = 165086, - [SMALL_STATE(3215)] = 165094, - [SMALL_STATE(3216)] = 165102, - [SMALL_STATE(3217)] = 165110, - [SMALL_STATE(3218)] = 165118, - [SMALL_STATE(3219)] = 165126, - [SMALL_STATE(3220)] = 165134, - [SMALL_STATE(3221)] = 165142, - [SMALL_STATE(3222)] = 165150, - [SMALL_STATE(3223)] = 165158, - [SMALL_STATE(3224)] = 165166, - [SMALL_STATE(3225)] = 165174, - [SMALL_STATE(3226)] = 165182, - [SMALL_STATE(3227)] = 165190, - [SMALL_STATE(3228)] = 165198, - [SMALL_STATE(3229)] = 165206, - [SMALL_STATE(3230)] = 165214, - [SMALL_STATE(3231)] = 165222, - [SMALL_STATE(3232)] = 165230, - [SMALL_STATE(3233)] = 165238, - [SMALL_STATE(3234)] = 165246, - [SMALL_STATE(3235)] = 165254, - [SMALL_STATE(3236)] = 165262, - [SMALL_STATE(3237)] = 165270, - [SMALL_STATE(3238)] = 165278, - [SMALL_STATE(3239)] = 165286, - [SMALL_STATE(3240)] = 165294, - [SMALL_STATE(3241)] = 165302, - [SMALL_STATE(3242)] = 165310, - [SMALL_STATE(3243)] = 165318, - [SMALL_STATE(3244)] = 165326, - [SMALL_STATE(3245)] = 165334, - [SMALL_STATE(3246)] = 165342, - [SMALL_STATE(3247)] = 165350, - [SMALL_STATE(3248)] = 165358, - [SMALL_STATE(3249)] = 165366, - [SMALL_STATE(3250)] = 165374, - [SMALL_STATE(3251)] = 165382, - [SMALL_STATE(3252)] = 165390, - [SMALL_STATE(3253)] = 165398, - [SMALL_STATE(3254)] = 165406, - [SMALL_STATE(3255)] = 165414, - [SMALL_STATE(3256)] = 165422, - [SMALL_STATE(3257)] = 165430, - [SMALL_STATE(3258)] = 165438, - [SMALL_STATE(3259)] = 165446, - [SMALL_STATE(3260)] = 165454, - [SMALL_STATE(3261)] = 165462, - [SMALL_STATE(3262)] = 165470, - [SMALL_STATE(3263)] = 165478, - [SMALL_STATE(3264)] = 165486, - [SMALL_STATE(3265)] = 165494, - [SMALL_STATE(3266)] = 165502, - [SMALL_STATE(3267)] = 165510, - [SMALL_STATE(3268)] = 165518, - [SMALL_STATE(3269)] = 165526, - [SMALL_STATE(3270)] = 165534, - [SMALL_STATE(3271)] = 165542, - [SMALL_STATE(3272)] = 165550, - [SMALL_STATE(3273)] = 165557, - [SMALL_STATE(3274)] = 165564, - [SMALL_STATE(3275)] = 165571, - [SMALL_STATE(3276)] = 165578, - [SMALL_STATE(3277)] = 165585, - [SMALL_STATE(3278)] = 165592, - [SMALL_STATE(3279)] = 165599, - [SMALL_STATE(3280)] = 165606, - [SMALL_STATE(3281)] = 165613, - [SMALL_STATE(3282)] = 165620, - [SMALL_STATE(3283)] = 165627, - [SMALL_STATE(3284)] = 165634, - [SMALL_STATE(3285)] = 165641, - [SMALL_STATE(3286)] = 165648, - [SMALL_STATE(3287)] = 165655, - [SMALL_STATE(3288)] = 165662, - [SMALL_STATE(3289)] = 165669, - [SMALL_STATE(3290)] = 165676, - [SMALL_STATE(3291)] = 165683, - [SMALL_STATE(3292)] = 165690, - [SMALL_STATE(3293)] = 165697, - [SMALL_STATE(3294)] = 165704, - [SMALL_STATE(3295)] = 165711, + [SMALL_STATE(2211)] = 145468, + [SMALL_STATE(2212)] = 145521, + [SMALL_STATE(2213)] = 145574, + [SMALL_STATE(2214)] = 145627, + [SMALL_STATE(2215)] = 145680, + [SMALL_STATE(2216)] = 145733, + [SMALL_STATE(2217)] = 145788, + [SMALL_STATE(2218)] = 145841, + [SMALL_STATE(2219)] = 145894, + [SMALL_STATE(2220)] = 145947, + [SMALL_STATE(2221)] = 146000, + [SMALL_STATE(2222)] = 146055, + [SMALL_STATE(2223)] = 146108, + [SMALL_STATE(2224)] = 146161, + [SMALL_STATE(2225)] = 146214, + [SMALL_STATE(2226)] = 146267, + [SMALL_STATE(2227)] = 146320, + [SMALL_STATE(2228)] = 146362, + [SMALL_STATE(2229)] = 146404, + [SMALL_STATE(2230)] = 146446, + [SMALL_STATE(2231)] = 146488, + [SMALL_STATE(2232)] = 146526, + [SMALL_STATE(2233)] = 146564, + [SMALL_STATE(2234)] = 146602, + [SMALL_STATE(2235)] = 146640, + [SMALL_STATE(2236)] = 146677, + [SMALL_STATE(2237)] = 146714, + [SMALL_STATE(2238)] = 146751, + [SMALL_STATE(2239)] = 146788, + [SMALL_STATE(2240)] = 146825, + [SMALL_STATE(2241)] = 146862, + [SMALL_STATE(2242)] = 146899, + [SMALL_STATE(2243)] = 146936, + [SMALL_STATE(2244)] = 146973, + [SMALL_STATE(2245)] = 147010, + [SMALL_STATE(2246)] = 147047, + [SMALL_STATE(2247)] = 147084, + [SMALL_STATE(2248)] = 147136, + [SMALL_STATE(2249)] = 147172, + [SMALL_STATE(2250)] = 147208, + [SMALL_STATE(2251)] = 147260, + [SMALL_STATE(2252)] = 147296, + [SMALL_STATE(2253)] = 147348, + [SMALL_STATE(2254)] = 147384, + [SMALL_STATE(2255)] = 147435, + [SMALL_STATE(2256)] = 147486, + [SMALL_STATE(2257)] = 147535, + [SMALL_STATE(2258)] = 147586, + [SMALL_STATE(2259)] = 147637, + [SMALL_STATE(2260)] = 147688, + [SMALL_STATE(2261)] = 147737, + [SMALL_STATE(2262)] = 147788, + [SMALL_STATE(2263)] = 147839, + [SMALL_STATE(2264)] = 147890, + [SMALL_STATE(2265)] = 147941, + [SMALL_STATE(2266)] = 147987, + [SMALL_STATE(2267)] = 148021, + [SMALL_STATE(2268)] = 148055, + [SMALL_STATE(2269)] = 148089, + [SMALL_STATE(2270)] = 148137, + [SMALL_STATE(2271)] = 148185, + [SMALL_STATE(2272)] = 148233, + [SMALL_STATE(2273)] = 148267, + [SMALL_STATE(2274)] = 148315, + [SMALL_STATE(2275)] = 148342, + [SMALL_STATE(2276)] = 148369, + [SMALL_STATE(2277)] = 148406, + [SMALL_STATE(2278)] = 148439, + [SMALL_STATE(2279)] = 148484, + [SMALL_STATE(2280)] = 148529, + [SMALL_STATE(2281)] = 148556, + [SMALL_STATE(2282)] = 148585, + [SMALL_STATE(2283)] = 148631, + [SMALL_STATE(2284)] = 148657, + [SMALL_STATE(2285)] = 148703, + [SMALL_STATE(2286)] = 148749, + [SMALL_STATE(2287)] = 148795, + [SMALL_STATE(2288)] = 148833, + [SMALL_STATE(2289)] = 148859, + [SMALL_STATE(2290)] = 148905, + [SMALL_STATE(2291)] = 148943, + [SMALL_STATE(2292)] = 148989, + [SMALL_STATE(2293)] = 149035, + [SMALL_STATE(2294)] = 149061, + [SMALL_STATE(2295)] = 149107, + [SMALL_STATE(2296)] = 149153, + [SMALL_STATE(2297)] = 149188, + [SMALL_STATE(2298)] = 149219, + [SMALL_STATE(2299)] = 149255, + [SMALL_STATE(2300)] = 149285, + [SMALL_STATE(2301)] = 149325, + [SMALL_STATE(2302)] = 149361, + [SMALL_STATE(2303)] = 149397, + [SMALL_STATE(2304)] = 149437, + [SMALL_STATE(2305)] = 149477, + [SMALL_STATE(2306)] = 149513, + [SMALL_STATE(2307)] = 149549, + [SMALL_STATE(2308)] = 149581, + [SMALL_STATE(2309)] = 149615, + [SMALL_STATE(2310)] = 149639, + [SMALL_STATE(2311)] = 149663, + [SMALL_STATE(2312)] = 149699, + [SMALL_STATE(2313)] = 149739, + [SMALL_STATE(2314)] = 149779, + [SMALL_STATE(2315)] = 149815, + [SMALL_STATE(2316)] = 149841, + [SMALL_STATE(2317)] = 149877, + [SMALL_STATE(2318)] = 149913, + [SMALL_STATE(2319)] = 149953, + [SMALL_STATE(2320)] = 149977, + [SMALL_STATE(2321)] = 150009, + [SMALL_STATE(2322)] = 150049, + [SMALL_STATE(2323)] = 150089, + [SMALL_STATE(2324)] = 150129, + [SMALL_STATE(2325)] = 150160, + [SMALL_STATE(2326)] = 150191, + [SMALL_STATE(2327)] = 150224, + [SMALL_STATE(2328)] = 150261, + [SMALL_STATE(2329)] = 150294, + [SMALL_STATE(2330)] = 150331, + [SMALL_STATE(2331)] = 150368, + [SMALL_STATE(2332)] = 150399, + [SMALL_STATE(2333)] = 150428, + [SMALL_STATE(2334)] = 150459, + [SMALL_STATE(2335)] = 150496, + [SMALL_STATE(2336)] = 150527, + [SMALL_STATE(2337)] = 150560, + [SMALL_STATE(2338)] = 150591, + [SMALL_STATE(2339)] = 150626, + [SMALL_STATE(2340)] = 150659, + [SMALL_STATE(2341)] = 150694, + [SMALL_STATE(2342)] = 150727, + [SMALL_STATE(2343)] = 150758, + [SMALL_STATE(2344)] = 150789, + [SMALL_STATE(2345)] = 150812, + [SMALL_STATE(2346)] = 150849, + [SMALL_STATE(2347)] = 150880, + [SMALL_STATE(2348)] = 150917, + [SMALL_STATE(2349)] = 150954, + [SMALL_STATE(2350)] = 150987, + [SMALL_STATE(2351)] = 151010, + [SMALL_STATE(2352)] = 151041, + [SMALL_STATE(2353)] = 151076, + [SMALL_STATE(2354)] = 151111, + [SMALL_STATE(2355)] = 151140, + [SMALL_STATE(2356)] = 151175, + [SMALL_STATE(2357)] = 151212, + [SMALL_STATE(2358)] = 151243, + [SMALL_STATE(2359)] = 151266, + [SMALL_STATE(2360)] = 151303, + [SMALL_STATE(2361)] = 151334, + [SMALL_STATE(2362)] = 151367, + [SMALL_STATE(2363)] = 151390, + [SMALL_STATE(2364)] = 151427, + [SMALL_STATE(2365)] = 151458, + [SMALL_STATE(2366)] = 151489, + [SMALL_STATE(2367)] = 151520, + [SMALL_STATE(2368)] = 151551, + [SMALL_STATE(2369)] = 151574, + [SMALL_STATE(2370)] = 151607, + [SMALL_STATE(2371)] = 151642, + [SMALL_STATE(2372)] = 151673, + [SMALL_STATE(2373)] = 151704, + [SMALL_STATE(2374)] = 151729, + [SMALL_STATE(2375)] = 151760, + [SMALL_STATE(2376)] = 151783, + [SMALL_STATE(2377)] = 151816, + [SMALL_STATE(2378)] = 151841, + [SMALL_STATE(2379)] = 151866, + [SMALL_STATE(2380)] = 151898, + [SMALL_STATE(2381)] = 151932, + [SMALL_STATE(2382)] = 151966, + [SMALL_STATE(2383)] = 152000, + [SMALL_STATE(2384)] = 152032, + [SMALL_STATE(2385)] = 152066, + [SMALL_STATE(2386)] = 152098, + [SMALL_STATE(2387)] = 152126, + [SMALL_STATE(2388)] = 152158, + [SMALL_STATE(2389)] = 152186, + [SMALL_STATE(2390)] = 152220, + [SMALL_STATE(2391)] = 152252, + [SMALL_STATE(2392)] = 152286, + [SMALL_STATE(2393)] = 152314, + [SMALL_STATE(2394)] = 152336, + [SMALL_STATE(2395)] = 152364, + [SMALL_STATE(2396)] = 152398, + [SMALL_STATE(2397)] = 152426, + [SMALL_STATE(2398)] = 152458, + [SMALL_STATE(2399)] = 152480, + [SMALL_STATE(2400)] = 152508, + [SMALL_STATE(2401)] = 152540, + [SMALL_STATE(2402)] = 152572, + [SMALL_STATE(2403)] = 152600, + [SMALL_STATE(2404)] = 152632, + [SMALL_STATE(2405)] = 152662, + [SMALL_STATE(2406)] = 152696, + [SMALL_STATE(2407)] = 152730, + [SMALL_STATE(2408)] = 152764, + [SMALL_STATE(2409)] = 152792, + [SMALL_STATE(2410)] = 152826, + [SMALL_STATE(2411)] = 152858, + [SMALL_STATE(2412)] = 152886, + [SMALL_STATE(2413)] = 152914, + [SMALL_STATE(2414)] = 152946, + [SMALL_STATE(2415)] = 152974, + [SMALL_STATE(2416)] = 153008, + [SMALL_STATE(2417)] = 153042, + [SMALL_STATE(2418)] = 153074, + [SMALL_STATE(2419)] = 153102, + [SMALL_STATE(2420)] = 153134, + [SMALL_STATE(2421)] = 153166, + [SMALL_STATE(2422)] = 153200, + [SMALL_STATE(2423)] = 153234, + [SMALL_STATE(2424)] = 153262, + [SMALL_STATE(2425)] = 153290, + [SMALL_STATE(2426)] = 153318, + [SMALL_STATE(2427)] = 153350, + [SMALL_STATE(2428)] = 153378, + [SMALL_STATE(2429)] = 153410, + [SMALL_STATE(2430)] = 153444, + [SMALL_STATE(2431)] = 153472, + [SMALL_STATE(2432)] = 153504, + [SMALL_STATE(2433)] = 153538, + [SMALL_STATE(2434)] = 153568, + [SMALL_STATE(2435)] = 153600, + [SMALL_STATE(2436)] = 153634, + [SMALL_STATE(2437)] = 153662, + [SMALL_STATE(2438)] = 153696, + [SMALL_STATE(2439)] = 153730, + [SMALL_STATE(2440)] = 153762, + [SMALL_STATE(2441)] = 153796, + [SMALL_STATE(2442)] = 153824, + [SMALL_STATE(2443)] = 153852, + [SMALL_STATE(2444)] = 153884, + [SMALL_STATE(2445)] = 153912, + [SMALL_STATE(2446)] = 153944, + [SMALL_STATE(2447)] = 153966, + [SMALL_STATE(2448)] = 153997, + [SMALL_STATE(2449)] = 154028, + [SMALL_STATE(2450)] = 154059, + [SMALL_STATE(2451)] = 154090, + [SMALL_STATE(2452)] = 154121, + [SMALL_STATE(2453)] = 154146, + [SMALL_STATE(2454)] = 154177, + [SMALL_STATE(2455)] = 154202, + [SMALL_STATE(2456)] = 154227, + [SMALL_STATE(2457)] = 154258, + [SMALL_STATE(2458)] = 154283, + [SMALL_STATE(2459)] = 154314, + [SMALL_STATE(2460)] = 154345, + [SMALL_STATE(2461)] = 154376, + [SMALL_STATE(2462)] = 154407, + [SMALL_STATE(2463)] = 154438, + [SMALL_STATE(2464)] = 154463, + [SMALL_STATE(2465)] = 154488, + [SMALL_STATE(2466)] = 154519, + [SMALL_STATE(2467)] = 154550, + [SMALL_STATE(2468)] = 154581, + [SMALL_STATE(2469)] = 154606, + [SMALL_STATE(2470)] = 154637, + [SMALL_STATE(2471)] = 154662, + [SMALL_STATE(2472)] = 154693, + [SMALL_STATE(2473)] = 154724, + [SMALL_STATE(2474)] = 154755, + [SMALL_STATE(2475)] = 154786, + [SMALL_STATE(2476)] = 154817, + [SMALL_STATE(2477)] = 154848, + [SMALL_STATE(2478)] = 154879, + [SMALL_STATE(2479)] = 154910, + [SMALL_STATE(2480)] = 154935, + [SMALL_STATE(2481)] = 154966, + [SMALL_STATE(2482)] = 154997, + [SMALL_STATE(2483)] = 155028, + [SMALL_STATE(2484)] = 155059, + [SMALL_STATE(2485)] = 155090, + [SMALL_STATE(2486)] = 155121, + [SMALL_STATE(2487)] = 155152, + [SMALL_STATE(2488)] = 155183, + [SMALL_STATE(2489)] = 155214, + [SMALL_STATE(2490)] = 155239, + [SMALL_STATE(2491)] = 155270, + [SMALL_STATE(2492)] = 155301, + [SMALL_STATE(2493)] = 155332, + [SMALL_STATE(2494)] = 155357, + [SMALL_STATE(2495)] = 155382, + [SMALL_STATE(2496)] = 155413, + [SMALL_STATE(2497)] = 155444, + [SMALL_STATE(2498)] = 155475, + [SMALL_STATE(2499)] = 155506, + [SMALL_STATE(2500)] = 155531, + [SMALL_STATE(2501)] = 155562, + [SMALL_STATE(2502)] = 155593, + [SMALL_STATE(2503)] = 155624, + [SMALL_STATE(2504)] = 155655, + [SMALL_STATE(2505)] = 155680, + [SMALL_STATE(2506)] = 155711, + [SMALL_STATE(2507)] = 155742, + [SMALL_STATE(2508)] = 155767, + [SMALL_STATE(2509)] = 155798, + [SMALL_STATE(2510)] = 155829, + [SMALL_STATE(2511)] = 155860, + [SMALL_STATE(2512)] = 155891, + [SMALL_STATE(2513)] = 155922, + [SMALL_STATE(2514)] = 155953, + [SMALL_STATE(2515)] = 155984, + [SMALL_STATE(2516)] = 156015, + [SMALL_STATE(2517)] = 156046, + [SMALL_STATE(2518)] = 156071, + [SMALL_STATE(2519)] = 156102, + [SMALL_STATE(2520)] = 156133, + [SMALL_STATE(2521)] = 156164, + [SMALL_STATE(2522)] = 156195, + [SMALL_STATE(2523)] = 156226, + [SMALL_STATE(2524)] = 156257, + [SMALL_STATE(2525)] = 156288, + [SMALL_STATE(2526)] = 156319, + [SMALL_STATE(2527)] = 156350, + [SMALL_STATE(2528)] = 156375, + [SMALL_STATE(2529)] = 156406, + [SMALL_STATE(2530)] = 156431, + [SMALL_STATE(2531)] = 156462, + [SMALL_STATE(2532)] = 156487, + [SMALL_STATE(2533)] = 156512, + [SMALL_STATE(2534)] = 156543, + [SMALL_STATE(2535)] = 156574, + [SMALL_STATE(2536)] = 156605, + [SMALL_STATE(2537)] = 156636, + [SMALL_STATE(2538)] = 156661, + [SMALL_STATE(2539)] = 156692, + [SMALL_STATE(2540)] = 156723, + [SMALL_STATE(2541)] = 156754, + [SMALL_STATE(2542)] = 156785, + [SMALL_STATE(2543)] = 156816, + [SMALL_STATE(2544)] = 156847, + [SMALL_STATE(2545)] = 156868, + [SMALL_STATE(2546)] = 156899, + [SMALL_STATE(2547)] = 156930, + [SMALL_STATE(2548)] = 156961, + [SMALL_STATE(2549)] = 156992, + [SMALL_STATE(2550)] = 157023, + [SMALL_STATE(2551)] = 157054, + [SMALL_STATE(2552)] = 157085, + [SMALL_STATE(2553)] = 157110, + [SMALL_STATE(2554)] = 157141, + [SMALL_STATE(2555)] = 157172, + [SMALL_STATE(2556)] = 157203, + [SMALL_STATE(2557)] = 157234, + [SMALL_STATE(2558)] = 157265, + [SMALL_STATE(2559)] = 157296, + [SMALL_STATE(2560)] = 157327, + [SMALL_STATE(2561)] = 157358, + [SMALL_STATE(2562)] = 157378, + [SMALL_STATE(2563)] = 157404, + [SMALL_STATE(2564)] = 157424, + [SMALL_STATE(2565)] = 157444, + [SMALL_STATE(2566)] = 157472, + [SMALL_STATE(2567)] = 157500, + [SMALL_STATE(2568)] = 157528, + [SMALL_STATE(2569)] = 157556, + [SMALL_STATE(2570)] = 157576, + [SMALL_STATE(2571)] = 157604, + [SMALL_STATE(2572)] = 157624, + [SMALL_STATE(2573)] = 157652, + [SMALL_STATE(2574)] = 157680, + [SMALL_STATE(2575)] = 157700, + [SMALL_STATE(2576)] = 157728, + [SMALL_STATE(2577)] = 157756, + [SMALL_STATE(2578)] = 157776, + [SMALL_STATE(2579)] = 157802, + [SMALL_STATE(2580)] = 157830, + [SMALL_STATE(2581)] = 157850, + [SMALL_STATE(2582)] = 157870, + [SMALL_STATE(2583)] = 157890, + [SMALL_STATE(2584)] = 157918, + [SMALL_STATE(2585)] = 157938, + [SMALL_STATE(2586)] = 157966, + [SMALL_STATE(2587)] = 157994, + [SMALL_STATE(2588)] = 158014, + [SMALL_STATE(2589)] = 158042, + [SMALL_STATE(2590)] = 158065, + [SMALL_STATE(2591)] = 158088, + [SMALL_STATE(2592)] = 158111, + [SMALL_STATE(2593)] = 158134, + [SMALL_STATE(2594)] = 158157, + [SMALL_STATE(2595)] = 158180, + [SMALL_STATE(2596)] = 158203, + [SMALL_STATE(2597)] = 158226, + [SMALL_STATE(2598)] = 158249, + [SMALL_STATE(2599)] = 158272, + [SMALL_STATE(2600)] = 158295, + [SMALL_STATE(2601)] = 158318, + [SMALL_STATE(2602)] = 158341, + [SMALL_STATE(2603)] = 158362, + [SMALL_STATE(2604)] = 158383, + [SMALL_STATE(2605)] = 158406, + [SMALL_STATE(2606)] = 158429, + [SMALL_STATE(2607)] = 158452, + [SMALL_STATE(2608)] = 158475, + [SMALL_STATE(2609)] = 158498, + [SMALL_STATE(2610)] = 158521, + [SMALL_STATE(2611)] = 158541, + [SMALL_STATE(2612)] = 158559, + [SMALL_STATE(2613)] = 158579, + [SMALL_STATE(2614)] = 158597, + [SMALL_STATE(2615)] = 158623, + [SMALL_STATE(2616)] = 158637, + [SMALL_STATE(2617)] = 158655, + [SMALL_STATE(2618)] = 158672, + [SMALL_STATE(2619)] = 158689, + [SMALL_STATE(2620)] = 158704, + [SMALL_STATE(2621)] = 158719, + [SMALL_STATE(2622)] = 158738, + [SMALL_STATE(2623)] = 158761, + [SMALL_STATE(2624)] = 158778, + [SMALL_STATE(2625)] = 158797, + [SMALL_STATE(2626)] = 158816, + [SMALL_STATE(2627)] = 158833, + [SMALL_STATE(2628)] = 158850, + [SMALL_STATE(2629)] = 158865, + [SMALL_STATE(2630)] = 158884, + [SMALL_STATE(2631)] = 158899, + [SMALL_STATE(2632)] = 158914, + [SMALL_STATE(2633)] = 158933, + [SMALL_STATE(2634)] = 158948, + [SMALL_STATE(2635)] = 158971, + [SMALL_STATE(2636)] = 158988, + [SMALL_STATE(2637)] = 159007, + [SMALL_STATE(2638)] = 159022, + [SMALL_STATE(2639)] = 159037, + [SMALL_STATE(2640)] = 159052, + [SMALL_STATE(2641)] = 159075, + [SMALL_STATE(2642)] = 159094, + [SMALL_STATE(2643)] = 159109, + [SMALL_STATE(2644)] = 159124, + [SMALL_STATE(2645)] = 159139, + [SMALL_STATE(2646)] = 159154, + [SMALL_STATE(2647)] = 159173, + [SMALL_STATE(2648)] = 159190, + [SMALL_STATE(2649)] = 159209, + [SMALL_STATE(2650)] = 159224, + [SMALL_STATE(2651)] = 159239, + [SMALL_STATE(2652)] = 159258, + [SMALL_STATE(2653)] = 159275, + [SMALL_STATE(2654)] = 159292, + [SMALL_STATE(2655)] = 159309, + [SMALL_STATE(2656)] = 159328, + [SMALL_STATE(2657)] = 159351, + [SMALL_STATE(2658)] = 159370, + [SMALL_STATE(2659)] = 159389, + [SMALL_STATE(2660)] = 159408, + [SMALL_STATE(2661)] = 159427, + [SMALL_STATE(2662)] = 159450, + [SMALL_STATE(2663)] = 159467, + [SMALL_STATE(2664)] = 159486, + [SMALL_STATE(2665)] = 159503, + [SMALL_STATE(2666)] = 159520, + [SMALL_STATE(2667)] = 159535, + [SMALL_STATE(2668)] = 159554, + [SMALL_STATE(2669)] = 159573, + [SMALL_STATE(2670)] = 159588, + [SMALL_STATE(2671)] = 159607, + [SMALL_STATE(2672)] = 159630, + [SMALL_STATE(2673)] = 159653, + [SMALL_STATE(2674)] = 159676, + [SMALL_STATE(2675)] = 159693, + [SMALL_STATE(2676)] = 159712, + [SMALL_STATE(2677)] = 159731, + [SMALL_STATE(2678)] = 159754, + [SMALL_STATE(2679)] = 159770, + [SMALL_STATE(2680)] = 159782, + [SMALL_STATE(2681)] = 159800, + [SMALL_STATE(2682)] = 159820, + [SMALL_STATE(2683)] = 159836, + [SMALL_STATE(2684)] = 159848, + [SMALL_STATE(2685)] = 159864, + [SMALL_STATE(2686)] = 159880, + [SMALL_STATE(2687)] = 159900, + [SMALL_STATE(2688)] = 159920, + [SMALL_STATE(2689)] = 159940, + [SMALL_STATE(2690)] = 159960, + [SMALL_STATE(2691)] = 159980, + [SMALL_STATE(2692)] = 159996, + [SMALL_STATE(2693)] = 160016, + [SMALL_STATE(2694)] = 160036, + [SMALL_STATE(2695)] = 160052, + [SMALL_STATE(2696)] = 160072, + [SMALL_STATE(2697)] = 160088, + [SMALL_STATE(2698)] = 160108, + [SMALL_STATE(2699)] = 160128, + [SMALL_STATE(2700)] = 160148, + [SMALL_STATE(2701)] = 160168, + [SMALL_STATE(2702)] = 160188, + [SMALL_STATE(2703)] = 160208, + [SMALL_STATE(2704)] = 160223, + [SMALL_STATE(2705)] = 160238, + [SMALL_STATE(2706)] = 160255, + [SMALL_STATE(2707)] = 160270, + [SMALL_STATE(2708)] = 160283, + [SMALL_STATE(2709)] = 160300, + [SMALL_STATE(2710)] = 160317, + [SMALL_STATE(2711)] = 160334, + [SMALL_STATE(2712)] = 160351, + [SMALL_STATE(2713)] = 160366, + [SMALL_STATE(2714)] = 160379, + [SMALL_STATE(2715)] = 160392, + [SMALL_STATE(2716)] = 160405, + [SMALL_STATE(2717)] = 160418, + [SMALL_STATE(2718)] = 160431, + [SMALL_STATE(2719)] = 160446, + [SMALL_STATE(2720)] = 160463, + [SMALL_STATE(2721)] = 160480, + [SMALL_STATE(2722)] = 160493, + [SMALL_STATE(2723)] = 160506, + [SMALL_STATE(2724)] = 160519, + [SMALL_STATE(2725)] = 160536, + [SMALL_STATE(2726)] = 160549, + [SMALL_STATE(2727)] = 160564, + [SMALL_STATE(2728)] = 160577, + [SMALL_STATE(2729)] = 160592, + [SMALL_STATE(2730)] = 160605, + [SMALL_STATE(2731)] = 160622, + [SMALL_STATE(2732)] = 160635, + [SMALL_STATE(2733)] = 160650, + [SMALL_STATE(2734)] = 160667, + [SMALL_STATE(2735)] = 160684, + [SMALL_STATE(2736)] = 160701, + [SMALL_STATE(2737)] = 160718, + [SMALL_STATE(2738)] = 160735, + [SMALL_STATE(2739)] = 160752, + [SMALL_STATE(2740)] = 160769, + [SMALL_STATE(2741)] = 160782, + [SMALL_STATE(2742)] = 160795, + [SMALL_STATE(2743)] = 160812, + [SMALL_STATE(2744)] = 160825, + [SMALL_STATE(2745)] = 160842, + [SMALL_STATE(2746)] = 160859, + [SMALL_STATE(2747)] = 160876, + [SMALL_STATE(2748)] = 160893, + [SMALL_STATE(2749)] = 160907, + [SMALL_STATE(2750)] = 160917, + [SMALL_STATE(2751)] = 160931, + [SMALL_STATE(2752)] = 160945, + [SMALL_STATE(2753)] = 160959, + [SMALL_STATE(2754)] = 160969, + [SMALL_STATE(2755)] = 160983, + [SMALL_STATE(2756)] = 160997, + [SMALL_STATE(2757)] = 161011, + [SMALL_STATE(2758)] = 161025, + [SMALL_STATE(2759)] = 161039, + [SMALL_STATE(2760)] = 161053, + [SMALL_STATE(2761)] = 161067, + [SMALL_STATE(2762)] = 161081, + [SMALL_STATE(2763)] = 161095, + [SMALL_STATE(2764)] = 161109, + [SMALL_STATE(2765)] = 161123, + [SMALL_STATE(2766)] = 161137, + [SMALL_STATE(2767)] = 161151, + [SMALL_STATE(2768)] = 161165, + [SMALL_STATE(2769)] = 161179, + [SMALL_STATE(2770)] = 161193, + [SMALL_STATE(2771)] = 161207, + [SMALL_STATE(2772)] = 161221, + [SMALL_STATE(2773)] = 161235, + [SMALL_STATE(2774)] = 161249, + [SMALL_STATE(2775)] = 161259, + [SMALL_STATE(2776)] = 161273, + [SMALL_STATE(2777)] = 161287, + [SMALL_STATE(2778)] = 161301, + [SMALL_STATE(2779)] = 161315, + [SMALL_STATE(2780)] = 161329, + [SMALL_STATE(2781)] = 161343, + [SMALL_STATE(2782)] = 161357, + [SMALL_STATE(2783)] = 161371, + [SMALL_STATE(2784)] = 161385, + [SMALL_STATE(2785)] = 161399, + [SMALL_STATE(2786)] = 161413, + [SMALL_STATE(2787)] = 161427, + [SMALL_STATE(2788)] = 161441, + [SMALL_STATE(2789)] = 161455, + [SMALL_STATE(2790)] = 161469, + [SMALL_STATE(2791)] = 161483, + [SMALL_STATE(2792)] = 161497, + [SMALL_STATE(2793)] = 161511, + [SMALL_STATE(2794)] = 161525, + [SMALL_STATE(2795)] = 161539, + [SMALL_STATE(2796)] = 161553, + [SMALL_STATE(2797)] = 161567, + [SMALL_STATE(2798)] = 161581, + [SMALL_STATE(2799)] = 161593, + [SMALL_STATE(2800)] = 161607, + [SMALL_STATE(2801)] = 161621, + [SMALL_STATE(2802)] = 161635, + [SMALL_STATE(2803)] = 161649, + [SMALL_STATE(2804)] = 161663, + [SMALL_STATE(2805)] = 161677, + [SMALL_STATE(2806)] = 161691, + [SMALL_STATE(2807)] = 161705, + [SMALL_STATE(2808)] = 161719, + [SMALL_STATE(2809)] = 161733, + [SMALL_STATE(2810)] = 161745, + [SMALL_STATE(2811)] = 161759, + [SMALL_STATE(2812)] = 161773, + [SMALL_STATE(2813)] = 161787, + [SMALL_STATE(2814)] = 161801, + [SMALL_STATE(2815)] = 161815, + [SMALL_STATE(2816)] = 161829, + [SMALL_STATE(2817)] = 161843, + [SMALL_STATE(2818)] = 161857, + [SMALL_STATE(2819)] = 161871, + [SMALL_STATE(2820)] = 161883, + [SMALL_STATE(2821)] = 161897, + [SMALL_STATE(2822)] = 161911, + [SMALL_STATE(2823)] = 161925, + [SMALL_STATE(2824)] = 161939, + [SMALL_STATE(2825)] = 161953, + [SMALL_STATE(2826)] = 161967, + [SMALL_STATE(2827)] = 161981, + [SMALL_STATE(2828)] = 161995, + [SMALL_STATE(2829)] = 162009, + [SMALL_STATE(2830)] = 162023, + [SMALL_STATE(2831)] = 162037, + [SMALL_STATE(2832)] = 162051, + [SMALL_STATE(2833)] = 162063, + [SMALL_STATE(2834)] = 162077, + [SMALL_STATE(2835)] = 162091, + [SMALL_STATE(2836)] = 162105, + [SMALL_STATE(2837)] = 162119, + [SMALL_STATE(2838)] = 162129, + [SMALL_STATE(2839)] = 162143, + [SMALL_STATE(2840)] = 162155, + [SMALL_STATE(2841)] = 162169, + [SMALL_STATE(2842)] = 162183, + [SMALL_STATE(2843)] = 162197, + [SMALL_STATE(2844)] = 162211, + [SMALL_STATE(2845)] = 162225, + [SMALL_STATE(2846)] = 162239, + [SMALL_STATE(2847)] = 162253, + [SMALL_STATE(2848)] = 162267, + [SMALL_STATE(2849)] = 162281, + [SMALL_STATE(2850)] = 162295, + [SMALL_STATE(2851)] = 162305, + [SMALL_STATE(2852)] = 162319, + [SMALL_STATE(2853)] = 162333, + [SMALL_STATE(2854)] = 162347, + [SMALL_STATE(2855)] = 162361, + [SMALL_STATE(2856)] = 162375, + [SMALL_STATE(2857)] = 162389, + [SMALL_STATE(2858)] = 162401, + [SMALL_STATE(2859)] = 162415, + [SMALL_STATE(2860)] = 162429, + [SMALL_STATE(2861)] = 162441, + [SMALL_STATE(2862)] = 162455, + [SMALL_STATE(2863)] = 162469, + [SMALL_STATE(2864)] = 162483, + [SMALL_STATE(2865)] = 162497, + [SMALL_STATE(2866)] = 162511, + [SMALL_STATE(2867)] = 162525, + [SMALL_STATE(2868)] = 162539, + [SMALL_STATE(2869)] = 162553, + [SMALL_STATE(2870)] = 162565, + [SMALL_STATE(2871)] = 162579, + [SMALL_STATE(2872)] = 162593, + [SMALL_STATE(2873)] = 162605, + [SMALL_STATE(2874)] = 162619, + [SMALL_STATE(2875)] = 162631, + [SMALL_STATE(2876)] = 162643, + [SMALL_STATE(2877)] = 162657, + [SMALL_STATE(2878)] = 162667, + [SMALL_STATE(2879)] = 162681, + [SMALL_STATE(2880)] = 162695, + [SMALL_STATE(2881)] = 162707, + [SMALL_STATE(2882)] = 162721, + [SMALL_STATE(2883)] = 162735, + [SMALL_STATE(2884)] = 162749, + [SMALL_STATE(2885)] = 162763, + [SMALL_STATE(2886)] = 162777, + [SMALL_STATE(2887)] = 162791, + [SMALL_STATE(2888)] = 162805, + [SMALL_STATE(2889)] = 162819, + [SMALL_STATE(2890)] = 162833, + [SMALL_STATE(2891)] = 162847, + [SMALL_STATE(2892)] = 162861, + [SMALL_STATE(2893)] = 162875, + [SMALL_STATE(2894)] = 162889, + [SMALL_STATE(2895)] = 162903, + [SMALL_STATE(2896)] = 162917, + [SMALL_STATE(2897)] = 162931, + [SMALL_STATE(2898)] = 162945, + [SMALL_STATE(2899)] = 162959, + [SMALL_STATE(2900)] = 162973, + [SMALL_STATE(2901)] = 162985, + [SMALL_STATE(2902)] = 162999, + [SMALL_STATE(2903)] = 163011, + [SMALL_STATE(2904)] = 163025, + [SMALL_STATE(2905)] = 163037, + [SMALL_STATE(2906)] = 163049, + [SMALL_STATE(2907)] = 163061, + [SMALL_STATE(2908)] = 163075, + [SMALL_STATE(2909)] = 163089, + [SMALL_STATE(2910)] = 163101, + [SMALL_STATE(2911)] = 163113, + [SMALL_STATE(2912)] = 163125, + [SMALL_STATE(2913)] = 163139, + [SMALL_STATE(2914)] = 163151, + [SMALL_STATE(2915)] = 163165, + [SMALL_STATE(2916)] = 163177, + [SMALL_STATE(2917)] = 163191, + [SMALL_STATE(2918)] = 163202, + [SMALL_STATE(2919)] = 163213, + [SMALL_STATE(2920)] = 163224, + [SMALL_STATE(2921)] = 163235, + [SMALL_STATE(2922)] = 163246, + [SMALL_STATE(2923)] = 163257, + [SMALL_STATE(2924)] = 163266, + [SMALL_STATE(2925)] = 163277, + [SMALL_STATE(2926)] = 163288, + [SMALL_STATE(2927)] = 163299, + [SMALL_STATE(2928)] = 163310, + [SMALL_STATE(2929)] = 163321, + [SMALL_STATE(2930)] = 163332, + [SMALL_STATE(2931)] = 163343, + [SMALL_STATE(2932)] = 163354, + [SMALL_STATE(2933)] = 163365, + [SMALL_STATE(2934)] = 163376, + [SMALL_STATE(2935)] = 163387, + [SMALL_STATE(2936)] = 163398, + [SMALL_STATE(2937)] = 163409, + [SMALL_STATE(2938)] = 163420, + [SMALL_STATE(2939)] = 163431, + [SMALL_STATE(2940)] = 163442, + [SMALL_STATE(2941)] = 163453, + [SMALL_STATE(2942)] = 163462, + [SMALL_STATE(2943)] = 163473, + [SMALL_STATE(2944)] = 163484, + [SMALL_STATE(2945)] = 163495, + [SMALL_STATE(2946)] = 163506, + [SMALL_STATE(2947)] = 163515, + [SMALL_STATE(2948)] = 163526, + [SMALL_STATE(2949)] = 163537, + [SMALL_STATE(2950)] = 163548, + [SMALL_STATE(2951)] = 163559, + [SMALL_STATE(2952)] = 163570, + [SMALL_STATE(2953)] = 163581, + [SMALL_STATE(2954)] = 163592, + [SMALL_STATE(2955)] = 163601, + [SMALL_STATE(2956)] = 163612, + [SMALL_STATE(2957)] = 163623, + [SMALL_STATE(2958)] = 163634, + [SMALL_STATE(2959)] = 163645, + [SMALL_STATE(2960)] = 163656, + [SMALL_STATE(2961)] = 163667, + [SMALL_STATE(2962)] = 163678, + [SMALL_STATE(2963)] = 163689, + [SMALL_STATE(2964)] = 163700, + [SMALL_STATE(2965)] = 163711, + [SMALL_STATE(2966)] = 163722, + [SMALL_STATE(2967)] = 163731, + [SMALL_STATE(2968)] = 163742, + [SMALL_STATE(2969)] = 163753, + [SMALL_STATE(2970)] = 163764, + [SMALL_STATE(2971)] = 163775, + [SMALL_STATE(2972)] = 163786, + [SMALL_STATE(2973)] = 163797, + [SMALL_STATE(2974)] = 163808, + [SMALL_STATE(2975)] = 163819, + [SMALL_STATE(2976)] = 163830, + [SMALL_STATE(2977)] = 163841, + [SMALL_STATE(2978)] = 163852, + [SMALL_STATE(2979)] = 163863, + [SMALL_STATE(2980)] = 163874, + [SMALL_STATE(2981)] = 163885, + [SMALL_STATE(2982)] = 163896, + [SMALL_STATE(2983)] = 163907, + [SMALL_STATE(2984)] = 163918, + [SMALL_STATE(2985)] = 163929, + [SMALL_STATE(2986)] = 163937, + [SMALL_STATE(2987)] = 163945, + [SMALL_STATE(2988)] = 163953, + [SMALL_STATE(2989)] = 163961, + [SMALL_STATE(2990)] = 163969, + [SMALL_STATE(2991)] = 163977, + [SMALL_STATE(2992)] = 163985, + [SMALL_STATE(2993)] = 163993, + [SMALL_STATE(2994)] = 164001, + [SMALL_STATE(2995)] = 164009, + [SMALL_STATE(2996)] = 164017, + [SMALL_STATE(2997)] = 164025, + [SMALL_STATE(2998)] = 164033, + [SMALL_STATE(2999)] = 164041, + [SMALL_STATE(3000)] = 164049, + [SMALL_STATE(3001)] = 164057, + [SMALL_STATE(3002)] = 164065, + [SMALL_STATE(3003)] = 164073, + [SMALL_STATE(3004)] = 164081, + [SMALL_STATE(3005)] = 164089, + [SMALL_STATE(3006)] = 164097, + [SMALL_STATE(3007)] = 164105, + [SMALL_STATE(3008)] = 164113, + [SMALL_STATE(3009)] = 164121, + [SMALL_STATE(3010)] = 164129, + [SMALL_STATE(3011)] = 164137, + [SMALL_STATE(3012)] = 164145, + [SMALL_STATE(3013)] = 164153, + [SMALL_STATE(3014)] = 164161, + [SMALL_STATE(3015)] = 164169, + [SMALL_STATE(3016)] = 164177, + [SMALL_STATE(3017)] = 164185, + [SMALL_STATE(3018)] = 164193, + [SMALL_STATE(3019)] = 164201, + [SMALL_STATE(3020)] = 164209, + [SMALL_STATE(3021)] = 164217, + [SMALL_STATE(3022)] = 164225, + [SMALL_STATE(3023)] = 164233, + [SMALL_STATE(3024)] = 164241, + [SMALL_STATE(3025)] = 164249, + [SMALL_STATE(3026)] = 164257, + [SMALL_STATE(3027)] = 164265, + [SMALL_STATE(3028)] = 164273, + [SMALL_STATE(3029)] = 164281, + [SMALL_STATE(3030)] = 164289, + [SMALL_STATE(3031)] = 164297, + [SMALL_STATE(3032)] = 164305, + [SMALL_STATE(3033)] = 164313, + [SMALL_STATE(3034)] = 164321, + [SMALL_STATE(3035)] = 164329, + [SMALL_STATE(3036)] = 164337, + [SMALL_STATE(3037)] = 164345, + [SMALL_STATE(3038)] = 164353, + [SMALL_STATE(3039)] = 164361, + [SMALL_STATE(3040)] = 164369, + [SMALL_STATE(3041)] = 164377, + [SMALL_STATE(3042)] = 164385, + [SMALL_STATE(3043)] = 164393, + [SMALL_STATE(3044)] = 164401, + [SMALL_STATE(3045)] = 164409, + [SMALL_STATE(3046)] = 164417, + [SMALL_STATE(3047)] = 164425, + [SMALL_STATE(3048)] = 164433, + [SMALL_STATE(3049)] = 164441, + [SMALL_STATE(3050)] = 164449, + [SMALL_STATE(3051)] = 164457, + [SMALL_STATE(3052)] = 164465, + [SMALL_STATE(3053)] = 164473, + [SMALL_STATE(3054)] = 164481, + [SMALL_STATE(3055)] = 164489, + [SMALL_STATE(3056)] = 164497, + [SMALL_STATE(3057)] = 164505, + [SMALL_STATE(3058)] = 164513, + [SMALL_STATE(3059)] = 164521, + [SMALL_STATE(3060)] = 164529, + [SMALL_STATE(3061)] = 164537, + [SMALL_STATE(3062)] = 164545, + [SMALL_STATE(3063)] = 164553, + [SMALL_STATE(3064)] = 164561, + [SMALL_STATE(3065)] = 164569, + [SMALL_STATE(3066)] = 164577, + [SMALL_STATE(3067)] = 164585, + [SMALL_STATE(3068)] = 164593, + [SMALL_STATE(3069)] = 164601, + [SMALL_STATE(3070)] = 164609, + [SMALL_STATE(3071)] = 164617, + [SMALL_STATE(3072)] = 164625, + [SMALL_STATE(3073)] = 164633, + [SMALL_STATE(3074)] = 164641, + [SMALL_STATE(3075)] = 164649, + [SMALL_STATE(3076)] = 164657, + [SMALL_STATE(3077)] = 164665, + [SMALL_STATE(3078)] = 164673, + [SMALL_STATE(3079)] = 164681, + [SMALL_STATE(3080)] = 164689, + [SMALL_STATE(3081)] = 164697, + [SMALL_STATE(3082)] = 164705, + [SMALL_STATE(3083)] = 164713, + [SMALL_STATE(3084)] = 164721, + [SMALL_STATE(3085)] = 164729, + [SMALL_STATE(3086)] = 164737, + [SMALL_STATE(3087)] = 164745, + [SMALL_STATE(3088)] = 164753, + [SMALL_STATE(3089)] = 164761, + [SMALL_STATE(3090)] = 164769, + [SMALL_STATE(3091)] = 164777, + [SMALL_STATE(3092)] = 164785, + [SMALL_STATE(3093)] = 164793, + [SMALL_STATE(3094)] = 164801, + [SMALL_STATE(3095)] = 164809, + [SMALL_STATE(3096)] = 164817, + [SMALL_STATE(3097)] = 164825, + [SMALL_STATE(3098)] = 164833, + [SMALL_STATE(3099)] = 164841, + [SMALL_STATE(3100)] = 164849, + [SMALL_STATE(3101)] = 164857, + [SMALL_STATE(3102)] = 164865, + [SMALL_STATE(3103)] = 164873, + [SMALL_STATE(3104)] = 164881, + [SMALL_STATE(3105)] = 164889, + [SMALL_STATE(3106)] = 164897, + [SMALL_STATE(3107)] = 164905, + [SMALL_STATE(3108)] = 164913, + [SMALL_STATE(3109)] = 164921, + [SMALL_STATE(3110)] = 164929, + [SMALL_STATE(3111)] = 164937, + [SMALL_STATE(3112)] = 164945, + [SMALL_STATE(3113)] = 164953, + [SMALL_STATE(3114)] = 164961, + [SMALL_STATE(3115)] = 164969, + [SMALL_STATE(3116)] = 164977, + [SMALL_STATE(3117)] = 164985, + [SMALL_STATE(3118)] = 164993, + [SMALL_STATE(3119)] = 165001, + [SMALL_STATE(3120)] = 165009, + [SMALL_STATE(3121)] = 165017, + [SMALL_STATE(3122)] = 165025, + [SMALL_STATE(3123)] = 165033, + [SMALL_STATE(3124)] = 165041, + [SMALL_STATE(3125)] = 165049, + [SMALL_STATE(3126)] = 165057, + [SMALL_STATE(3127)] = 165065, + [SMALL_STATE(3128)] = 165073, + [SMALL_STATE(3129)] = 165081, + [SMALL_STATE(3130)] = 165089, + [SMALL_STATE(3131)] = 165097, + [SMALL_STATE(3132)] = 165105, + [SMALL_STATE(3133)] = 165113, + [SMALL_STATE(3134)] = 165121, + [SMALL_STATE(3135)] = 165129, + [SMALL_STATE(3136)] = 165137, + [SMALL_STATE(3137)] = 165145, + [SMALL_STATE(3138)] = 165153, + [SMALL_STATE(3139)] = 165161, + [SMALL_STATE(3140)] = 165169, + [SMALL_STATE(3141)] = 165177, + [SMALL_STATE(3142)] = 165185, + [SMALL_STATE(3143)] = 165193, + [SMALL_STATE(3144)] = 165201, + [SMALL_STATE(3145)] = 165209, + [SMALL_STATE(3146)] = 165217, + [SMALL_STATE(3147)] = 165225, + [SMALL_STATE(3148)] = 165233, + [SMALL_STATE(3149)] = 165241, + [SMALL_STATE(3150)] = 165249, + [SMALL_STATE(3151)] = 165257, + [SMALL_STATE(3152)] = 165265, + [SMALL_STATE(3153)] = 165273, + [SMALL_STATE(3154)] = 165281, + [SMALL_STATE(3155)] = 165289, + [SMALL_STATE(3156)] = 165297, + [SMALL_STATE(3157)] = 165305, + [SMALL_STATE(3158)] = 165313, + [SMALL_STATE(3159)] = 165321, + [SMALL_STATE(3160)] = 165329, + [SMALL_STATE(3161)] = 165337, + [SMALL_STATE(3162)] = 165345, + [SMALL_STATE(3163)] = 165353, + [SMALL_STATE(3164)] = 165361, + [SMALL_STATE(3165)] = 165369, + [SMALL_STATE(3166)] = 165377, + [SMALL_STATE(3167)] = 165385, + [SMALL_STATE(3168)] = 165393, + [SMALL_STATE(3169)] = 165401, + [SMALL_STATE(3170)] = 165409, + [SMALL_STATE(3171)] = 165417, + [SMALL_STATE(3172)] = 165425, + [SMALL_STATE(3173)] = 165433, + [SMALL_STATE(3174)] = 165441, + [SMALL_STATE(3175)] = 165449, + [SMALL_STATE(3176)] = 165457, + [SMALL_STATE(3177)] = 165465, + [SMALL_STATE(3178)] = 165473, + [SMALL_STATE(3179)] = 165481, + [SMALL_STATE(3180)] = 165489, + [SMALL_STATE(3181)] = 165497, + [SMALL_STATE(3182)] = 165505, + [SMALL_STATE(3183)] = 165513, + [SMALL_STATE(3184)] = 165521, + [SMALL_STATE(3185)] = 165529, + [SMALL_STATE(3186)] = 165537, + [SMALL_STATE(3187)] = 165545, + [SMALL_STATE(3188)] = 165553, + [SMALL_STATE(3189)] = 165561, + [SMALL_STATE(3190)] = 165569, + [SMALL_STATE(3191)] = 165577, + [SMALL_STATE(3192)] = 165585, + [SMALL_STATE(3193)] = 165593, + [SMALL_STATE(3194)] = 165601, + [SMALL_STATE(3195)] = 165609, + [SMALL_STATE(3196)] = 165617, + [SMALL_STATE(3197)] = 165625, + [SMALL_STATE(3198)] = 165633, + [SMALL_STATE(3199)] = 165641, + [SMALL_STATE(3200)] = 165649, + [SMALL_STATE(3201)] = 165657, + [SMALL_STATE(3202)] = 165665, + [SMALL_STATE(3203)] = 165673, + [SMALL_STATE(3204)] = 165681, + [SMALL_STATE(3205)] = 165689, + [SMALL_STATE(3206)] = 165697, + [SMALL_STATE(3207)] = 165705, + [SMALL_STATE(3208)] = 165713, + [SMALL_STATE(3209)] = 165721, + [SMALL_STATE(3210)] = 165729, + [SMALL_STATE(3211)] = 165737, + [SMALL_STATE(3212)] = 165745, + [SMALL_STATE(3213)] = 165753, + [SMALL_STATE(3214)] = 165761, + [SMALL_STATE(3215)] = 165769, + [SMALL_STATE(3216)] = 165777, + [SMALL_STATE(3217)] = 165785, + [SMALL_STATE(3218)] = 165793, + [SMALL_STATE(3219)] = 165801, + [SMALL_STATE(3220)] = 165809, + [SMALL_STATE(3221)] = 165817, + [SMALL_STATE(3222)] = 165825, + [SMALL_STATE(3223)] = 165833, + [SMALL_STATE(3224)] = 165841, + [SMALL_STATE(3225)] = 165849, + [SMALL_STATE(3226)] = 165857, + [SMALL_STATE(3227)] = 165865, + [SMALL_STATE(3228)] = 165873, + [SMALL_STATE(3229)] = 165881, + [SMALL_STATE(3230)] = 165889, + [SMALL_STATE(3231)] = 165897, + [SMALL_STATE(3232)] = 165905, + [SMALL_STATE(3233)] = 165913, + [SMALL_STATE(3234)] = 165921, + [SMALL_STATE(3235)] = 165929, + [SMALL_STATE(3236)] = 165937, + [SMALL_STATE(3237)] = 165945, + [SMALL_STATE(3238)] = 165953, + [SMALL_STATE(3239)] = 165961, + [SMALL_STATE(3240)] = 165969, + [SMALL_STATE(3241)] = 165977, + [SMALL_STATE(3242)] = 165985, + [SMALL_STATE(3243)] = 165993, + [SMALL_STATE(3244)] = 166001, + [SMALL_STATE(3245)] = 166009, + [SMALL_STATE(3246)] = 166017, + [SMALL_STATE(3247)] = 166025, + [SMALL_STATE(3248)] = 166033, + [SMALL_STATE(3249)] = 166041, + [SMALL_STATE(3250)] = 166049, + [SMALL_STATE(3251)] = 166057, + [SMALL_STATE(3252)] = 166065, + [SMALL_STATE(3253)] = 166073, + [SMALL_STATE(3254)] = 166081, + [SMALL_STATE(3255)] = 166089, + [SMALL_STATE(3256)] = 166097, + [SMALL_STATE(3257)] = 166105, + [SMALL_STATE(3258)] = 166113, + [SMALL_STATE(3259)] = 166121, + [SMALL_STATE(3260)] = 166129, + [SMALL_STATE(3261)] = 166137, + [SMALL_STATE(3262)] = 166145, + [SMALL_STATE(3263)] = 166153, + [SMALL_STATE(3264)] = 166161, + [SMALL_STATE(3265)] = 166169, + [SMALL_STATE(3266)] = 166177, + [SMALL_STATE(3267)] = 166185, + [SMALL_STATE(3268)] = 166193, + [SMALL_STATE(3269)] = 166201, + [SMALL_STATE(3270)] = 166209, + [SMALL_STATE(3271)] = 166217, + [SMALL_STATE(3272)] = 166225, + [SMALL_STATE(3273)] = 166233, + [SMALL_STATE(3274)] = 166241, + [SMALL_STATE(3275)] = 166249, + [SMALL_STATE(3276)] = 166257, + [SMALL_STATE(3277)] = 166265, + [SMALL_STATE(3278)] = 166273, + [SMALL_STATE(3279)] = 166281, + [SMALL_STATE(3280)] = 166289, + [SMALL_STATE(3281)] = 166297, + [SMALL_STATE(3282)] = 166305, + [SMALL_STATE(3283)] = 166313, + [SMALL_STATE(3284)] = 166321, + [SMALL_STATE(3285)] = 166329, + [SMALL_STATE(3286)] = 166337, + [SMALL_STATE(3287)] = 166345, + [SMALL_STATE(3288)] = 166353, + [SMALL_STATE(3289)] = 166361, + [SMALL_STATE(3290)] = 166369, + [SMALL_STATE(3291)] = 166377, + [SMALL_STATE(3292)] = 166385, + [SMALL_STATE(3293)] = 166393, + [SMALL_STATE(3294)] = 166401, + [SMALL_STATE(3295)] = 166408, + [SMALL_STATE(3296)] = 166415, + [SMALL_STATE(3297)] = 166422, + [SMALL_STATE(3298)] = 166429, + [SMALL_STATE(3299)] = 166436, + [SMALL_STATE(3300)] = 166443, + [SMALL_STATE(3301)] = 166450, + [SMALL_STATE(3302)] = 166457, + [SMALL_STATE(3303)] = 166464, + [SMALL_STATE(3304)] = 166471, + [SMALL_STATE(3305)] = 166478, + [SMALL_STATE(3306)] = 166485, + [SMALL_STATE(3307)] = 166492, + [SMALL_STATE(3308)] = 166499, + [SMALL_STATE(3309)] = 166506, + [SMALL_STATE(3310)] = 166513, + [SMALL_STATE(3311)] = 166520, + [SMALL_STATE(3312)] = 166527, + [SMALL_STATE(3313)] = 166534, + [SMALL_STATE(3314)] = 166541, + [SMALL_STATE(3315)] = 166548, + [SMALL_STATE(3316)] = 166555, + [SMALL_STATE(3317)] = 166562, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -165409,2460 +166518,2481 @@ 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(1013), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1013), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2600), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3264), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(411), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(432), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(436), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(87), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2606), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(77), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3254), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2205), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2681), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3175), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3173), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3172), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3171), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(481), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3264), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(483), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(675), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3168), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1960), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1960), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2587), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(769), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(86), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2667), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3255), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3133), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3134), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3214), - [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 12), - [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 12), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(171), - [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3235), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(728), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(145), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2612), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(85), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3254), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3235), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(367), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(366), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3059), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(940), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(940), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2592), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(152), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3155), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(786), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(137), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2608), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(76), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3155), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(327), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(343), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3101), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(975), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(975), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2575), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1156), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2986), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(325), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(136), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2629), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(79), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3254), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(803), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2986), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(807), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(806), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3206), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1284), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1284), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2581), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1020), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2614), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3286), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(325), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(338), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(375), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(90), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2641), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(84), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3276), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2130), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2685), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3201), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3195), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3193), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3192), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(494), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3286), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(520), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(524), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3191), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1974), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1974), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2593), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(803), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(91), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2691), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3277), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3151), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2986), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3242), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(154), + [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3032), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(681), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(142), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2621), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(86), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3276), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3032), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(626), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(612), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3077), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(934), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(934), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2598), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(196), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3154), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(794), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(149), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2624), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(88), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3154), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(459), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(481), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3119), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(937), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(937), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2608), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 12), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 12), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1159), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3244), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(457), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(146), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2676), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(83), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3276), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(490), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3244), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(413), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(416), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3241), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1264), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1264), + [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2590), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1477), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2986), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(325), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(136), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2629), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(79), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3254), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(439), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(430), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(458), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3206), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1284), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2581), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 19), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 19), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 14), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 14), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3091), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3091), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 20), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 20), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3155), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3155), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 44), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 44), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2200), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 33), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 33), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 19), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 19), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3235), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3235), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3230), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3230), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 13), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 13), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2141), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 15), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 15), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(677), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3118), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(677), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(678), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(805), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3269), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(805), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(778), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 23), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 23), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 82), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 82), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 11, .production_id = 81), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 11, .production_id = 81), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_operation, 1), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_operation, 1), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 79), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 79), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 78), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 78), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 76), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 76), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 75), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 75), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 72), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 72), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 71), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 71), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 67), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 67), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 63), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 63), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 47), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 47), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 26), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 26), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 56), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 56), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 47), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 47), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 35), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 35), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 26), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 26), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 41), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 41), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 36), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 36), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 35), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 35), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3167), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3167), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2204), - [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2968), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2968), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3058), - [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(401), - [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3081), - [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(401), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(399), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 21), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 21), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 11), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 11), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2986), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3036), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 25), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 25), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 39), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 39), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 40), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 40), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 52), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 52), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(358), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(538), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3057), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(538), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(532), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3049), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2187), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(659), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2110), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(549), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3092), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(549), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(550), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 37), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 37), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 40), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 40), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 25), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 25), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2970), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2978), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2166), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2176), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3082), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2133), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3110), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3130), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(744), - [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(2969), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(744), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(743), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3264), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2131), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 57), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 57), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2134), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 80), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 80), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 77), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 77), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 74), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 74), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 73), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 73), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 70), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 70), - [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(709), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3056), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(709), - [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(702), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 69), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 69), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 68), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 68), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 64), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 64), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 61), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 61), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 60), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 60), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 59), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 59), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 54), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 54), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 51), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 51), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 49), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 49), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 43), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 43), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(334), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3131), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(586), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 42), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 42), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 42), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 42), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 42), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 42), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 38), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 38), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 30), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 30), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 30), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 30), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 4, .production_id = 30), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 4, .production_id = 30), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(397), - [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3212), - [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(397), - [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(398), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3044), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3065), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(748), - [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3040), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(748), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(749), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 29), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 29), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(376), - [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3019), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(376), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(377), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1490), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3244), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(457), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(146), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2676), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(83), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3276), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(461), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(434), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(462), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3241), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1264), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2590), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 19), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 19), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 44), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 44), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 33), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 33), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2159), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 19), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 19), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 13), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 13), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3154), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3154), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3168), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3168), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 14), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 14), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 4), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 4), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 20), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 20), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2225), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3032), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3032), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3057), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3057), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 15), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 15), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(751), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3060), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(751), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(753), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(410), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3283), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(410), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(408), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_operation, 1), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_operation, 1), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 5), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 5), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 5), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 5), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 35), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 35), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 47), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 47), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 56), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 56), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 47), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 47), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 63), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 63), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 68), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 68), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 72), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 72), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 74), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 74), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 77), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 77), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 78), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 78), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 80), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 80), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 81), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 81), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 11, .production_id = 83), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 11, .production_id = 83), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 84), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 84), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 41), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 41), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 36), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 36), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 5), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 5), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 35), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 35), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 26), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 26), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 23), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 23), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 26), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 26), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3107), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3118), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3118), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3128), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3128), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2180), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(613), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3174), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(613), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(611), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 21), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 21), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 11), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 11), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3244), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 25), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 25), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3050), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 39), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 39), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 40), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 40), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 52), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 52), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(705), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(363), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2132), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3044), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(331), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3041), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(331), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(332), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 40), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 40), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 37), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 37), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 25), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 25), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3100), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2208), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2223), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(556), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3251), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(556), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(557), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3112), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3286), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2167), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2123), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2161), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2995), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3001), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3250), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(737), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3097), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(737), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(736), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 51), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 51), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 54), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 54), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 57), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 57), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 59), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 59), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 60), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 60), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 49), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 49), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 43), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 43), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 42), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 42), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 82), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 82), + [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2197), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 79), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 79), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 61), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 61), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 76), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 76), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 8, .production_id = 73), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 8, .production_id = 73), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 7, .production_id = 64), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 7, .production_id = 64), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 71), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 71), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 70), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 70), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 69), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 69), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 65), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 65), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(695), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3129), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(695), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(692), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 42), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 42), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 42), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 42), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 75), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 75), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(781), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3103), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(781), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(702), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(526), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(2994), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(527), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 38), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 38), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 4, .production_id = 30), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 4, .production_id = 30), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 30), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 30), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 30), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 30), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3229), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3183), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(758), + [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3181), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(758), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(759), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 29), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 29), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(396), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3065), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(396), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(394), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 55), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 46), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 28), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 53), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 17), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 28), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 53), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 55), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 28), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 46), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 28), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 17), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 19), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 45), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 19), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(481), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2650), - [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2650), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 45), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(494), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(370), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2995), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 27), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(780), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3140), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2194), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2639), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2639), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2145), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2124), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2260), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2263), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 18), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2146), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 62), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(2659), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(173), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 53), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 48), SHIFT_REPEAT(206), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 48), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 2), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2655), + [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2655), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(678), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3158), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2212), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2648), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2648), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(454), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3062), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2207), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 27), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 62), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), + [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2121), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(2682), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2265), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2279), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 18), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2147), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 53), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 67), SHIFT_REPEAT(3237), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 67), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2137), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2805), - [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(222), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2175), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 2), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(2210), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), - [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(318), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 66), SHIFT_REPEAT(2983), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 66), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2193), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 58), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 10), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 2), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 2), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(241), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 48), SHIFT_REPEAT(268), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 48), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(320), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(2166), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2189), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2881), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(184), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 10), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 58), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1, .production_id = 34), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 17), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 24), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 65), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 17), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 24), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1, .production_id = 34), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [4861] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [4907] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 66), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), }; #ifdef __cplusplus diff --git a/test/corpus/schema.txt b/test/corpus/schema.txt index a773efd..82a70a1 100644 --- a/test/corpus/schema.txt +++ b/test/corpus/schema.txt @@ -321,4 +321,28 @@ schema Environment: (identifier))) (test (dotted_name - (identifier))))))))))) \ No newline at end of file + (identifier))))))))))) + +================================================================================ +Schema index signature attribute alias +================================================================================ + +schema employee(person): + bankCard: int + gender: str + +-------------------------------------------------------------------------------- + +(module + (schema_statement + (identifier) + (identifier) + (block + (assignment + (dotted_name + (identifier)) + (basic_type)) + (assignment + (dotted_name + (identifier)) + (basic_type))))) \ No newline at end of file From 4585159ee5a73e04ce86848adfec32e9f1e9af5a Mon Sep 17 00:00:00 2001 From: Vishal Date: Sat, 3 Aug 2024 18:53:01 +0530 Subject: [PATCH 2/3] Added Rules with conditions Signed-off-by: Vishal --- grammar.js | 74 +- src/grammar.json | 273 +- src/node-types.json | 100 +- src/parser.c | 409737 +++++++++++++++++++++++++++----------- test/corpus/schema.txt | 53 +- 5 files changed, 298321 insertions(+), 111916 deletions(-) diff --git a/grammar.js b/grammar.js index 993db44..005066f 100644 --- a/grammar.js +++ b/grammar.js @@ -259,6 +259,7 @@ module.exports = grammar({ _compound_statement: $ => choice( $.if_statement, + $.if_rule_statement, $.schema_index_signature, // TODO: schema and rule statement grammars $.schema_statement, @@ -269,24 +270,59 @@ module.exports = grammar({ $.decorated_definition, ), - if_statement: $ => choice(seq( - 'if', - field('condition', $.expression), - ':', - field('consequence', $._suite), - repeat(field('alternative', $.elif_clause)), - optional(field('alternative', $.else_clause)), - ), + if_statement: $ => choice( + seq( + 'if', + field('condition', $.expression), + optional(':'), + field('consequence', $._suite), + repeat(field('alternative', $.elif_clause)), + optional(field('alternative', $.else_clause)), + ), seq( field('condition',$.expression), ',', field('error_message', $.string), - ), + ), + $.conditional_expression, seq( field('expr1',$.expression), 'if', - field('condition',$.expression), + field('condition', $.expression), + ) + ), + + if_rule_statement: $ => prec.left(4, choice( + seq( + 'if', + field('condition', $.expression), + optional(seq(':', field('separator', $.string))), + field('consequence', $._suite), + repeat(field('alternative', $.elif_clause)), + optional(field('alternative', $.else_clause)), + ), + seq( + field('condition', $.expression), + ',', + field('error_message', $.string), + ), + seq( + field('expr1', $.expression), + 'if', + field('condition', $.expression), + ) + )), + + rule_statement: $ => seq( + 'rule', + field('name', $.identifier), + optional(seq( + 'for', + field('protocol', $.identifier) )), + ':', + field('body', $._suite) + ), elif_clause: $ => seq( 'elif', @@ -352,7 +388,7 @@ module.exports = grammar({ field('quant_op', $.quant_op), optional(seq( field('identifier', $.identifier), - ',', + ',' )), field('identifier', $.identifier), 'in', @@ -369,7 +405,7 @@ module.exports = grammar({ 'if', field('expr2', $.expression) )), - '}', + '}' )), quant_target: $ => prec(1, choice( @@ -452,6 +488,10 @@ module.exports = grammar({ rule_statement: $ => seq( 'rule', field('name', $.identifier), + optional(seq( + 'for', + field('protocol', $.identifier), + )), ':', field('body', $._suite), ), @@ -542,6 +582,7 @@ module.exports = grammar({ // Expressions expression: $ => prec(1, choice( + $.conditional_expression, $.sequence_operation, $.comparison_operator, $.not_operator, @@ -549,7 +590,6 @@ module.exports = grammar({ $.selector_expression, $.primary_expression, $.as_expression, - $.conditional_expression, $.long_expression, )), @@ -595,7 +635,7 @@ module.exports = grammar({ $.null_coalesce, $.string_literal_expr, $.config_expr, - $.selector_expression + $.selector_expression, )), paren_expression: $ => seq( @@ -969,12 +1009,12 @@ module.exports = grammar({ $.expression, ), - conditional_expression: $ => prec.right(PREC.conditional, seq( + conditional_expression: $ => prec.right(PREC.conditional + 24, seq( $.expression, 'if', $.expression, - 'else', - $.expression, + optional('else'), + optional($.expression), )), raw_string: $ => prec(64, seq( diff --git a/src/grammar.json b/src/grammar.json index 67aa4dd..1e49b2a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -213,6 +213,10 @@ "type": "SYMBOL", "name": "if_statement" }, + { + "type": "SYMBOL", + "name": "if_rule_statement" + }, { "type": "SYMBOL", "name": "schema_index_signature" @@ -262,8 +266,16 @@ } }, { - "type": "STRING", - "value": ":" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "BLANK" + } + ] }, { "type": "FIELD", @@ -327,6 +339,10 @@ } ] }, + { + "type": "SYMBOL", + "name": "conditional_expression" + }, { "type": "SEQ", "members": [ @@ -354,6 +370,196 @@ } ] }, + "if_rule_statement": { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "separator", + "content": { + "type": "SYMBOL", + "name": "string" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "elif_clause" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "error_message", + "content": { + "type": "SYMBOL", + "name": "string" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "expr1", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + ] + } + }, + "rule_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "rule" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "FIELD", + "name": "protocol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, "elif_clause": { "type": "SEQ", "members": [ @@ -1076,35 +1282,6 @@ } ] }, - "rule_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "rule" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_suite" - } - } - ] - }, "check_statement": { "type": "PREC_LEFT", "value": 0, @@ -1526,6 +1703,10 @@ "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "conditional_expression" + }, { "type": "SYMBOL", "name": "sequence_operation" @@ -1554,10 +1735,6 @@ "type": "SYMBOL", "name": "as_expression" }, - { - "type": "SYMBOL", - "name": "conditional_expression" - }, { "type": "SYMBOL", "name": "long_expression" @@ -4257,7 +4434,7 @@ }, "conditional_expression": { "type": "PREC_RIGHT", - "value": -1, + "value": 23, "content": { "type": "SEQ", "members": [ @@ -4274,12 +4451,28 @@ "name": "expression" }, { - "type": "STRING", - "value": "else" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "BLANK" + } + ] }, { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] } ] } diff --git a/src/node-types.json b/src/node-types.json index fb8242b..3d9e1b0 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -11,6 +11,10 @@ "type": "decorated_definition", "named": true }, + { + "type": "if_rule_statement", + "named": true + }, { "type": "if_statement", "named": true @@ -1188,7 +1192,7 @@ } }, { - "type": "if_statement", + "type": "if_rule_statement", "named": true, "fields": { "alternative": { @@ -1235,6 +1239,76 @@ } ] }, + "expr1": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "separator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "string", + "named": true + } + ] + } + } + }, + { + "type": "if_statement", + "named": true, + "fields": { + "alternative": { + "multiple": true, + "required": false, + "types": [ + { + "type": "elif_clause", + "named": true + }, + { + "type": "else_clause", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": false, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "error_message": { + "multiple": false, + "required": false, + "types": [ + { + "type": "string", + "named": true + } + ] + }, "expr1": { "multiple": false, "required": false, @@ -1245,6 +1319,16 @@ } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "conditional_expression", + "named": true + } + ] } }, { @@ -1965,6 +2049,16 @@ "named": true } ] + }, + "protocol": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] } } }, @@ -2786,11 +2880,11 @@ }, { "type": "float", - "named": false + "named": true }, { "type": "float", - "named": true + "named": false }, { "type": "for", diff --git a/src/parser.c b/src/parser.c index cbf9191..bee6ea7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3318 -#define LARGE_STATE_COUNT 199 +#define STATE_COUNT 6407 +#define LARGE_STATE_COUNT 452 #define SYMBOL_COUNT 227 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 114 +#define TOKEN_COUNT 113 #define EXTERNAL_TOKEN_COUNT 11 -#define FIELD_COUNT 43 +#define FIELD_COUNT 44 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 85 +#define PRODUCTION_ID_COUNT 101 enum { sym_identifier = 1, @@ -25,31 +25,31 @@ enum { anon_sym_if = 6, anon_sym_COMMA = 7, anon_sym_COLON = 8, - anon_sym_elif = 9, - anon_sym_else = 10, - anon_sym_LPAREN = 11, - anon_sym_RPAREN = 12, - anon_sym_LBRACK = 13, - anon_sym_DOT_DOT_DOT = 14, - anon_sym_RBRACK = 15, - anon_sym_EQ = 16, - anon_sym_lambda = 17, - anon_sym_DASH_GT = 18, - anon_sym_LBRACE = 19, - anon_sym_RBRACE = 20, - anon_sym_in = 21, - anon_sym_all = 22, - anon_sym_any = 23, - anon_sym_filter = 24, - anon_sym_map = 25, - anon_sym_STAR = 26, - anon_sym_STAR_STAR = 27, - anon_sym_type = 28, - anon_sym_schema = 29, - anon_sym_mixin = 30, - anon_sym_for = 31, - anon_sym_protocol = 32, - anon_sym_rule = 33, + anon_sym_rule = 9, + anon_sym_for = 10, + anon_sym_elif = 11, + anon_sym_else = 12, + anon_sym_LPAREN = 13, + anon_sym_RPAREN = 14, + anon_sym_LBRACK = 15, + anon_sym_DOT_DOT_DOT = 16, + anon_sym_RBRACK = 17, + anon_sym_EQ = 18, + anon_sym_lambda = 19, + anon_sym_DASH_GT = 20, + anon_sym_LBRACE = 21, + anon_sym_RBRACE = 22, + anon_sym_in = 23, + anon_sym_all = 24, + anon_sym_any = 25, + anon_sym_filter = 26, + anon_sym_map = 27, + anon_sym_STAR = 28, + anon_sym_STAR_STAR = 29, + anon_sym_type = 30, + anon_sym_schema = 31, + anon_sym_mixin = 32, + anon_sym_protocol = 33, anon_sym_check = 34, anon_sym_AT = 35, anon_sym_QMARK_DOT = 36, @@ -98,63 +98,63 @@ enum { anon_sym_int = 79, anon_sym_float = 80, anon_sym_bool = 81, - sym_raw_string_start = 82, - sym_escape_interpolation = 83, - sym_escape_sequence = 84, - sym__not_escape_sequence = 85, - sym__string_content = 86, - sym_integer = 87, - sym_float = 88, - sym_true = 89, - sym_false = 90, - sym_none = 91, - sym_undefined = 92, - anon_sym_n = 93, - anon_sym_u = 94, - anon_sym_m = 95, - anon_sym_k = 96, - anon_sym_K = 97, - anon_sym_M = 98, - anon_sym_G = 99, - anon_sym_T = 100, - anon_sym_P = 101, - anon_sym_Ki = 102, - anon_sym_Mi = 103, - anon_sym_Gi = 104, - anon_sym_Ti = 105, - anon_sym_Pi = 106, - sym_comment = 107, - sym_line_continuation = 108, - sym__newline = 109, - sym__indent = 110, - sym__dedent = 111, - sym_string_start = 112, - sym_string_end = 113, - sym_module = 114, - sym__statement = 115, - sym__simple_statements = 116, - sym_import_statement = 117, - sym_import_prefix = 118, - sym__import_list = 119, - sym_aliased_import = 120, - sym_assert_statement = 121, - sym_if_statement = 122, - sym_elif_clause = 123, - sym_else_clause = 124, - sym_schema_expr = 125, - sym_schema_instantiation = 126, - sym_schema_index_signature = 127, - sym_lambda_expr = 128, - sym_quant_expr = 129, - sym_quant_target = 130, - sym_quant_op = 131, - sym_list_splat = 132, - sym_dictionary_splat = 133, - sym_type_alias_statement = 134, - sym_schema_statement = 135, - sym_mixin_statement = 136, - sym_protocol_statement = 137, - sym_rule_statement = 138, + sym_escape_interpolation = 82, + sym_escape_sequence = 83, + sym__not_escape_sequence = 84, + sym__string_content = 85, + sym_integer = 86, + sym_float = 87, + sym_true = 88, + sym_false = 89, + sym_none = 90, + sym_undefined = 91, + anon_sym_n = 92, + anon_sym_u = 93, + anon_sym_m = 94, + anon_sym_k = 95, + anon_sym_K = 96, + anon_sym_M = 97, + anon_sym_G = 98, + anon_sym_T = 99, + anon_sym_P = 100, + anon_sym_Ki = 101, + anon_sym_Mi = 102, + anon_sym_Gi = 103, + anon_sym_Ti = 104, + anon_sym_Pi = 105, + sym_comment = 106, + sym_line_continuation = 107, + sym__newline = 108, + sym__indent = 109, + sym__dedent = 110, + sym_string_start = 111, + sym_string_end = 112, + sym_module = 113, + sym__statement = 114, + sym__simple_statements = 115, + sym_import_statement = 116, + sym_import_prefix = 117, + sym__import_list = 118, + sym_aliased_import = 119, + sym_assert_statement = 120, + sym_if_statement = 121, + sym_if_rule_statement = 122, + sym_rule_statement = 123, + sym_elif_clause = 124, + sym_else_clause = 125, + sym_schema_expr = 126, + sym_schema_instantiation = 127, + sym_schema_index_signature = 128, + sym_lambda_expr = 129, + sym_quant_expr = 130, + sym_quant_target = 131, + sym_quant_op = 132, + sym_list_splat = 133, + sym_dictionary_splat = 134, + sym_type_alias_statement = 135, + sym_schema_statement = 136, + sym_mixin_statement = 137, + sym_protocol_statement = 138, sym_check_statement = 139, sym_argument_list = 140, sym_decorated_definition = 141, @@ -258,6 +258,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_if] = "if", [anon_sym_COMMA] = ",", [anon_sym_COLON] = ":", + [anon_sym_rule] = "rule", + [anon_sym_for] = "for", [anon_sym_elif] = "elif", [anon_sym_else] = "else", [anon_sym_LPAREN] = "(", @@ -280,9 +282,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_type] = "type", [anon_sym_schema] = "schema", [anon_sym_mixin] = "mixin", - [anon_sym_for] = "for", [anon_sym_protocol] = "protocol", - [anon_sym_rule] = "rule", [anon_sym_check] = "check", [anon_sym_AT] = "@", [anon_sym_QMARK_DOT] = "\?.", @@ -331,7 +331,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_int] = "int", [anon_sym_float] = "float", [anon_sym_bool] = "bool", - [sym_raw_string_start] = "raw_string_start", [sym_escape_interpolation] = "escape_interpolation", [sym_escape_sequence] = "escape_sequence", [sym__not_escape_sequence] = "_not_escape_sequence", @@ -372,6 +371,8 @@ static const char * const ts_symbol_names[] = { [sym_aliased_import] = "aliased_import", [sym_assert_statement] = "assert_statement", [sym_if_statement] = "if_statement", + [sym_if_rule_statement] = "if_rule_statement", + [sym_rule_statement] = "rule_statement", [sym_elif_clause] = "elif_clause", [sym_else_clause] = "else_clause", [sym_schema_expr] = "schema_expr", @@ -387,7 +388,6 @@ static const char * const ts_symbol_names[] = { [sym_schema_statement] = "schema_statement", [sym_mixin_statement] = "mixin_statement", [sym_protocol_statement] = "protocol_statement", - [sym_rule_statement] = "rule_statement", [sym_check_statement] = "check_statement", [sym_argument_list] = "argument_list", [sym_decorated_definition] = "decorated_definition", @@ -491,6 +491,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_if] = anon_sym_if, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_rule] = anon_sym_rule, + [anon_sym_for] = anon_sym_for, [anon_sym_elif] = anon_sym_elif, [anon_sym_else] = anon_sym_else, [anon_sym_LPAREN] = anon_sym_LPAREN, @@ -513,9 +515,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_type] = anon_sym_type, [anon_sym_schema] = anon_sym_schema, [anon_sym_mixin] = anon_sym_mixin, - [anon_sym_for] = anon_sym_for, [anon_sym_protocol] = anon_sym_protocol, - [anon_sym_rule] = anon_sym_rule, [anon_sym_check] = anon_sym_check, [anon_sym_AT] = anon_sym_AT, [anon_sym_QMARK_DOT] = anon_sym_QMARK_DOT, @@ -564,7 +564,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_int] = anon_sym_int, [anon_sym_float] = anon_sym_float, [anon_sym_bool] = anon_sym_bool, - [sym_raw_string_start] = sym_raw_string_start, [sym_escape_interpolation] = sym_escape_interpolation, [sym_escape_sequence] = sym_escape_sequence, [sym__not_escape_sequence] = sym__not_escape_sequence, @@ -605,6 +604,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_aliased_import] = sym_aliased_import, [sym_assert_statement] = sym_assert_statement, [sym_if_statement] = sym_if_statement, + [sym_if_rule_statement] = sym_if_rule_statement, + [sym_rule_statement] = sym_rule_statement, [sym_elif_clause] = sym_elif_clause, [sym_else_clause] = sym_else_clause, [sym_schema_expr] = sym_schema_expr, @@ -620,7 +621,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_schema_statement] = sym_schema_statement, [sym_mixin_statement] = sym_mixin_statement, [sym_protocol_statement] = sym_protocol_statement, - [sym_rule_statement] = sym_rule_statement, [sym_check_statement] = sym_check_statement, [sym_argument_list] = sym_argument_list, [sym_decorated_definition] = sym_decorated_definition, @@ -751,6 +751,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_rule] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, [anon_sym_elif] = { .visible = true, .named = false, @@ -839,18 +847,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_for] = { - .visible = true, - .named = false, - }, [anon_sym_protocol] = { .visible = true, .named = false, }, - [anon_sym_rule] = { - .visible = true, - .named = false, - }, [anon_sym_check] = { .visible = true, .named = false, @@ -1043,10 +1043,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_raw_string_start] = { - .visible = true, - .named = true, - }, [sym_escape_interpolation] = { .visible = true, .named = true, @@ -1207,6 +1203,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_if_rule_statement] = { + .visible = true, + .named = true, + }, + [sym_rule_statement] = { + .visible = true, + .named = true, + }, [sym_elif_clause] = { .visible = true, .named = true, @@ -1267,10 +1271,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_rule_statement] = { - .visible = true, - .named = true, - }, [sym_check_statement] = { .visible = true, .named = true, @@ -1679,11 +1679,12 @@ enum { field_quant_target = 36, field_return_type = 37, field_right = 38, - field_string = 39, - field_subscript = 40, - field_type = 41, - field_value = 42, - field_value_type = 43, + field_separator = 39, + field_string = 40, + field_subscript = 41, + field_type = 42, + field_value = 43, + field_value_type = 44, }; static const char * const ts_field_names[] = { @@ -1726,6 +1727,7 @@ static const char * const ts_field_names[] = { [field_quant_target] = "quant_target", [field_return_type] = "return_type", [field_right] = "right", + [field_separator] = "separator", [field_string] = "string", [field_subscript] = "subscript", [field_type] = "type", @@ -1744,80 +1746,96 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [8] = {.index = 9, .length = 2}, [9] = {.index = 11, .length = 1}, [10] = {.index = 12, .length = 1}, - [11] = {.index = 13, .length = 1}, - [12] = {.index = 14, .length = 2}, - [13] = {.index = 16, .length = 1}, - [14] = {.index = 17, .length = 3}, - [15] = {.index = 20, .length = 2}, + [11] = {.index = 13, .length = 2}, + [12] = {.index = 15, .length = 1}, + [13] = {.index = 16, .length = 2}, + [14] = {.index = 18, .length = 1}, + [15] = {.index = 19, .length = 3}, [16] = {.index = 22, .length = 2}, [17] = {.index = 24, .length = 2}, [18] = {.index = 26, .length = 2}, - [19] = {.index = 28, .length = 3}, - [20] = {.index = 31, .length = 1}, - [21] = {.index = 32, .length = 2}, + [19] = {.index = 28, .length = 2}, + [20] = {.index = 30, .length = 3}, + [21] = {.index = 33, .length = 1}, [22] = {.index = 34, .length = 2}, [23] = {.index = 36, .length = 2}, [24] = {.index = 38, .length = 2}, [25] = {.index = 40, .length = 2}, [26] = {.index = 42, .length = 1}, - [27] = {.index = 43, .length = 1}, - [28] = {.index = 44, .length = 2}, - [29] = {.index = 46, .length = 2}, - [30] = {.index = 48, .length = 2}, - [31] = {.index = 50, .length = 4}, - [32] = {.index = 54, .length = 2}, - [33] = {.index = 54, .length = 2}, - [34] = {.index = 56, .length = 1}, - [35] = {.index = 57, .length = 2}, - [36] = {.index = 59, .length = 2}, - [37] = {.index = 61, .length = 1}, - [38] = {.index = 62, .length = 3}, - [39] = {.index = 65, .length = 3}, - [40] = {.index = 68, .length = 3}, + [27] = {.index = 43, .length = 3}, + [28] = {.index = 46, .length = 3}, + [29] = {.index = 49, .length = 3}, + [30] = {.index = 52, .length = 2}, + [31] = {.index = 54, .length = 2}, + [32] = {.index = 56, .length = 1}, + [33] = {.index = 57, .length = 1}, + [34] = {.index = 58, .length = 2}, + [35] = {.index = 60, .length = 2}, + [36] = {.index = 62, .length = 4}, + [37] = {.index = 66, .length = 2}, + [38] = {.index = 66, .length = 2}, + [39] = {.index = 68, .length = 1}, + [40] = {.index = 69, .length = 2}, [41] = {.index = 71, .length = 2}, - [42] = {.index = 73, .length = 3}, - [43] = {.index = 76, .length = 2}, - [44] = {.index = 78, .length = 4}, - [45] = {.index = 82, .length = 3}, - [46] = {.index = 85, .length = 1}, - [47] = {.index = 86, .length = 3}, - [48] = {.index = 89, .length = 2}, - [49] = {.index = 91, .length = 4}, - [50] = {.index = 95, .length = 2}, - [51] = {.index = 97, .length = 4}, - [52] = {.index = 101, .length = 4}, - [53] = {.index = 105, .length = 2}, - [54] = {.index = 107, .length = 2}, - [55] = {.index = 109, .length = 3}, - [56] = {.index = 112, .length = 3}, - [57] = {.index = 115, .length = 3}, - [58] = {.index = 118, .length = 1}, - [59] = {.index = 119, .length = 1}, - [60] = {.index = 120, .length = 5}, - [61] = {.index = 125, .length = 2}, - [62] = {.index = 127, .length = 1}, - [63] = {.index = 128, .length = 3}, - [64] = {.index = 131, .length = 3}, - [65] = {.index = 134, .length = 4}, - [66] = {.index = 138, .length = 2}, - [67] = {.index = 140, .length = 2}, - [68] = {.index = 142, .length = 4}, - [69] = {.index = 146, .length = 2}, - [70] = {.index = 148, .length = 3}, - [71] = {.index = 151, .length = 3}, - [72] = {.index = 154, .length = 4}, - [73] = {.index = 158, .length = 4}, - [74] = {.index = 162, .length = 5}, - [75] = {.index = 167, .length = 3}, - [76] = {.index = 170, .length = 3}, - [77] = {.index = 173, .length = 5}, - [78] = {.index = 178, .length = 5}, - [79] = {.index = 183, .length = 4}, - [80] = {.index = 187, .length = 6}, - [81] = {.index = 193, .length = 6}, - [82] = {.index = 199, .length = 4}, - [83] = {.index = 203, .length = 6}, - [84] = {.index = 209, .length = 7}, + [42] = {.index = 73, .length = 4}, + [43] = {.index = 77, .length = 2}, + [44] = {.index = 79, .length = 4}, + [45] = {.index = 83, .length = 4}, + [46] = {.index = 87, .length = 3}, + [47] = {.index = 90, .length = 3}, + [48] = {.index = 93, .length = 3}, + [49] = {.index = 96, .length = 3}, + [50] = {.index = 99, .length = 3}, + [51] = {.index = 102, .length = 2}, + [52] = {.index = 104, .length = 2}, + [53] = {.index = 106, .length = 4}, + [54] = {.index = 110, .length = 3}, + [55] = {.index = 113, .length = 1}, + [56] = {.index = 114, .length = 3}, + [57] = {.index = 117, .length = 2}, + [58] = {.index = 119, .length = 1}, + [59] = {.index = 120, .length = 5}, + [60] = {.index = 125, .length = 4}, + [61] = {.index = 129, .length = 4}, + [62] = {.index = 133, .length = 4}, + [63] = {.index = 137, .length = 4}, + [64] = {.index = 141, .length = 4}, + [65] = {.index = 145, .length = 4}, + [66] = {.index = 149, .length = 3}, + [67] = {.index = 152, .length = 2}, + [68] = {.index = 154, .length = 2}, + [69] = {.index = 156, .length = 3}, + [70] = {.index = 159, .length = 3}, + [71] = {.index = 162, .length = 1}, + [72] = {.index = 163, .length = 2}, + [73] = {.index = 165, .length = 5}, + [74] = {.index = 170, .length = 5}, + [75] = {.index = 175, .length = 5}, + [76] = {.index = 180, .length = 5}, + [77] = {.index = 185, .length = 4}, + [78] = {.index = 189, .length = 2}, + [79] = {.index = 191, .length = 1}, + [80] = {.index = 192, .length = 3}, + [81] = {.index = 195, .length = 3}, + [82] = {.index = 198, .length = 2}, + [83] = {.index = 200, .length = 2}, + [84] = {.index = 202, .length = 4}, + [85] = {.index = 206, .length = 6}, + [86] = {.index = 212, .length = 3}, + [87] = {.index = 215, .length = 3}, + [88] = {.index = 218, .length = 4}, + [89] = {.index = 222, .length = 4}, + [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}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1845,274 +1863,354 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [12] = {field_name, 1}, [13] = + {field_condition, 1}, + {field_consequence, 2}, + [15] = {field_expr1, 0}, - [14] = + [16] = {field_error_message, 2, .inherited = true}, {field_expr1, 2, .inherited = true}, - [16] = + [18] = {field_operators, 0}, - [17] = + [19] = {field_is_mutable, 1}, {field_name, 0}, {field_type, 2}, - [20] = + [22] = {field_attribute, 0}, {field_type, 2}, - [22] = + [24] = {field_operators, 0, .inherited = true}, {field_operators, 1, .inherited = true}, - [24] = + [26] = {field_left, 0}, {field_right, 2}, - [26] = + [28] = {field_left, 0}, {field_type, 2}, - [28] = + [30] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [31] = + [33] = {field_alias, 2}, - [32] = + [34] = {field_condition, 2}, {field_expr1, 0}, - [34] = + [36] = {field_condition, 0}, {field_error_message, 2}, - [36] = + [38] = {field_attribute, 2}, {field_object, 0}, - [38] = + [40] = {field_alias, 2}, {field_name, 0}, - [40] = + [42] = + {field_alternative, 0}, + [43] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [46] = + {field_alternative, 3, .inherited = true}, + {field_condition, 1}, + {field_consequence, 2}, + [49] = {field_condition, 1}, + {field_consequence, 2}, {field_consequence, 3}, - [42] = + [52] = + {field_condition, 1}, + {field_consequence, 3}, + [54] = + {field_body, 3}, + {field_name, 1}, + [56] = {field_body, 1}, - [43] = + [57] = {field_type, 2}, - [44] = + [58] = {field_name, 0}, {field_value, 2}, - [46] = + [60] = {field_key, 0}, {field_value, 2}, - [48] = - {field_body, 3}, - {field_name, 1}, - [50] = + [62] = {field_error_message, 0, .inherited = true}, {field_error_message, 1, .inherited = true}, {field_expr1, 0, .inherited = true}, {field_expr1, 1, .inherited = true}, - [54] = + [66] = {field_operators, 0}, {field_operators, 1}, - [56] = + [68] = {field_dictionary_or_list, 0}, - [57] = + [69] = {field_subscript, 2}, {field_value, 0}, - [59] = + [71] = {field_index, 2}, {field_object, 0}, - [61] = - {field_alternative, 0}, - [62] = + [73] = + {field_alternative, 3, .inherited = true}, + {field_alternative, 4}, + {field_condition, 1}, + {field_consequence, 2}, + [77] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [79] = {field_alternative, 4}, {field_condition, 1}, + {field_consequence, 2}, {field_consequence, 3}, - [65] = + [83] = {field_alternative, 4, .inherited = true}, {field_condition, 1}, + {field_consequence, 2}, {field_consequence, 3}, - [68] = + [87] = + {field_alternative, 4}, + {field_condition, 1}, + {field_consequence, 3}, + [90] = + {field_alternative, 4, .inherited = true}, + {field_condition, 1}, + {field_consequence, 3}, + [93] = {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [71] = - {field_body, 3}, - {field_parameters, 1}, - [73] = + [96] = + {field_condition, 1}, + {field_consequence, 4}, + {field_separator, 3}, + [99] = {field_body, 3}, {field_body, 4}, {field_name, 1}, - [76] = + [102] = + {field_body, 3}, + {field_parameters, 1}, + [104] = {field_error_message, 2}, {field_expr1, 0}, - [78] = + [106] = {field_is_mutable, 1}, {field_name, 0}, {field_type, 2}, {field_value, 4}, - [82] = + [110] = {field_left, 0}, {field_right, 4}, {field_type, 2}, - [85] = + [113] = {field_subscript, 1}, - [86] = + [114] = {field_subscript, 2}, {field_subscript, 3, .inherited = true}, {field_value, 0}, - [89] = + [117] = {field_subscript, 0, .inherited = true}, {field_subscript, 1, .inherited = true}, - [91] = + [119] = + {field_body, 2}, + [120] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, + {field_consequence, 2}, {field_consequence, 3}, - [95] = - {field_alternative, 0, .inherited = true}, - {field_alternative, 1, .inherited = true}, - [97] = + [125] = + {field_alternative, 4, .inherited = true}, + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 3}, + [129] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [101] = + [133] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [105] = + [137] = + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 4}, + {field_separator, 3}, + [141] = + {field_alternative, 5, .inherited = true}, + {field_condition, 1}, + {field_consequence, 4}, + {field_separator, 3}, + [145] = + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence, 5}, + {field_separator, 3}, + [149] = + {field_body, 5}, + {field_name, 1}, + {field_protocol, 3}, + [152] = {field_left, 1}, {field_right, 3}, - [107] = + [154] = {field_key_type, 1}, {field_value_type, 4}, - [109] = + [156] = {field_name, 0}, {field_type, 2}, {field_value, 4}, - [112] = + [159] = {field_body, 3}, {field_body, 4}, {field_parameters, 1}, - [115] = - {field_body, 5}, - {field_name, 1}, - {field_protocol, 3}, - [118] = + [162] = {field_integer, 1}, - [119] = + [163] = {field_body, 2}, - [120] = + {field_body, 3}, + [165] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [125] = + [170] = + {field_alternative, 5, .inherited = true}, + {field_alternative, 6}, + {field_condition, 1}, + {field_consequence, 4}, + {field_separator, 3}, + [175] = + {field_alternative, 6}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence, 5}, + {field_separator, 3}, + [180] = + {field_alternative, 6, .inherited = true}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence, 5}, + {field_separator, 3}, + [185] = + {field_body, 5}, + {field_body, 6}, + {field_name, 1}, + {field_protocol, 3}, + [189] = {field_key_type, 2}, {field_value_type, 5}, - [127] = + [191] = {field_type, 4}, - [128] = + [192] = {field_body, 5}, {field_parameters, 1}, {field_return_type, 3}, - [131] = + [195] = {field_base, 3}, {field_body, 6}, {field_name, 1}, - [134] = - {field_body, 5}, - {field_body, 6}, - {field_name, 1}, - {field_protocol, 3}, - [138] = + [198] = {field_integer, 1}, {field_integer, 2, .inherited = true}, - [140] = + [200] = {field_integer, 0, .inherited = true}, {field_integer, 1, .inherited = true}, - [142] = + [202] = {field_expr1, 5}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, - [146] = - {field_body, 2}, - {field_body, 3}, - [148] = + [206] = + {field_alternative, 6, .inherited = true}, + {field_alternative, 7}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence, 5}, + {field_separator, 3}, + [212] = {field_attr_alias, 1}, {field_key_type, 3}, {field_value_type, 6}, - [151] = + [215] = {field_default, 6}, {field_key_type, 1}, {field_value_type, 4}, - [154] = + [218] = {field_body, 5}, {field_body, 6}, {field_parameters, 1}, {field_return_type, 3}, - [158] = + [222] = {field_base, 3}, {field_body, 6}, {field_body, 7}, {field_name, 1}, - [162] = + [226] = {field_dotted_name, 5}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, {field_string, 6}, - [167] = + [231] = {field_default, 7}, {field_key_type, 2}, {field_value_type, 5}, - [170] = + [234] = {field_attr_alias, 1}, {field_key_type, 4}, {field_value_type, 7}, - [173] = + [237] = {field_expr1, 7}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, - [178] = + [242] = {field_expr1, 5}, {field_expr2, 7}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, - [183] = + [247] = {field_attr_alias, 1}, {field_default, 8}, {field_key_type, 3}, {field_value_type, 6}, - [187] = + [251] = {field_dotted_name, 7}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, {field_string, 8}, - [193] = + [257] = {field_dotted_name, 5}, {field_expr2, 8}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, {field_string, 6}, - [199] = + [263] = {field_attr_alias, 1}, {field_default, 9}, {field_key_type, 4}, {field_value_type, 7}, - [203] = + [267] = {field_expr1, 7}, {field_expr2, 9}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, - [209] = + [273] = {field_dotted_name, 7}, {field_expr2, 10}, {field_identifier, 1}, @@ -2124,46 +2222,70 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [18] = { + [11] = { + [2] = sym_block, + }, + [19] = { [1] = anon_alias_sym_null_assignment, [2] = anon_alias_sym_null_assignment, }, - [25] = { - [3] = sym_block, + [27] = { + [2] = sym_block, + }, + [28] = { + [2] = sym_block, }, [30] = { [3] = sym_block, }, - [32] = { + [31] = { + [3] = sym_block, + }, + [37] = { [0] = anon_alias_sym_notin, [1] = anon_alias_sym_notin, }, - [33] = { + [38] = { [0] = anon_alias_sym_isnot, [1] = anon_alias_sym_isnot, }, - [38] = { - [3] = sym_block, + [42] = { + [2] = sym_block, }, - [39] = { + [46] = { [3] = sym_block, }, - [41] = { + [47] = { [3] = sym_block, }, [49] = { - [3] = sym_block, + [4] = sym_block, }, - [57] = { - [5] = sym_block, + [51] = { + [3] = sym_block, }, - [59] = { + [58] = { [2] = sym_block, }, + [60] = { + [3] = sym_block, + }, [63] = { - [5] = sym_block, + [4] = sym_block, }, [64] = { + [4] = sym_block, + }, + [66] = { + [5] = sym_block, + }, + [74] = { + [4] = sym_block, + }, + [80] = { + [5] = sym_block, + }, + [81] = { [6] = sym_block, }, }; @@ -2182,3321 +2304,6410 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, + [3] = 2, + [4] = 2, + [5] = 2, + [6] = 2, [7] = 2, [8] = 2, - [9] = 6, - [10] = 10, - [11] = 11, - [12] = 12, - [13] = 2, - [14] = 14, - [15] = 6, - [16] = 6, - [17] = 2, - [18] = 6, - [19] = 6, - [20] = 2, - [21] = 4, - [22] = 12, - [23] = 11, - [24] = 6, + [9] = 9, + [10] = 9, + [11] = 2, + [12] = 9, + [13] = 9, + [14] = 9, + [15] = 9, + [16] = 16, + [17] = 16, + [18] = 9, + [19] = 9, + [20] = 20, + [21] = 21, + [22] = 20, + [23] = 20, + [24] = 21, [25] = 25, - [26] = 10, - [27] = 2, - [28] = 2, - [29] = 25, - [30] = 3, - [31] = 2, - [32] = 6, - [33] = 5, - [34] = 6, - [35] = 14, - [36] = 36, - [37] = 37, - [38] = 37, - [39] = 39, - [40] = 37, - [41] = 39, - [42] = 42, + [26] = 21, + [27] = 20, + [28] = 20, + [29] = 21, + [30] = 21, + [31] = 20, + [32] = 21, + [33] = 20, + [34] = 20, + [35] = 35, + [36] = 21, + [37] = 21, + [38] = 21, + [39] = 20, + [40] = 20, + [41] = 21, + [42] = 20, [43] = 43, [44] = 44, [45] = 45, [46] = 46, - [47] = 47, - [48] = 42, + [47] = 35, + [48] = 48, [49] = 49, - [50] = 44, - [51] = 47, - [52] = 47, - [53] = 45, - [54] = 42, - [55] = 55, - [56] = 42, - [57] = 46, - [58] = 47, - [59] = 55, - [60] = 42, - [61] = 61, - [62] = 42, - [63] = 47, - [64] = 47, - [65] = 65, - [66] = 42, - [67] = 43, - [68] = 61, - [69] = 69, - [70] = 70, - [71] = 42, - [72] = 47, - [73] = 42, - [74] = 70, - [75] = 69, - [76] = 47, - [77] = 49, - [78] = 65, - [79] = 47, - [80] = 80, - [81] = 80, - [82] = 82, - [83] = 80, - [84] = 80, - [85] = 80, - [86] = 80, - [87] = 80, - [88] = 80, - [89] = 80, - [90] = 90, - [91] = 90, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 94, - [96] = 96, - [97] = 94, - [98] = 92, - [99] = 93, - [100] = 94, - [101] = 96, - [102] = 92, - [103] = 94, - [104] = 96, - [105] = 94, - [106] = 96, - [107] = 92, - [108] = 96, - [109] = 94, - [110] = 96, - [111] = 96, - [112] = 93, - [113] = 92, - [114] = 96, - [115] = 94, - [116] = 92, - [117] = 93, - [118] = 96, - [119] = 93, - [120] = 92, - [121] = 121, - [122] = 94, - [123] = 92, - [124] = 92, - [125] = 93, - [126] = 126, - [127] = 126, - [128] = 128, - [129] = 129, - [130] = 126, - [131] = 131, - [132] = 128, - [133] = 128, - [134] = 128, - [135] = 128, - [136] = 131, - [137] = 131, - [138] = 126, - [139] = 131, - [140] = 128, - [141] = 131, - [142] = 126, - [143] = 131, - [144] = 128, - [145] = 131, - [146] = 126, - [147] = 131, - [148] = 126, - [149] = 126, - [150] = 128, - [151] = 128, - [152] = 126, - [153] = 131, - [154] = 154, - [155] = 154, - [156] = 156, - [157] = 157, - [158] = 158, + [50] = 48, + [51] = 51, + [52] = 21, + [53] = 53, + [54] = 46, + [55] = 49, + [56] = 56, + [57] = 45, + [58] = 25, + [59] = 21, + [60] = 20, + [61] = 21, + [62] = 21, + [63] = 20, + [64] = 56, + [65] = 20, + [66] = 53, + [67] = 20, + [68] = 44, + [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, + [85] = 85, + [86] = 9, + [87] = 9, + [88] = 2, + [89] = 9, + [90] = 9, + [91] = 2, + [92] = 2, + [93] = 2, + [94] = 2, + [95] = 2, + [96] = 9, + [97] = 9, + [98] = 9, + [99] = 2, + [100] = 9, + [101] = 2, + [102] = 2, + [103] = 2, + [104] = 9, + [105] = 2, + [106] = 2, + [107] = 2, + [108] = 9, + [109] = 9, + [110] = 9, + [111] = 9, + [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, + [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, + [153] = 153, + [154] = 144, + [155] = 155, + [156] = 141, + [157] = 141, + [158] = 145, [159] = 159, - [160] = 159, + [160] = 160, [161] = 161, - [162] = 159, - [163] = 158, - [164] = 156, - [165] = 156, - [166] = 156, - [167] = 157, - [168] = 158, - [169] = 159, - [170] = 158, - [171] = 157, - [172] = 158, - [173] = 157, - [174] = 156, - [175] = 157, - [176] = 159, - [177] = 154, - [178] = 154, - [179] = 159, - [180] = 158, - [181] = 156, - [182] = 157, - [183] = 157, - [184] = 184, - [185] = 157, - [186] = 159, - [187] = 158, - [188] = 159, - [189] = 156, - [190] = 154, - [191] = 156, - [192] = 192, - [193] = 159, - [194] = 158, - [195] = 158, - [196] = 154, - [197] = 156, - [198] = 157, + [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] = 200, - [201] = 201, - [202] = 202, - [203] = 200, - [204] = 204, + [200] = 199, + [201] = 199, + [202] = 199, + [203] = 199, + [204] = 199, [205] = 199, - [206] = 201, - [207] = 200, - [208] = 208, - [209] = 204, - [210] = 210, - [211] = 210, + [206] = 199, + [207] = 199, + [208] = 199, + [209] = 199, + [210] = 9, + [211] = 199, [212] = 199, [213] = 199, - [214] = 200, - [215] = 200, - [216] = 202, - [217] = 200, - [218] = 210, - [219] = 202, - [220] = 208, - [221] = 199, - [222] = 201, - [223] = 200, - [224] = 208, - [225] = 204, - [226] = 208, - [227] = 204, - [228] = 210, - [229] = 201, - [230] = 199, - [231] = 201, - [232] = 208, - [233] = 210, - [234] = 199, - [235] = 202, - [236] = 201, - [237] = 204, - [238] = 200, - [239] = 199, - [240] = 199, + [214] = 199, + [215] = 215, + [216] = 199, + [217] = 199, + [218] = 2, + [219] = 2, + [220] = 2, + [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] = 202, - [243] = 200, - [244] = 202, - [245] = 200, - [246] = 200, - [247] = 210, - [248] = 200, - [249] = 210, - [250] = 250, - [251] = 202, - [252] = 210, - [253] = 201, - [254] = 199, - [255] = 208, - [256] = 199, - [257] = 202, - [258] = 199, - [259] = 210, - [260] = 199, - [261] = 202, - [262] = 210, - [263] = 210, - [264] = 200, - [265] = 204, - [266] = 202, - [267] = 200, - [268] = 268, - [269] = 210, - [270] = 204, + [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, [271] = 271, - [272] = 210, - [273] = 202, - [274] = 210, - [275] = 202, - [276] = 199, - [277] = 200, - [278] = 199, - [279] = 202, - [280] = 204, - [281] = 200, - [282] = 199, - [283] = 199, - [284] = 202, - [285] = 208, - [286] = 210, - [287] = 210, - [288] = 202, - [289] = 200, - [290] = 199, - [291] = 202, - [292] = 200, - [293] = 200, - [294] = 294, - [295] = 208, - [296] = 210, - [297] = 200, - [298] = 298, - [299] = 208, - [300] = 202, - [301] = 210, - [302] = 201, - [303] = 199, - [304] = 204, - [305] = 210, - [306] = 210, - [307] = 202, - [308] = 199, - [309] = 200, - [310] = 200, - [311] = 202, - [312] = 202, - [313] = 210, - [314] = 210, - [315] = 202, - [316] = 199, - [317] = 199, - [318] = 202, - [319] = 201, - [320] = 320, - [321] = 321, - [322] = 321, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 326, - [328] = 326, - [329] = 326, - [330] = 326, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 323, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 339, - [342] = 326, - [343] = 335, - [344] = 336, - [345] = 340, - [346] = 323, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 333, - [353] = 353, - [354] = 354, - [355] = 353, - [356] = 333, - [357] = 347, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 334, - [365] = 334, - [366] = 366, - [367] = 367, - [368] = 368, + [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] = 372, - [373] = 373, - [374] = 333, - [375] = 375, + [372] = 370, + [373] = 370, + [374] = 374, + [375] = 369, [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 378, - [381] = 333, - [382] = 382, - [383] = 334, - [384] = 384, - [385] = 384, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 335, - [393] = 386, - [394] = 332, - [395] = 387, - [396] = 331, - [397] = 397, - [398] = 388, - [399] = 389, - [400] = 390, - [401] = 391, - [402] = 323, - [403] = 336, - [404] = 335, + [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, [405] = 405, - [406] = 353, - [407] = 407, - [408] = 332, - [409] = 348, - [410] = 331, - [411] = 411, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 324, - [417] = 417, - [418] = 323, - [419] = 391, - [420] = 390, - [421] = 389, - [422] = 348, - [423] = 405, - [424] = 424, - [425] = 388, - [426] = 387, - [427] = 427, - [428] = 386, - [429] = 384, - [430] = 397, - [431] = 411, - [432] = 348, - [433] = 378, - [434] = 324, - [435] = 377, - [436] = 436, - [437] = 323, - [438] = 438, - [439] = 336, - [440] = 353, - [441] = 438, - [442] = 442, - [443] = 335, - [444] = 348, - [445] = 336, - [446] = 334, - [447] = 447, - [448] = 438, - [449] = 449, - [450] = 333, - [451] = 334, - [452] = 353, - [453] = 335, + [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] = 347, - [456] = 413, - [457] = 375, - [458] = 413, - [459] = 413, - [460] = 348, - [461] = 413, - [462] = 462, - [463] = 413, - [464] = 333, - [465] = 323, - [466] = 413, - [467] = 413, - [468] = 468, - [469] = 375, - [470] = 348, - [471] = 333, - [472] = 472, - [473] = 449, - [474] = 348, - [475] = 353, - [476] = 413, - [477] = 413, - [478] = 413, - [479] = 413, - [480] = 413, - [481] = 324, - [482] = 348, - [483] = 413, - [484] = 438, - [485] = 334, - [486] = 334, - [487] = 487, - [488] = 417, - [489] = 405, - [490] = 490, - [491] = 353, - [492] = 336, - [493] = 415, - [494] = 494, - [495] = 335, - [496] = 348, - [497] = 417, - [498] = 498, - [499] = 415, - [500] = 353, - [501] = 414, - [502] = 412, - [503] = 333, - [504] = 407, - [505] = 347, - [506] = 353, - [507] = 507, - [508] = 333, - [509] = 324, - [510] = 414, - [511] = 353, - [512] = 413, - [513] = 333, - [514] = 347, - [515] = 348, - [516] = 334, - [517] = 335, - [518] = 518, - [519] = 412, - [520] = 413, - [521] = 336, - [522] = 522, - [523] = 323, - [524] = 324, - [525] = 407, - [526] = 331, - [527] = 332, - [528] = 353, - [529] = 333, - [530] = 375, - [531] = 348, - [532] = 335, - [533] = 336, - [534] = 334, - [535] = 323, - [536] = 449, - [537] = 438, - [538] = 334, - [539] = 391, - [540] = 347, - [541] = 541, - [542] = 323, - [543] = 336, - [544] = 335, - [545] = 545, - [546] = 390, - [547] = 335, - [548] = 389, - [549] = 549, - [550] = 377, - [551] = 378, - [552] = 388, - [553] = 387, - [554] = 377, - [555] = 386, - [556] = 331, - [557] = 332, - [558] = 378, - [559] = 559, - [560] = 560, - [561] = 324, - [562] = 413, - [563] = 563, - [564] = 348, - [565] = 335, - [566] = 336, - [567] = 323, - [568] = 498, - [569] = 353, - [570] = 391, - [571] = 390, - [572] = 389, - [573] = 388, - [574] = 387, - [575] = 386, - [576] = 384, - [577] = 384, - [578] = 405, - [579] = 334, - [580] = 417, - [581] = 353, - [582] = 378, - [583] = 377, - [584] = 415, - [585] = 333, - [586] = 336, - [587] = 414, - [588] = 334, - [589] = 412, - [590] = 407, - [591] = 336, - [592] = 375, - [593] = 384, - [594] = 449, - [595] = 438, - [596] = 386, - [597] = 333, - [598] = 387, - [599] = 388, - [600] = 389, - [601] = 390, - [602] = 378, - [603] = 377, - [604] = 391, - [605] = 605, - [606] = 323, - [607] = 336, - [608] = 335, - [609] = 563, - [610] = 323, - [611] = 332, - [612] = 324, - [613] = 331, - [614] = 405, - [615] = 615, - [616] = 335, - [617] = 348, - [618] = 377, - [619] = 334, - [620] = 347, - [621] = 377, - [622] = 378, - [623] = 333, - [624] = 353, - [625] = 323, - [626] = 413, - [627] = 417, - [628] = 323, - [629] = 334, - [630] = 498, - [631] = 415, - [632] = 336, - [633] = 414, - [634] = 412, - [635] = 635, - [636] = 335, - [637] = 407, - [638] = 348, - [639] = 386, - [640] = 559, - [641] = 323, - [642] = 336, - [643] = 334, - [644] = 375, - [645] = 335, - [646] = 348, - [647] = 336, - [648] = 449, - [649] = 350, - [650] = 323, - [651] = 635, - [652] = 438, - [653] = 347, - [654] = 333, - [655] = 353, - [656] = 353, - [657] = 405, - [658] = 333, - [659] = 347, - [660] = 360, - [661] = 438, - [662] = 361, - [663] = 663, - [664] = 334, + [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, + [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] = 417, - [667] = 415, - [668] = 414, - [669] = 334, - [670] = 412, - [671] = 407, - [672] = 424, - [673] = 413, - [674] = 333, - [675] = 353, - [676] = 377, - [677] = 378, - [678] = 454, - [679] = 382, - [680] = 384, - [681] = 375, - [682] = 386, - [683] = 348, - [684] = 387, - [685] = 388, - [686] = 389, - [687] = 390, - [688] = 391, - [689] = 323, - [690] = 336, - [691] = 335, - [692] = 332, - [693] = 449, - [694] = 438, - [695] = 331, - [696] = 696, - [697] = 334, - [698] = 449, - [699] = 336, - [700] = 335, - [701] = 384, - [702] = 332, - [703] = 335, - [704] = 498, - [705] = 363, - [706] = 384, - [707] = 386, - [708] = 387, - [709] = 387, - [710] = 388, - [711] = 389, - [712] = 388, - [713] = 390, - [714] = 436, - [715] = 391, - [716] = 389, - [717] = 390, - [718] = 405, - [719] = 391, - [720] = 323, - [721] = 334, - [722] = 442, - [723] = 336, - [724] = 323, - [725] = 348, - [726] = 447, - [727] = 336, - [728] = 335, - [729] = 333, - [730] = 353, - [731] = 438, - [732] = 468, - [733] = 348, - [734] = 472, - [735] = 349, - [736] = 332, - [737] = 331, - [738] = 518, - [739] = 335, - [740] = 417, - [741] = 487, - [742] = 696, - [743] = 743, - [744] = 744, - [745] = 348, - [746] = 415, - [747] = 615, - [748] = 414, - [749] = 324, - [750] = 413, - [751] = 331, - [752] = 333, - [753] = 332, - [754] = 412, - [755] = 507, - [756] = 323, - [757] = 353, - [758] = 331, - [759] = 332, - [760] = 333, - [761] = 347, - [762] = 407, - [763] = 353, - [764] = 375, - [765] = 358, - [766] = 438, - [767] = 335, - [768] = 336, - [769] = 323, - [770] = 359, - [771] = 449, - [772] = 391, - [773] = 390, - [774] = 389, - [775] = 388, - [776] = 387, - [777] = 386, - [778] = 384, - [779] = 335, - [780] = 336, - [781] = 331, - [782] = 522, - [783] = 438, - [784] = 405, - [785] = 417, - [786] = 415, - [787] = 414, - [788] = 412, - [789] = 323, - [790] = 324, - [791] = 413, - [792] = 605, - [793] = 407, - [794] = 375, - [795] = 323, - [796] = 449, - [797] = 323, - [798] = 391, - [799] = 378, - [800] = 377, - [801] = 376, - [802] = 373, - [803] = 338, - [804] = 334, - [805] = 438, - [806] = 413, - [807] = 324, - [808] = 438, - [809] = 405, - [810] = 390, - [811] = 366, - [812] = 367, - [813] = 368, - [814] = 323, - [815] = 369, - [816] = 370, - [817] = 389, - [818] = 371, - [819] = 372, - [820] = 438, - [821] = 541, - [822] = 417, - [823] = 323, - [824] = 334, - [825] = 348, - [826] = 415, - [827] = 323, - [828] = 333, - [829] = 353, - [830] = 490, - [831] = 323, - [832] = 545, - [833] = 438, - [834] = 323, - [835] = 549, - [836] = 323, - [837] = 377, - [838] = 378, - [839] = 379, - [840] = 840, - [841] = 347, - [842] = 333, - [843] = 353, - [844] = 388, - [845] = 414, - [846] = 387, - [847] = 323, - [848] = 560, - [849] = 438, - [850] = 386, - [851] = 323, - [852] = 438, - [853] = 438, - [854] = 490, - [855] = 412, - [856] = 438, - [857] = 857, - [858] = 384, - [859] = 407, - [860] = 438, - [861] = 348, - [862] = 438, - [863] = 438, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, + [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, + [723] = 723, + [724] = 724, + [725] = 723, + [726] = 724, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [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, + [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, + [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, [869] = 869, - [870] = 865, - [871] = 867, - [872] = 872, - [873] = 868, + [870] = 757, + [871] = 856, + [872] = 810, + [873] = 756, [874] = 874, - [875] = 869, + [875] = 875, [876] = 876, - [877] = 877, - [878] = 878, + [877] = 811, + [878] = 869, [879] = 879, - [880] = 878, - [881] = 881, - [882] = 864, + [880] = 862, + [881] = 811, + [882] = 882, [883] = 883, - [884] = 879, - [885] = 879, - [886] = 886, - [887] = 887, - [888] = 879, - [889] = 877, - [890] = 887, - [891] = 886, - [892] = 876, - [893] = 874, - [894] = 872, - [895] = 866, - [896] = 896, - [897] = 897, - [898] = 896, - [899] = 899, - [900] = 897, - [901] = 899, + [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] = 902, - [904] = 904, - [905] = 881, - [906] = 904, - [907] = 879, - [908] = 879, - [909] = 883, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 910, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 928, + [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] = 930, - [931] = 931, + [930] = 811, + [931] = 862, [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 934, - [938] = 913, - [939] = 932, - [940] = 929, - [941] = 941, - [942] = 913, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 945, - [947] = 947, - [948] = 947, - [949] = 949, + [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] = 951, - [952] = 941, - [953] = 943, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 951, - [963] = 963, - [964] = 964, - [965] = 944, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 973, - [974] = 966, - [975] = 913, - [976] = 913, - [977] = 973, - [978] = 955, - [979] = 972, - [980] = 911, - [981] = 956, - [982] = 964, - [983] = 971, - [984] = 960, - [985] = 954, - [986] = 950, - [987] = 949, - [988] = 912, - [989] = 970, - [990] = 914, - [991] = 915, - [992] = 916, - [993] = 917, - [994] = 918, - [995] = 919, - [996] = 957, - [997] = 921, - [998] = 922, - [999] = 923, - [1000] = 924, - [1001] = 925, - [1002] = 926, - [1003] = 927, - [1004] = 928, - [1005] = 930, - [1006] = 931, - [1007] = 933, - [1008] = 935, - [1009] = 936, - [1010] = 913, - [1011] = 969, - [1012] = 968, - [1013] = 967, - [1014] = 963, - [1015] = 961, - [1016] = 959, - [1017] = 958, - [1018] = 154, - [1019] = 154, - [1020] = 154, - [1021] = 154, - [1022] = 605, - [1023] = 498, - [1024] = 370, - [1025] = 367, - [1026] = 522, - [1027] = 366, - [1028] = 696, - [1029] = 326, - [1030] = 326, - [1031] = 326, - [1032] = 424, - [1033] = 349, - [1034] = 397, - [1035] = 361, - [1036] = 411, - [1037] = 545, - [1038] = 369, - [1039] = 358, - [1040] = 436, - [1041] = 615, - [1042] = 340, - [1043] = 371, - [1044] = 541, - [1045] = 442, - [1046] = 545, - [1047] = 549, - [1048] = 447, - [1049] = 359, - [1050] = 372, - [1051] = 382, - [1052] = 635, - [1053] = 350, - [1054] = 339, - [1055] = 368, - [1056] = 468, - [1057] = 498, - [1058] = 507, - [1059] = 360, - [1060] = 472, - [1061] = 379, - [1062] = 487, - [1063] = 560, - [1064] = 883, - [1065] = 878, - [1066] = 879, - [1067] = 874, - [1068] = 874, - [1069] = 904, - [1070] = 879, - [1071] = 864, - [1072] = 876, - [1073] = 877, - [1074] = 902, - [1075] = 899, - [1076] = 897, - [1077] = 896, - [1078] = 879, - [1079] = 887, - [1080] = 886, - [1081] = 872, - [1082] = 881, - [1083] = 865, - [1084] = 867, - [1085] = 868, - [1086] = 869, - [1087] = 866, - [1088] = 934, - [1089] = 867, - [1090] = 969, - [1091] = 958, - [1092] = 970, - [1093] = 971, - [1094] = 957, - [1095] = 972, - [1096] = 973, - [1097] = 956, - [1098] = 966, - [1099] = 955, - [1100] = 911, - [1101] = 964, - [1102] = 959, - [1103] = 869, - [1104] = 967, - [1105] = 868, - [1106] = 963, - [1107] = 913, - [1108] = 867, - [1109] = 865, - [1110] = 960, - [1111] = 954, - [1112] = 950, - [1113] = 949, - [1114] = 912, - [1115] = 869, - [1116] = 961, - [1117] = 943, - [1118] = 913, - [1119] = 914, - [1120] = 941, - [1121] = 932, - [1122] = 915, - [1123] = 929, - [1124] = 868, - [1125] = 910, - [1126] = 916, - [1127] = 968, - [1128] = 913, - [1129] = 936, - [1130] = 917, - [1131] = 918, - [1132] = 865, - [1133] = 919, - [1134] = 935, - [1135] = 933, - [1136] = 931, - [1137] = 930, - [1138] = 944, - [1139] = 945, - [1140] = 928, - [1141] = 921, - [1142] = 922, - [1143] = 923, - [1144] = 924, - [1145] = 947, - [1146] = 951, - [1147] = 925, - [1148] = 927, - [1149] = 926, - [1150] = 154, - [1151] = 154, - [1152] = 154, - [1153] = 154, - [1154] = 424, - [1155] = 154, - [1156] = 635, - [1157] = 397, - [1158] = 696, - [1159] = 154, - [1160] = 411, - [1161] = 696, - [1162] = 397, - [1163] = 424, - [1164] = 411, - [1165] = 635, - [1166] = 154, - [1167] = 1167, - [1168] = 442, - [1169] = 1169, - [1170] = 154, - [1171] = 507, - [1172] = 1172, - [1173] = 1172, - [1174] = 154, - [1175] = 605, - [1176] = 472, + [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, + [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, + [1005] = 1005, + [1006] = 756, + [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] = 468, - [1179] = 1167, - [1180] = 541, - [1181] = 1169, - [1182] = 498, - [1183] = 424, - [1184] = 154, - [1185] = 154, - [1186] = 442, - [1187] = 472, - [1188] = 1188, - [1189] = 468, - [1190] = 696, - [1191] = 1188, - [1192] = 349, - [1193] = 326, - [1194] = 339, - [1195] = 411, - [1196] = 340, - [1197] = 397, - [1198] = 879, - [1199] = 635, - [1200] = 865, - [1201] = 867, - [1202] = 868, - [1203] = 869, - [1204] = 507, - [1205] = 154, - [1206] = 358, - [1207] = 359, - [1208] = 1177, - [1209] = 1209, - [1210] = 154, - [1211] = 366, - [1212] = 367, - [1213] = 368, - [1214] = 369, - [1215] = 370, - [1216] = 326, - [1217] = 371, - [1218] = 372, - [1219] = 541, - [1220] = 326, - [1221] = 1221, - [1222] = 379, - [1223] = 1223, - [1224] = 605, - [1225] = 615, - [1226] = 1226, - [1227] = 881, - [1228] = 1221, - [1229] = 498, - [1230] = 1223, - [1231] = 1226, - [1232] = 154, - [1233] = 361, - [1234] = 154, - [1235] = 913, - [1236] = 879, - [1237] = 915, - [1238] = 916, - [1239] = 887, - [1240] = 917, - [1241] = 918, - [1242] = 1242, - [1243] = 154, - [1244] = 919, - [1245] = 899, - [1246] = 914, - [1247] = 1242, - [1248] = 897, - [1249] = 896, - [1250] = 154, - [1251] = 883, - [1252] = 872, - [1253] = 921, - [1254] = 922, - [1255] = 864, - [1256] = 923, - [1257] = 941, - [1258] = 924, - [1259] = 925, - [1260] = 926, - [1261] = 360, - [1262] = 927, - [1263] = 560, - [1264] = 934, - [1265] = 928, - [1266] = 932, - [1267] = 930, - [1268] = 912, - [1269] = 931, - [1270] = 933, - [1271] = 929, - [1272] = 910, - [1273] = 949, - [1274] = 935, - [1275] = 382, - [1276] = 936, - [1277] = 154, - [1278] = 549, - [1279] = 350, - [1280] = 877, - [1281] = 869, - [1282] = 904, - [1283] = 944, - [1284] = 545, - [1285] = 868, - [1286] = 945, - [1287] = 867, - [1288] = 902, - [1289] = 947, - [1290] = 865, - [1291] = 878, - [1292] = 967, - [1293] = 950, - [1294] = 951, - [1295] = 954, - [1296] = 941, - [1297] = 943, - [1298] = 960, - [1299] = 866, - [1300] = 955, - [1301] = 956, - [1302] = 957, - [1303] = 958, - [1304] = 959, - [1305] = 964, - [1306] = 522, - [1307] = 961, - [1308] = 963, - [1309] = 154, - [1310] = 911, - [1311] = 879, - [1312] = 960, - [1313] = 154, - [1314] = 487, - [1315] = 879, - [1316] = 915, - [1317] = 339, - [1318] = 447, - [1319] = 154, - [1320] = 921, - [1321] = 436, - [1322] = 967, - [1323] = 966, - [1324] = 973, - [1325] = 972, - [1326] = 968, - [1327] = 971, - [1328] = 970, - [1329] = 886, - [1330] = 969, - [1331] = 340, - [1332] = 883, - [1333] = 358, - [1334] = 366, - [1335] = 498, - [1336] = 913, - [1337] = 368, - [1338] = 936, - [1339] = 934, - [1340] = 369, - [1341] = 326, - [1342] = 933, - [1343] = 931, - [1344] = 370, - [1345] = 154, - [1346] = 371, - [1347] = 372, - [1348] = 932, - [1349] = 930, - [1350] = 411, - [1351] = 928, - [1352] = 927, - [1353] = 926, - [1354] = 498, - [1355] = 929, - [1356] = 924, - [1357] = 923, - [1358] = 922, - [1359] = 910, - [1360] = 913, - [1361] = 864, - [1362] = 904, - [1363] = 397, - [1364] = 326, - [1365] = 919, - [1366] = 918, - [1367] = 917, - [1368] = 916, - [1369] = 424, - [1370] = 944, - [1371] = 945, - [1372] = 914, - [1373] = 902, - [1374] = 925, - [1375] = 349, - [1376] = 935, - [1377] = 899, - [1378] = 912, - [1379] = 897, - [1380] = 949, - [1381] = 950, - [1382] = 954, - [1383] = 896, - [1384] = 951, - [1385] = 964, - [1386] = 911, - [1387] = 696, - [1388] = 635, - [1389] = 379, - [1390] = 326, - [1391] = 943, - [1392] = 359, - [1393] = 886, - [1394] = 887, - [1395] = 966, - [1396] = 947, - [1397] = 973, - [1398] = 972, - [1399] = 971, - [1400] = 913, - [1401] = 970, - [1402] = 866, - [1403] = 955, - [1404] = 956, - [1405] = 957, - [1406] = 969, - [1407] = 958, - [1408] = 968, - [1409] = 959, - [1410] = 615, - [1411] = 872, - [1412] = 367, - [1413] = 876, - [1414] = 881, - [1415] = 963, - [1416] = 874, - [1417] = 961, - [1418] = 369, - [1419] = 326, - [1420] = 436, - [1421] = 447, - [1422] = 350, - [1423] = 487, - [1424] = 472, - [1425] = 522, - [1426] = 370, - [1427] = 879, - [1428] = 379, - [1429] = 549, - [1430] = 361, - [1431] = 560, - [1432] = 498, - [1433] = 1433, - [1434] = 382, - [1435] = 881, - [1436] = 1436, - [1437] = 349, - [1438] = 1436, - [1439] = 1439, - [1440] = 1440, - [1441] = 371, - [1442] = 368, - [1443] = 367, - [1444] = 1433, - [1445] = 366, - [1446] = 635, - [1447] = 359, - [1448] = 1440, - [1449] = 382, - [1450] = 560, - [1451] = 545, - [1452] = 360, - [1453] = 865, - [1454] = 361, - [1455] = 1439, - [1456] = 442, - [1457] = 360, - [1458] = 522, - [1459] = 1459, - [1460] = 487, - [1461] = 350, - [1462] = 696, - [1463] = 340, - [1464] = 549, - [1465] = 468, - [1466] = 867, - [1467] = 877, - [1468] = 878, - [1469] = 424, - [1470] = 154, - [1471] = 868, - [1472] = 447, - [1473] = 507, - [1474] = 339, - [1475] = 879, - [1476] = 436, - [1477] = 358, - [1478] = 326, - [1479] = 541, - [1480] = 869, - [1481] = 372, - [1482] = 605, - [1483] = 1483, - [1484] = 397, - [1485] = 615, - [1486] = 1459, - [1487] = 411, - [1488] = 498, - [1489] = 1483, - [1490] = 154, - [1491] = 326, - [1492] = 522, - [1493] = 874, - [1494] = 498, - [1495] = 881, - [1496] = 696, - [1497] = 615, - [1498] = 340, - [1499] = 549, - [1500] = 424, - [1501] = 902, - [1502] = 339, - [1503] = 436, - [1504] = 921, - [1505] = 615, - [1506] = 447, - [1507] = 379, - [1508] = 605, - [1509] = 411, - [1510] = 397, - [1511] = 424, - [1512] = 635, - [1513] = 436, - [1514] = 447, - [1515] = 915, - [1516] = 487, - [1517] = 522, - [1518] = 560, - [1519] = 379, - [1520] = 879, - [1521] = 372, - [1522] = 371, - [1523] = 549, - [1524] = 370, - [1525] = 369, - [1526] = 368, - [1527] = 367, - [1528] = 366, - [1529] = 350, - [1530] = 487, - [1531] = 326, - [1532] = 541, - [1533] = 350, - [1534] = 372, - [1535] = 371, - [1536] = 370, - [1537] = 369, - [1538] = 368, - [1539] = 367, - [1540] = 899, - [1541] = 897, - [1542] = 896, - [1543] = 366, - [1544] = 498, - [1545] = 864, - [1546] = 359, - [1547] = 358, - [1548] = 960, - [1549] = 498, - [1550] = 360, - [1551] = 498, - [1552] = 360, - [1553] = 872, - [1554] = 411, - [1555] = 361, - [1556] = 397, - [1557] = 424, - [1558] = 326, - [1559] = 326, - [1560] = 326, - [1561] = 881, - [1562] = 326, - [1563] = 360, - [1564] = 349, - [1565] = 326, - [1566] = 615, - [1567] = 522, - [1568] = 361, - [1569] = 605, - [1570] = 696, - [1571] = 326, - [1572] = 904, - [1573] = 498, - [1574] = 339, - [1575] = 865, - [1576] = 887, - [1577] = 867, - [1578] = 886, - [1579] = 879, - [1580] = 868, - [1581] = 869, - [1582] = 359, - [1583] = 340, - [1584] = 358, - [1585] = 635, - [1586] = 382, - [1587] = 498, - [1588] = 560, - [1589] = 883, - [1590] = 507, - [1591] = 379, - [1592] = 549, - [1593] = 545, - [1594] = 326, - [1595] = 967, - [1596] = 326, - [1597] = 541, - [1598] = 349, - [1599] = 913, - [1600] = 472, - [1601] = 879, - [1602] = 468, - [1603] = 372, - [1604] = 371, - [1605] = 370, - [1606] = 369, - [1607] = 368, - [1608] = 367, - [1609] = 366, - [1610] = 411, - [1611] = 397, - [1612] = 877, - [1613] = 696, - [1614] = 442, - [1615] = 635, - [1616] = 359, - [1617] = 941, - [1618] = 358, - [1619] = 866, - [1620] = 876, - [1621] = 507, - [1622] = 545, + [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, + [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, + [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] = 436, - [1625] = 442, - [1626] = 382, - [1627] = 447, - [1628] = 468, - [1629] = 472, - [1630] = 560, - [1631] = 913, - [1632] = 349, - [1633] = 878, - [1634] = 487, - [1635] = 340, - [1636] = 1636, - [1637] = 930, - [1638] = 958, - [1639] = 931, - [1640] = 1640, - [1641] = 933, - [1642] = 879, - [1643] = 921, - [1644] = 957, - [1645] = 868, - [1646] = 864, - [1647] = 877, - [1648] = 904, - [1649] = 935, - [1650] = 1650, - [1651] = 936, - [1652] = 1652, - [1653] = 867, - [1654] = 865, - [1655] = 926, - [1656] = 915, - [1657] = 925, - [1658] = 872, - [1659] = 874, - [1660] = 879, - [1661] = 881, - [1662] = 1662, - [1663] = 1663, - [1664] = 924, - [1665] = 961, - [1666] = 923, - [1667] = 498, - [1668] = 922, - [1669] = 1669, - [1670] = 1670, - [1671] = 864, - [1672] = 960, - [1673] = 963, - [1674] = 1674, - [1675] = 956, - [1676] = 955, - [1677] = 1677, - [1678] = 1678, - [1679] = 1679, - [1680] = 943, - [1681] = 360, - [1682] = 919, - [1683] = 1683, - [1684] = 1640, - [1685] = 866, - [1686] = 918, - [1687] = 1687, - [1688] = 927, - [1689] = 1689, - [1690] = 1652, - [1691] = 886, - [1692] = 876, - [1693] = 1693, - [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 887, - [1698] = 1698, - [1699] = 1636, - [1700] = 1700, - [1701] = 1700, - [1702] = 635, - [1703] = 1694, - [1704] = 1698, - [1705] = 917, - [1706] = 1687, - [1707] = 1670, - [1708] = 1669, - [1709] = 916, - [1710] = 878, - [1711] = 921, - [1712] = 951, - [1713] = 1713, - [1714] = 1662, - [1715] = 1715, - [1716] = 326, - [1717] = 326, - [1718] = 696, - [1719] = 896, - [1720] = 897, - [1721] = 382, - [1722] = 1696, - [1723] = 1695, - [1724] = 899, - [1725] = 947, - [1726] = 902, - [1727] = 1650, - [1728] = 945, - [1729] = 1674, - [1730] = 944, - [1731] = 865, - [1732] = 929, - [1733] = 1693, - [1734] = 1734, - [1735] = 913, - [1736] = 867, - [1737] = 910, - [1738] = 915, - [1739] = 339, - [1740] = 605, - [1741] = 876, - [1742] = 877, - [1743] = 932, - [1744] = 1744, - [1745] = 967, - [1746] = 914, - [1747] = 934, - [1748] = 878, - [1749] = 1677, - [1750] = 1678, - [1751] = 1713, - [1752] = 1715, - [1753] = 879, - [1754] = 883, - [1755] = 382, - [1756] = 1689, - [1757] = 560, - [1758] = 1683, - [1759] = 913, - [1760] = 361, - [1761] = 442, - [1762] = 883, - [1763] = 522, - [1764] = 878, - [1765] = 487, - [1766] = 350, - [1767] = 447, - [1768] = 1734, - [1769] = 877, - [1770] = 876, - [1771] = 1771, - [1772] = 361, - [1773] = 436, - [1774] = 424, - [1775] = 959, - [1776] = 468, - [1777] = 1679, - [1778] = 967, - [1779] = 397, - [1780] = 874, - [1781] = 960, - [1782] = 472, - [1783] = 868, - [1784] = 349, - [1785] = 411, - [1786] = 879, - [1787] = 968, - [1788] = 872, - [1789] = 498, - [1790] = 912, - [1791] = 881, - [1792] = 507, - [1793] = 358, - [1794] = 359, - [1795] = 1795, - [1796] = 949, - [1797] = 950, - [1798] = 1798, - [1799] = 954, - [1800] = 1771, + [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, + [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] = 879, - [1803] = 615, - [1804] = 941, - [1805] = 913, - [1806] = 869, - [1807] = 866, - [1808] = 350, - [1809] = 366, - [1810] = 367, - [1811] = 1811, - [1812] = 941, - [1813] = 969, - [1814] = 970, - [1815] = 971, - [1816] = 368, - [1817] = 369, - [1818] = 972, - [1819] = 869, - [1820] = 868, - [1821] = 867, - [1822] = 865, - [1823] = 326, - [1824] = 1798, - [1825] = 973, - [1826] = 966, - [1827] = 1795, - [1828] = 370, - [1829] = 887, - [1830] = 879, - [1831] = 886, - [1832] = 371, - [1833] = 1811, - [1834] = 372, - [1835] = 928, - [1836] = 896, - [1837] = 897, - [1838] = 899, - [1839] = 541, - [1840] = 911, - [1841] = 902, - [1842] = 879, - [1843] = 379, - [1844] = 904, - [1845] = 549, - [1846] = 964, - [1847] = 869, - [1848] = 545, - [1849] = 961, - [1850] = 969, - [1851] = 878, - [1852] = 877, - [1853] = 929, - [1854] = 913, - [1855] = 876, - [1856] = 326, - [1857] = 944, - [1858] = 966, - [1859] = 972, - [1860] = 945, - [1861] = 932, - [1862] = 934, - [1863] = 947, - [1864] = 967, - [1865] = 951, - [1866] = 866, - [1867] = 973, - [1868] = 972, - [1869] = 943, - [1870] = 971, - [1871] = 941, - [1872] = 970, - [1873] = 955, - [1874] = 956, - [1875] = 864, - [1876] = 911, - [1877] = 957, - [1878] = 958, - [1879] = 964, - [1880] = 959, - [1881] = 902, - [1882] = 904, - [1883] = 968, - [1884] = 960, - [1885] = 879, - [1886] = 887, - [1887] = 961, - [1888] = 954, - [1889] = 879, - [1890] = 963, - [1891] = 913, - [1892] = 950, - [1893] = 915, - [1894] = 949, - [1895] = 921, - [1896] = 912, - [1897] = 913, - [1898] = 865, - [1899] = 914, - [1900] = 867, - [1901] = 868, - [1902] = 869, - [1903] = 916, - [1904] = 968, - [1905] = 917, - [1906] = 918, - [1907] = 969, - [1908] = 910, - [1909] = 963, - [1910] = 883, - [1911] = 970, - [1912] = 971, - [1913] = 913, - [1914] = 919, - [1915] = 874, - [1916] = 913, - [1917] = 922, - [1918] = 923, - [1919] = 973, - [1920] = 959, - [1921] = 924, - [1922] = 958, - [1923] = 957, - [1924] = 913, - [1925] = 966, - [1926] = 925, - [1927] = 926, - [1928] = 927, - [1929] = 911, - [1930] = 928, - [1931] = 956, - [1932] = 955, - [1933] = 930, - [1934] = 964, - [1935] = 943, - [1936] = 931, - [1937] = 879, - [1938] = 933, - [1939] = 935, - [1940] = 936, - [1941] = 954, - [1942] = 951, - [1943] = 950, - [1944] = 926, - [1945] = 949, - [1946] = 912, - [1947] = 927, - [1948] = 928, - [1949] = 914, - [1950] = 947, - [1951] = 872, - [1952] = 930, - [1953] = 931, - [1954] = 933, - [1955] = 945, - [1956] = 913, - [1957] = 916, - [1958] = 917, - [1959] = 918, - [1960] = 944, - [1961] = 1663, - [1962] = 919, - [1963] = 899, - [1964] = 897, - [1965] = 935, - [1966] = 896, - [1967] = 913, - [1968] = 886, - [1969] = 910, - [1970] = 929, - [1971] = 936, - [1972] = 922, - [1973] = 932, - [1974] = 934, - [1975] = 923, - [1976] = 924, - [1977] = 925, - [1978] = 973, - [1979] = 945, - [1980] = 379, - [1981] = 372, - [1982] = 371, - [1983] = 370, - [1984] = 369, - [1985] = 368, - [1986] = 367, - [1987] = 366, - [1988] = 359, - [1989] = 358, - [1990] = 913, - [1991] = 1991, - [1992] = 498, - [1993] = 635, - [1994] = 696, - [1995] = 1995, - [1996] = 913, - [1997] = 1997, - [1998] = 932, - [1999] = 424, - [2000] = 397, - [2001] = 411, - [2002] = 929, - [2003] = 910, - [2004] = 913, - [2005] = 944, - [2006] = 947, - [2007] = 951, - [2008] = 934, - [2009] = 943, - [2010] = 955, - [2011] = 956, - [2012] = 957, - [2013] = 958, - [2014] = 959, - [2015] = 961, - [2016] = 963, - [2017] = 968, - [2018] = 969, - [2019] = 970, - [2020] = 971, - [2021] = 972, - [2022] = 966, - [2023] = 911, - [2024] = 964, - [2025] = 954, - [2026] = 950, - [2027] = 949, - [2028] = 912, - [2029] = 914, - [2030] = 916, - [2031] = 917, - [2032] = 918, - [2033] = 919, - [2034] = 498, - [2035] = 615, - [2036] = 922, - [2037] = 923, - [2038] = 924, - [2039] = 326, - [2040] = 925, - [2041] = 349, - [2042] = 926, - [2043] = 927, - [2044] = 928, - [2045] = 930, - [2046] = 931, - [2047] = 933, - [2048] = 326, - [2049] = 935, - [2050] = 936, - [2051] = 424, - [2052] = 397, - [2053] = 411, - [2054] = 635, - [2055] = 696, - [2056] = 549, - [2057] = 876, - [2058] = 2058, - [2059] = 879, - [2060] = 865, - [2061] = 867, - [2062] = 868, - [2063] = 869, - [2064] = 339, - [2065] = 878, - [2066] = 913, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2068, - [2071] = 2069, - [2072] = 2072, - [2073] = 2073, - [2074] = 2074, - [2075] = 2072, - [2076] = 2072, - [2077] = 2073, - [2078] = 2074, - [2079] = 2069, - [2080] = 2073, - [2081] = 2074, - [2082] = 2069, - [2083] = 2069, - [2084] = 2073, - [2085] = 2068, - [2086] = 2069, - [2087] = 2069, - [2088] = 2068, - [2089] = 2069, - [2090] = 2068, - [2091] = 2069, - [2092] = 2074, - [2093] = 2073, - [2094] = 2072, - [2095] = 2073, - [2096] = 2074, - [2097] = 2072, - [2098] = 2072, - [2099] = 2099, - [2100] = 2100, - [2101] = 2073, - [2102] = 2068, - [2103] = 2069, - [2104] = 2072, - [2105] = 2069, - [2106] = 2073, - [2107] = 2073, - [2108] = 2069, - [2109] = 2068, - [2110] = 2074, - [2111] = 2069, - [2112] = 2074, - [2113] = 2072, - [2114] = 2072, - [2115] = 2069, - [2116] = 2074, - [2117] = 2074, - [2118] = 2068, - [2119] = 2069, - [2120] = 2068, - [2121] = 2121, - [2122] = 2122, - [2123] = 2121, - [2124] = 2124, - [2125] = 2125, - [2126] = 2122, - [2127] = 2122, - [2128] = 2125, - [2129] = 2129, - [2130] = 2130, - [2131] = 2129, - [2132] = 2121, - [2133] = 2129, - [2134] = 2134, - [2135] = 2135, - [2136] = 2136, - [2137] = 2121, - [2138] = 2124, - [2139] = 2124, - [2140] = 2122, - [2141] = 2122, - [2142] = 2135, - [2143] = 2125, - [2144] = 2135, - [2145] = 2134, - [2146] = 2134, - [2147] = 2121, - [2148] = 865, - [2149] = 867, - [2150] = 2125, - [2151] = 869, - [2152] = 2122, - [2153] = 2124, - [2154] = 2125, - [2155] = 2155, - [2156] = 2129, - [2157] = 2125, - [2158] = 2158, - [2159] = 2121, - [2160] = 2160, - [2161] = 2121, - [2162] = 2124, - [2163] = 2122, - [2164] = 2125, - [2165] = 2129, - [2166] = 2166, - [2167] = 2121, - [2168] = 2155, - [2169] = 2124, - [2170] = 2129, - [2171] = 2124, - [2172] = 2122, - [2173] = 2125, - [2174] = 2122, - [2175] = 2134, - [2176] = 2135, - [2177] = 2129, - [2178] = 2125, - [2179] = 2135, - [2180] = 2121, - [2181] = 2158, - [2182] = 2182, - [2183] = 2129, - [2184] = 2134, - [2185] = 2185, - [2186] = 2135, - [2187] = 2135, - [2188] = 2134, - [2189] = 2121, - [2190] = 2190, - [2191] = 2191, - [2192] = 2135, - [2193] = 2134, - [2194] = 2135, - [2195] = 2129, - [2196] = 2124, - [2197] = 2121, - [2198] = 2124, - [2199] = 2125, - [2200] = 2122, - [2201] = 2124, - [2202] = 2125, - [2203] = 2122, - [2204] = 2134, - [2205] = 2122, - [2206] = 2124, - [2207] = 2121, - [2208] = 2121, - [2209] = 2124, - [2210] = 868, - [2211] = 2125, - [2212] = 2121, - [2213] = 2134, - [2214] = 2122, - [2215] = 2124, - [2216] = 2135, - [2217] = 2124, - [2218] = 2134, - [2219] = 2125, - [2220] = 2122, - [2221] = 2135, - [2222] = 2185, - [2223] = 2121, - [2224] = 2125, - [2225] = 2121, - [2226] = 2136, - [2227] = 869, - [2228] = 868, - [2229] = 867, - [2230] = 865, - [2231] = 867, - [2232] = 865, - [2233] = 868, - [2234] = 869, - [2235] = 869, - [2236] = 869, - [2237] = 867, - [2238] = 868, - [2239] = 868, - [2240] = 865, - [2241] = 867, - [2242] = 865, - [2243] = 865, - [2244] = 868, - [2245] = 867, - [2246] = 869, - [2247] = 2247, - [2248] = 865, - [2249] = 867, - [2250] = 2247, - [2251] = 869, - [2252] = 2247, - [2253] = 868, - [2254] = 2254, - [2255] = 2254, - [2256] = 2256, - [2257] = 2254, - [2258] = 2254, - [2259] = 2254, - [2260] = 2260, - [2261] = 2254, - [2262] = 2254, - [2263] = 2254, - [2264] = 2254, - [2265] = 2265, - [2266] = 865, - [2267] = 867, - [2268] = 868, - [2269] = 2269, - [2270] = 2270, - [2271] = 2271, - [2272] = 869, - [2273] = 2273, - [2274] = 397, - [2275] = 411, - [2276] = 696, - [2277] = 635, - [2278] = 2278, - [2279] = 2279, - [2280] = 424, - [2281] = 339, - [2282] = 2282, - [2283] = 424, - [2284] = 2282, - [2285] = 2282, - [2286] = 2282, - [2287] = 2287, - [2288] = 411, - [2289] = 2282, - [2290] = 2287, - [2291] = 2282, - [2292] = 2282, - [2293] = 397, - [2294] = 2282, - [2295] = 2282, - [2296] = 696, - [2297] = 635, - [2298] = 2298, - [2299] = 635, - [2300] = 2300, - [2301] = 2298, - [2302] = 2298, - [2303] = 2300, - [2304] = 2300, - [2305] = 2298, - [2306] = 2298, - [2307] = 2307, - [2308] = 696, - [2309] = 411, - [2310] = 397, - [2311] = 2298, - [2312] = 2300, - [2313] = 2300, - [2314] = 2298, - [2315] = 339, - [2316] = 2298, - [2317] = 2298, - [2318] = 2300, - [2319] = 424, - [2320] = 2307, - [2321] = 2300, - [2322] = 2300, - [2323] = 2300, - [2324] = 2324, - [2325] = 2324, - [2326] = 2326, - [2327] = 2327, - [2328] = 696, - [2329] = 2327, - [2330] = 2327, - [2331] = 2331, - [2332] = 635, - [2333] = 2324, - [2334] = 2327, - [2335] = 2331, - [2336] = 1995, - [2337] = 2331, - [2338] = 2338, - [2339] = 696, - [2340] = 696, - [2341] = 2341, - [2342] = 2331, - [2343] = 2324, - [2344] = 411, - [2345] = 2327, - [2346] = 2324, - [2347] = 2327, - [2348] = 2348, - [2349] = 2326, - [2350] = 397, - [2351] = 2331, - [2352] = 1991, - [2353] = 2353, - [2354] = 635, - [2355] = 2355, - [2356] = 2327, - [2357] = 2324, - [2358] = 411, - [2359] = 2327, - [2360] = 2331, - [2361] = 2361, - [2362] = 397, - [2363] = 2327, - [2364] = 2324, - [2365] = 2331, - [2366] = 2331, - [2367] = 2324, - [2368] = 424, - [2369] = 2369, - [2370] = 2370, - [2371] = 2324, - [2372] = 635, - [2373] = 397, - [2374] = 2331, - [2375] = 424, - [2376] = 2369, - [2377] = 411, - [2378] = 424, - [2379] = 2379, - [2380] = 2380, - [2381] = 2380, - [2382] = 2382, - [2383] = 2383, - [2384] = 2382, - [2385] = 2385, - [2386] = 2386, - [2387] = 2387, - [2388] = 2386, - [2389] = 2382, - [2390] = 2390, - [2391] = 2382, - [2392] = 2392, - [2393] = 424, - [2394] = 2392, - [2395] = 2380, - [2396] = 2386, - [2397] = 2397, - [2398] = 397, - [2399] = 2392, - [2400] = 2341, - [2401] = 2401, - [2402] = 2392, - [2403] = 1991, - [2404] = 2404, - [2405] = 2382, - [2406] = 2380, - [2407] = 2380, - [2408] = 635, - [2409] = 2409, - [2410] = 2410, - [2411] = 2392, - [2412] = 2386, - [2413] = 696, - [2414] = 635, - [2415] = 2380, - [2416] = 2382, - [2417] = 2361, - [2418] = 2386, - [2419] = 696, - [2420] = 2420, - [2421] = 2421, - [2422] = 2380, - [2423] = 2392, - [2424] = 2386, - [2425] = 2386, - [2426] = 2426, - [2427] = 2392, - [2428] = 2397, - [2429] = 2382, - [2430] = 2430, - [2431] = 2431, - [2432] = 2380, - [2433] = 2404, - [2434] = 2434, - [2435] = 2382, - [2436] = 2386, - [2437] = 2380, - [2438] = 2409, - [2439] = 2383, - [2440] = 2382, - [2441] = 2392, - [2442] = 2386, - [2443] = 2410, - [2444] = 2392, - [2445] = 2431, - [2446] = 411, - [2447] = 2447, - [2448] = 2448, - [2449] = 2449, - [2450] = 2450, - [2451] = 2450, - [2452] = 2452, - [2453] = 2450, - [2454] = 2452, - [2455] = 2452, - [2456] = 2450, - [2457] = 2452, - [2458] = 2458, - [2459] = 2459, - [2460] = 2460, - [2461] = 2450, - [2462] = 2448, - [2463] = 2452, - [2464] = 2452, - [2465] = 2459, - [2466] = 2466, - [2467] = 2467, - [2468] = 2452, - [2469] = 2469, - [2470] = 2452, - [2471] = 2448, - [2472] = 2447, - [2473] = 2459, - [2474] = 2466, - [2475] = 2450, - [2476] = 2459, - [2477] = 2466, - [2478] = 2469, - [2479] = 2452, - [2480] = 2450, - [2481] = 2467, - [2482] = 2450, - [2483] = 2447, - [2484] = 2450, - [2485] = 2485, - [2486] = 2450, - [2487] = 2469, - [2488] = 2488, - [2489] = 2452, - [2490] = 2450, - [2491] = 2459, - [2492] = 2450, - [2493] = 2452, - [2494] = 2452, - [2495] = 2450, - [2496] = 2467, - [2497] = 2447, - [2498] = 2447, - [2499] = 2452, - [2500] = 2447, - [2501] = 2450, - [2502] = 2466, - [2503] = 2469, - [2504] = 2452, - [2505] = 2448, - [2506] = 2466, - [2507] = 2452, - [2508] = 2459, - [2509] = 2469, - [2510] = 2510, - [2511] = 2450, - [2512] = 2467, - [2513] = 2488, - [2514] = 2466, - [2515] = 2450, - [2516] = 2467, - [2517] = 2452, - [2518] = 2488, - [2519] = 2450, - [2520] = 2520, - [2521] = 2521, - [2522] = 2520, - [2523] = 2447, - [2524] = 2448, - [2525] = 2450, - [2526] = 2448, - [2527] = 2452, - [2528] = 2467, - [2529] = 2452, - [2530] = 2448, - [2531] = 2452, - [2532] = 2452, - [2533] = 2469, - [2534] = 2450, - [2535] = 2448, - [2536] = 2459, - [2537] = 2452, - [2538] = 2450, - [2539] = 2459, - [2540] = 2466, - [2541] = 2466, - [2542] = 2542, - [2543] = 2469, - [2544] = 340, - [2545] = 2469, - [2546] = 2447, - [2547] = 2447, - [2548] = 2466, - [2549] = 2450, - [2550] = 2550, - [2551] = 2469, - [2552] = 2452, - [2553] = 2510, - [2554] = 2450, - [2555] = 2467, - [2556] = 2450, - [2557] = 2459, - [2558] = 2448, - [2559] = 2467, - [2560] = 2467, - [2561] = 2561, - [2562] = 635, - [2563] = 424, - [2564] = 424, - [2565] = 2565, - [2566] = 696, - [2567] = 2565, - [2568] = 2565, - [2569] = 424, - [2570] = 2565, - [2571] = 424, - [2572] = 2572, - [2573] = 2573, - [2574] = 424, - [2575] = 2565, - [2576] = 2565, - [2577] = 397, - [2578] = 2578, - [2579] = 2565, - [2580] = 411, - [2581] = 424, - [2582] = 424, - [2583] = 2565, - [2584] = 424, - [2585] = 2565, - [2586] = 2565, - [2587] = 424, - [2588] = 2565, - [2589] = 2589, - [2590] = 2589, - [2591] = 2589, - [2592] = 2592, - [2593] = 2589, - [2594] = 2592, - [2595] = 2589, - [2596] = 2589, - [2597] = 2592, - [2598] = 2589, - [2599] = 2592, - [2600] = 2592, - [2601] = 2592, - [2602] = 2602, - [2603] = 2602, - [2604] = 2592, - [2605] = 2589, - [2606] = 2606, - [2607] = 2592, - [2608] = 2589, - [2609] = 2592, - [2610] = 2610, - [2611] = 340, - [2612] = 2612, - [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2613, - [2617] = 2617, - [2618] = 2618, - [2619] = 560, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2617, - [2624] = 2621, - [2625] = 2625, - [2626] = 2617, - [2627] = 2617, - [2628] = 436, - [2629] = 2629, - [2630] = 447, - [2631] = 436, - [2632] = 2621, - [2633] = 487, - [2634] = 2622, - [2635] = 360, - [2636] = 2636, - [2637] = 487, - [2638] = 2620, - [2639] = 522, - [2640] = 2622, - [2641] = 2621, - [2642] = 522, - [2643] = 350, - [2644] = 361, - [2645] = 560, - [2646] = 2618, - [2647] = 2617, - [2648] = 2648, - [2649] = 2649, - [2650] = 382, - [2651] = 2629, - [2652] = 2617, - [2653] = 2617, - [2654] = 339, - [2655] = 2655, - [2656] = 2622, - [2657] = 2625, - [2658] = 2658, - [2659] = 2621, - [2660] = 2658, - [2661] = 2622, - [2662] = 340, - [2663] = 2621, - [2664] = 2617, - [2665] = 360, - [2666] = 2649, - [2667] = 2621, - [2668] = 339, - [2669] = 447, - [2670] = 2670, - [2671] = 2622, - [2672] = 2622, - [2673] = 2622, - [2674] = 2617, - [2675] = 2621, - [2676] = 2621, - [2677] = 2622, - [2678] = 339, - [2679] = 2679, - [2680] = 2670, - [2681] = 2681, - [2682] = 2682, - [2683] = 2683, - [2684] = 340, - [2685] = 2685, - [2686] = 2681, - [2687] = 2681, - [2688] = 2681, - [2689] = 2681, - [2690] = 2681, - [2691] = 2685, - [2692] = 2681, - [2693] = 2681, - [2694] = 340, - [2695] = 2681, - [2696] = 339, - [2697] = 2681, - [2698] = 2681, - [2699] = 2681, - [2700] = 2681, - [2701] = 2681, - [2702] = 2681, - [2703] = 2703, - [2704] = 360, - [2705] = 2705, - [2706] = 2706, - [2707] = 382, - [2708] = 2708, - [2709] = 2709, - [2710] = 2710, - [2711] = 2709, - [2712] = 2618, - [2713] = 382, - [2714] = 361, - [2715] = 522, - [2716] = 447, - [2717] = 560, - [2718] = 2636, - [2719] = 2719, - [2720] = 2709, - [2721] = 436, - [2722] = 522, - [2723] = 361, - [2724] = 2724, - [2725] = 487, - [2726] = 2726, - [2727] = 560, - [2728] = 2728, - [2729] = 350, - [2730] = 2730, - [2731] = 436, - [2732] = 360, - [2733] = 2709, - [2734] = 2709, - [2735] = 2735, - [2736] = 2710, - [2737] = 2737, - [2738] = 2708, - [2739] = 2730, - [2740] = 350, - [2741] = 447, - [2742] = 2709, - [2743] = 487, - [2744] = 2737, - [2745] = 2709, - [2746] = 2709, - [2747] = 2709, - [2748] = 2748, - [2749] = 2749, - [2750] = 2750, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2750, - [2755] = 2755, - [2756] = 2748, - [2757] = 2757, - [2758] = 2758, - [2759] = 2750, - [2760] = 2760, - [2761] = 2761, - [2762] = 2752, - [2763] = 2755, - [2764] = 2751, - [2765] = 2765, - [2766] = 2766, - [2767] = 2766, - [2768] = 2750, - [2769] = 2760, - [2770] = 2761, - [2771] = 2758, - [2772] = 2752, - [2773] = 2765, - [2774] = 2753, - [2775] = 2751, - [2776] = 2755, - [2777] = 2766, - [2778] = 2778, - [2779] = 2758, - [2780] = 2757, - [2781] = 2748, - [2782] = 2761, - [2783] = 2761, - [2784] = 2766, - [2785] = 2785, - [2786] = 360, - [2787] = 2765, - [2788] = 2765, - [2789] = 2752, - [2790] = 2785, - [2791] = 2755, - [2792] = 2785, - [2793] = 2785, - [2794] = 2750, - [2795] = 2785, - [2796] = 2751, - [2797] = 2750, - [2798] = 560, - [2799] = 2799, - [2800] = 2760, - [2801] = 2799, - [2802] = 2755, - [2803] = 2751, - [2804] = 2799, - [2805] = 2750, - [2806] = 2799, - [2807] = 2760, - [2808] = 2808, - [2809] = 2809, - [2810] = 2757, - [2811] = 2757, - [2812] = 2799, - [2813] = 2750, - [2814] = 2748, - [2815] = 2799, - [2816] = 2755, - [2817] = 2799, - [2818] = 2818, - [2819] = 436, - [2820] = 2820, - [2821] = 2785, - [2822] = 2748, - [2823] = 2757, - [2824] = 2824, - [2825] = 2825, - [2826] = 2826, - [2827] = 2750, - [2828] = 2799, - [2829] = 2757, - [2830] = 2785, - [2831] = 2748, - [2832] = 447, - [2833] = 2760, - [2834] = 2755, - [2835] = 2748, - [2836] = 2836, - [2837] = 2837, - [2838] = 2751, - [2839] = 350, - [2840] = 2750, - [2841] = 2799, - [2842] = 2758, - [2843] = 2758, - [2844] = 2844, - [2845] = 2761, - [2846] = 2752, - [2847] = 2766, - [2848] = 2765, - [2849] = 2758, - [2850] = 2850, - [2851] = 2851, - [2852] = 2752, - [2853] = 2750, - [2854] = 2750, - [2855] = 2751, - [2856] = 2755, - [2857] = 2857, - [2858] = 2761, - [2859] = 2760, - [2860] = 2860, - [2861] = 2757, - [2862] = 2765, - [2863] = 2748, - [2864] = 2766, - [2865] = 2761, - [2866] = 2758, - [2867] = 2867, - [2868] = 2766, - [2869] = 2869, - [2870] = 2760, - [2871] = 2765, - [2872] = 487, - [2873] = 360, - [2874] = 522, - [2875] = 361, - [2876] = 2876, - [2877] = 2809, - [2878] = 2748, - [2879] = 2785, - [2880] = 382, - [2881] = 2881, - [2882] = 2760, - [2883] = 2883, - [2884] = 2757, - [2885] = 2761, - [2886] = 2766, - [2887] = 2758, - [2888] = 2765, - [2889] = 2889, - [2890] = 2760, - [2891] = 2757, - [2892] = 2752, - [2893] = 2755, - [2894] = 2758, - [2895] = 2785, - [2896] = 2751, - [2897] = 2750, - [2898] = 2761, - [2899] = 2766, - [2900] = 560, - [2901] = 2901, - [2902] = 522, - [2903] = 2765, - [2904] = 487, - [2905] = 447, - [2906] = 436, - [2907] = 2752, - [2908] = 2750, - [2909] = 382, - [2910] = 2837, - [2911] = 361, - [2912] = 2751, - [2913] = 350, - [2914] = 2752, - [2915] = 2915, - [2916] = 2750, - [2917] = 2917, - [2918] = 2918, - [2919] = 2919, - [2920] = 2918, - [2921] = 2921, - [2922] = 2922, - [2923] = 2923, - [2924] = 2921, - [2925] = 2925, - [2926] = 2926, - [2927] = 2927, - [2928] = 2928, - [2929] = 2918, - [2930] = 2927, - [2931] = 2927, - [2932] = 2926, - [2933] = 2921, - [2934] = 2934, - [2935] = 2918, - [2936] = 2918, - [2937] = 2937, - [2938] = 2926, - [2939] = 2927, - [2940] = 2927, - [2941] = 2941, - [2942] = 2926, - [2943] = 2927, - [2944] = 2934, - [2945] = 2921, - [2946] = 2946, - [2947] = 2947, - [2948] = 2921, - [2949] = 2934, - [2950] = 2927, - [2951] = 2926, - [2952] = 2934, - [2953] = 2934, - [2954] = 2954, - [2955] = 2921, - [2956] = 2934, - [2957] = 2934, - [2958] = 2934, - [2959] = 2934, - [2960] = 2928, - [2961] = 2918, - [2962] = 2918, - [2963] = 2926, - [2964] = 2922, - [2965] = 2921, - [2966] = 2966, - [2967] = 2927, - [2968] = 2918, - [2969] = 2926, - [2970] = 2926, - [2971] = 2927, - [2972] = 2921, - [2973] = 2925, - [2974] = 2918, - [2975] = 2919, - [2976] = 2925, - [2977] = 2925, - [2978] = 2925, - [2979] = 2921, - [2980] = 2925, - [2981] = 2926, - [2982] = 2925, - [2983] = 2925, - [2984] = 2925, - [2985] = 2985, - [2986] = 2986, - [2987] = 1483, - [2988] = 2988, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, - [2992] = 2992, - [2993] = 2993, - [2994] = 2994, - [2995] = 2995, - [2996] = 2996, - [2997] = 2997, - [2998] = 2998, - [2999] = 2999, - [3000] = 1459, - [3001] = 3001, - [3002] = 3002, - [3003] = 3003, - [3004] = 3004, - [3005] = 3005, - [3006] = 2997, - [3007] = 3007, - [3008] = 3008, - [3009] = 2993, - [3010] = 3010, - [3011] = 2991, - [3012] = 3012, - [3013] = 3010, - [3014] = 3014, - [3015] = 3010, - [3016] = 3016, - [3017] = 3017, - [3018] = 3018, - [3019] = 3002, - [3020] = 3007, - [3021] = 2997, - [3022] = 3014, - [3023] = 2990, - [3024] = 3024, - [3025] = 3025, - [3026] = 3004, - [3027] = 2991, - [3028] = 3003, - [3029] = 3029, - [3030] = 3030, - [3031] = 3002, - [3032] = 3001, - [3033] = 2988, - [3034] = 2989, - [3035] = 3030, - [3036] = 2990, - [3037] = 2992, - [3038] = 2999, - [3039] = 3010, - [3040] = 2993, - [3041] = 2994, - [3042] = 2998, - [3043] = 2988, - [3044] = 2995, - [3045] = 2996, - [3046] = 3046, - [3047] = 2999, - [3048] = 2998, - [3049] = 3049, - [3050] = 3001, - [3051] = 2996, - [3052] = 3014, - [3053] = 3003, - [3054] = 3054, - [3055] = 3004, - [3056] = 3002, - [3057] = 2995, - [3058] = 3007, - [3059] = 3059, - [3060] = 2994, - [3061] = 2989, - [3062] = 3062, - [3063] = 3024, - [3064] = 3010, - [3065] = 2994, - [3066] = 2992, - [3067] = 2990, - [3068] = 3068, - [3069] = 2989, - [3070] = 2988, - [3071] = 3071, - [3072] = 3030, - [3073] = 2991, - [3074] = 3074, - [3075] = 3014, - [3076] = 3014, - [3077] = 3002, - [3078] = 3078, - [3079] = 3079, - [3080] = 2991, - [3081] = 3007, - [3082] = 2990, - [3083] = 3083, - [3084] = 3084, - [3085] = 3010, - [3086] = 3086, - [3087] = 2992, - [3088] = 3030, - [3089] = 2993, - [3090] = 2988, - [3091] = 3091, - [3092] = 2989, - [3093] = 2990, - [3094] = 2992, - [3095] = 3095, - [3096] = 3024, - [3097] = 2994, - [3098] = 3002, - [3099] = 2837, - [3100] = 2995, - [3101] = 2996, - [3102] = 2997, - [3103] = 2994, - [3104] = 3004, - [3105] = 3105, - [3106] = 3010, - [3107] = 2995, - [3108] = 2996, - [3109] = 2998, - [3110] = 2999, - [3111] = 3003, - [3112] = 3001, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 2993, - [3118] = 3001, - [3119] = 3002, - [3120] = 2809, - [3121] = 1439, - [3122] = 2999, - [3123] = 2998, - [3124] = 2997, - [3125] = 3007, - [3126] = 2996, - [3127] = 3010, - [3128] = 2995, - [3129] = 2994, - [3130] = 3024, - [3131] = 2997, - [3132] = 3003, - [3133] = 3004, - [3134] = 2988, - [3135] = 2992, - [3136] = 3007, - [3137] = 2990, - [3138] = 2998, - [3139] = 2989, - [3140] = 2988, - [3141] = 3030, - [3142] = 2991, - [3143] = 2999, - [3144] = 3144, - [3145] = 3014, - [3146] = 3146, - [3147] = 3007, - [3148] = 3148, - [3149] = 3014, - [3150] = 3004, - [3151] = 3151, - [3152] = 3030, - [3153] = 3003, - [3154] = 3001, - [3155] = 2991, - [3156] = 3156, - [3157] = 2999, - [3158] = 3062, - [3159] = 3059, - [3160] = 2998, - [3161] = 3016, - [3162] = 3030, - [3163] = 3018, - [3164] = 2997, - [3165] = 2996, - [3166] = 3078, - [3167] = 3091, - [3168] = 2995, - [3169] = 3049, - [3170] = 3170, - [3171] = 3171, - [3172] = 3146, - [3173] = 3173, - [3174] = 2994, - [3175] = 2993, - [3176] = 2989, - [3177] = 2992, - [3178] = 2990, - [3179] = 2992, - [3180] = 3024, - [3181] = 2994, - [3182] = 2990, - [3183] = 2995, - [3184] = 2996, - [3185] = 2997, - [3186] = 3024, - [3187] = 3187, - [3188] = 3188, - [3189] = 2998, - [3190] = 2999, - [3191] = 3002, - [3192] = 3192, - [3193] = 2986, - [3194] = 3187, - [3195] = 3151, - [3196] = 2993, - [3197] = 2990, - [3198] = 3024, - [3199] = 2993, - [3200] = 3105, - [3201] = 3201, - [3202] = 3170, - [3203] = 3091, - [3204] = 3171, - [3205] = 3079, - [3206] = 2989, - [3207] = 3091, - [3208] = 3171, - [3209] = 2988, - [3210] = 3030, - [3211] = 3091, - [3212] = 3171, - [3213] = 3029, - [3214] = 3010, - [3215] = 3091, - [3216] = 3171, - [3217] = 3004, - [3218] = 3218, - [3219] = 3091, - [3220] = 3171, - [3221] = 2991, - [3222] = 2990, - [3223] = 3091, - [3224] = 3171, - [3225] = 3171, - [3226] = 3024, - [3227] = 3091, - [3228] = 3171, - [3229] = 3001, - [3230] = 3144, - [3231] = 3116, - [3232] = 3113, - [3233] = 3115, - [3234] = 3068, - [3235] = 3014, - [3236] = 3017, - [3237] = 3237, - [3238] = 3014, - [3239] = 3025, - [3240] = 3114, - [3241] = 3002, - [3242] = 3192, - [3243] = 2990, - [3244] = 3001, - [3245] = 3187, - [3246] = 2999, - [3247] = 2998, - [3248] = 2997, - [3249] = 2996, - [3250] = 2995, - [3251] = 2994, - [3252] = 2993, - [3253] = 2990, - [3254] = 2992, - [3255] = 2990, - [3256] = 2989, - [3257] = 2988, - [3258] = 3007, - [3259] = 3030, - [3260] = 2990, - [3261] = 3024, - [3262] = 3262, - [3263] = 2990, - [3264] = 2991, - [3265] = 3148, - [3266] = 3083, - [3267] = 3156, - [3268] = 3218, - [3269] = 3004, - [3270] = 3003, - [3271] = 3084, - [3272] = 3004, - [3273] = 3003, - [3274] = 3007, - [3275] = 2990, - [3276] = 3276, - [3277] = 3201, - [3278] = 3083, - [3279] = 3003, - [3280] = 2990, - [3281] = 2990, - [3282] = 3008, - [3283] = 2994, - [3284] = 3083, - [3285] = 3083, - [3286] = 3001, - [3287] = 2990, - [3288] = 3083, - [3289] = 2990, - [3290] = 3083, - [3291] = 2990, - [3292] = 3083, - [3293] = 3083, - [3294] = 3294, - [3295] = 3295, - [3296] = 3295, - [3297] = 3295, - [3298] = 3295, - [3299] = 3295, - [3300] = 3300, - [3301] = 3295, - [3302] = 3295, - [3303] = 3295, - [3304] = 3295, - [3305] = 3295, - [3306] = 3295, - [3307] = 3295, - [3308] = 3295, - [3309] = 3295, - [3310] = 3295, - [3311] = 3295, - [3312] = 3295, - [3313] = 3295, - [3314] = 3295, - [3315] = 3295, - [3316] = 3295, - [3317] = 3295, + [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, + [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, + [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, + [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, + [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, + [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, + [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, + [4512] = 4512, + [4513] = 4513, + [4514] = 4514, + [4515] = 4515, + [4516] = 4513, + [4517] = 4517, + [4518] = 4518, + [4519] = 4518, + [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, + [4549] = 4520, + [4550] = 4514, + [4551] = 4551, + [4552] = 4518, + [4553] = 4526, + [4554] = 4520, + [4555] = 4520, + [4556] = 4556, + [4557] = 4515, + [4558] = 4518, + [4559] = 4512, + [4560] = 4514, + [4561] = 4515, + [4562] = 4512, + [4563] = 4518, + [4564] = 4514, + [4565] = 4520, + [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, + [4587] = 4520, + [4588] = 4518, + [4589] = 4515, + [4590] = 4512, + [4591] = 4526, + [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, + [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, + [4827] = 4827, + [4828] = 736, + [4829] = 730, + [4830] = 4830, + [4831] = 4827, + [4832] = 4830, + [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, + [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, + [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, + [4992] = 4992, + [4993] = 4991, + [4994] = 4994, + [4995] = 4990, + [4996] = 4991, + [4997] = 4997, + [4998] = 4992, + [4999] = 4990, + [5000] = 4990, + [5001] = 5001, + [5002] = 4997, + [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, + [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, + [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, + [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, + [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, + [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, + [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, + [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, + [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, + [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, + [5744] = 5744, + [5745] = 5744, + [5746] = 5723, + [5747] = 5710, + [5748] = 5703, + [5749] = 5703, + [5750] = 5704, + [5751] = 5703, + [5752] = 5752, + [5753] = 5704, + [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, + [5823] = 5823, + [5824] = 5824, + [5825] = 5825, + [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, + [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, + [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, + [5932] = 5932, + [5933] = 5824, + [5934] = 5858, + [5935] = 5935, + [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, + [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, + [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, + [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, + [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, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -6535,8 +9746,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(38) if (lookahead == '!') ADVANCE(7); if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(136); if (lookahead == '%') ADVANCE(78); if (lookahead == '&') ADVANCE(84); if (lookahead == '(') ADVANCE(45); @@ -6547,39 +9757,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(73); if (lookahead == '.') ADVANCE(41); if (lookahead == '/') ADVANCE(75); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == ':') ADVANCE(44); if (lookahead == '<') ADVANCE(92); if (lookahead == '=') ADVANCE(50); if (lookahead == '>') ADVANCE(98); if (lookahead == '?') ADVANCE(5); if (lookahead == '@') ADVANCE(59); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(136); if (lookahead == '[') ADVANCE(47); - if (lookahead == '\\') ADVANCE(116); + if (lookahead == '\\') ADVANCE(115); if (lookahead == ']') ADVANCE(49); if (lookahead == '^') ADVANCE(86); if (lookahead == '{') ADVANCE(52); if (lookahead == '|') ADVANCE(82); if (lookahead == '}') ADVANCE(53); if (lookahead == '~') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(140); + if (lookahead == '\n') ADVANCE(137); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(115); + if (lookahead == '\n') ADVANCE(114); END_STATE(); case 3: if (lookahead == '\n') ADVANCE(70); if (lookahead == '\r') SKIP(3) if (lookahead == '!') ADVANCE(7); if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); + if (lookahead == '#') ADVANCE(136); if (lookahead == '%') ADVANCE(77); if (lookahead == '&') ADVANCE(83); if (lookahead == '(') ADVANCE(45); @@ -6589,7 +9798,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(74); if (lookahead == '.') ADVANCE(42); if (lookahead == '/') ADVANCE(76); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == '<') ADVANCE(93); if (lookahead == '=') ADVANCE(50); if (lookahead == '>') ADVANCE(99); @@ -6607,11 +9816,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 4: if (lookahead == '.') ADVANCE(60); @@ -6630,42 +9839,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 8: if (lookahead == '_') ADVANCE(16); if (lookahead == '0' || - lookahead == '1') ADVANCE(127); + lookahead == '1') ADVANCE(126); END_STATE(); case 9: if (lookahead == '_') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(127); END_STATE(); case 10: if (lookahead == '_') ADVANCE(29); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); case 11: if (lookahead == '{') ADVANCE(37); END_STATE(); case 12: - if (lookahead == '}') ADVANCE(115); + if (lookahead == '}') ADVANCE(114); if (lookahead != 0) ADVANCE(12); END_STATE(); case 13: - if (lookahead == '}') ADVANCE(114); + if (lookahead == '}') ADVANCE(113); if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: if (lookahead == 0 || - lookahead == '\n') ADVANCE(140); + lookahead == '\n') ADVANCE(137); if (lookahead == '\r') ADVANCE(1); END_STATE(); case 15: if (lookahead == '+' || lookahead == '-') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); END_STATE(); case 16: if (lookahead == '0' || - lookahead == '1') ADVANCE(127); + lookahead == '1') ADVANCE(126); END_STATE(); case 17: if (lookahead == '\t' || @@ -6677,22 +9886,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(20) if (lookahead == ' ') ADVANCE(63); if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); + if (lookahead == '#') ADVANCE(136); if (lookahead == '(') ADVANCE(45); if (lookahead == '+') ADVANCE(61); if (lookahead == '-') ADVANCE(72); if (lookahead == '.') ADVANCE(42); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == '?') ADVANCE(4); if (lookahead == '[') ADVANCE(47); if (lookahead == '\\') ADVANCE(14); if (lookahead == '{') ADVANCE(52); if (lookahead == '~') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 18: if (lookahead == '\t' || @@ -6704,22 +9913,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(20) if (lookahead == ' ') ADVANCE(17); if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); + if (lookahead == '#') ADVANCE(136); if (lookahead == '(') ADVANCE(45); if (lookahead == '+') ADVANCE(61); if (lookahead == '-') ADVANCE(72); if (lookahead == '.') ADVANCE(42); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == '?') ADVANCE(4); if (lookahead == '[') ADVANCE(47); if (lookahead == '\\') ADVANCE(14); if (lookahead == '{') ADVANCE(52); if (lookahead == '~') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 19: if (lookahead == '\t' || @@ -6731,22 +9940,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(20) if (lookahead == ' ') ADVANCE(18); if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); + if (lookahead == '#') ADVANCE(136); if (lookahead == '(') ADVANCE(45); if (lookahead == '+') ADVANCE(61); if (lookahead == '-') ADVANCE(72); if (lookahead == '.') ADVANCE(42); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == '?') ADVANCE(4); if (lookahead == '[') ADVANCE(47); if (lookahead == '\\') ADVANCE(14); if (lookahead == '{') ADVANCE(52); if (lookahead == '~') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 20: if (lookahead == '\t' || @@ -6758,22 +9967,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(20) if (lookahead == ' ') ADVANCE(19); if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); + if (lookahead == '#') ADVANCE(136); if (lookahead == '(') ADVANCE(45); if (lookahead == '+') ADVANCE(61); if (lookahead == '-') ADVANCE(72); if (lookahead == '.') ADVANCE(42); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == '?') ADVANCE(4); if (lookahead == '[') ADVANCE(47); if (lookahead == '\\') ADVANCE(14); if (lookahead == '{') ADVANCE(52); if (lookahead == '~') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 21: if (lookahead == '\t' || @@ -6785,24 +9994,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(21) if (lookahead == '\r') SKIP(21) if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); + if (lookahead == '#') ADVANCE(136); if (lookahead == '(') ADVANCE(45); if (lookahead == '*') ADVANCE(54); if (lookahead == '+') ADVANCE(61); if (lookahead == '-') ADVANCE(72); if (lookahead == '.') ADVANCE(41); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == '?') ADVANCE(4); if (lookahead == '[') ADVANCE(47); if (lookahead == '\\') ADVANCE(14); if (lookahead == ']') ADVANCE(49); if (lookahead == '{') ADVANCE(52); if (lookahead == '~') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 22: if (lookahead == '\t' || @@ -6811,14 +10020,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(119); - if (lookahead == '\r') ADVANCE(119); - if (lookahead == '#') ADVANCE(117); - if (lookahead == '$') ADVANCE(118); - if (lookahead == '\\') ADVANCE(116); + lookahead == 65279) ADVANCE(118); + if (lookahead == '\r') ADVANCE(118); + if (lookahead == '#') ADVANCE(116); + if (lookahead == '$') ADVANCE(117); + if (lookahead == '\\') ADVANCE(115); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(120); + lookahead != '}') ADVANCE(119); END_STATE(); case 23: if (lookahead == '\t' || @@ -6829,19 +10038,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(23) if (lookahead == '\r') SKIP(23) - if (lookahead == '#') ADVANCE(139); - if (lookahead == '0') ADVANCE(131); + if (lookahead == '#') ADVANCE(136); + if (lookahead == '0') ADVANCE(130); if (lookahead == '\\') ADVANCE(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(125); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); case 24: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(127); END_STATE(); case 25: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); END_STATE(); case 26: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); END_STATE(); case 27: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); @@ -6849,12 +10058,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 28: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 29: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); case 30: if (('0' <= lookahead && lookahead <= '9') || @@ -6907,7 +10116,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(38) if (lookahead == '!') ADVANCE(7); if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); + if (lookahead == '#') ADVANCE(136); if (lookahead == '%') ADVANCE(78); if (lookahead == '&') ADVANCE(84); if (lookahead == '(') ADVANCE(45); @@ -6918,15 +10127,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(73); if (lookahead == '.') ADVANCE(41); if (lookahead == '/') ADVANCE(75); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == ':') ADVANCE(44); if (lookahead == '<') ADVANCE(92); if (lookahead == '=') ADVANCE(50); if (lookahead == '>') ADVANCE(98); if (lookahead == '?') ADVANCE(5); if (lookahead == '@') ADVANCE(59); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(136); if (lookahead == '[') ADVANCE(47); if (lookahead == '\\') ADVANCE(14); if (lookahead == ']') ADVANCE(49); @@ -6935,10 +10142,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(82); if (lookahead == '}') ADVANCE(53); if (lookahead == '~') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (lookahead == '$' || ('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 39: if (eof) ADVANCE(40); @@ -6952,7 +10159,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(39) if (lookahead == '!') ADVANCE(7); if (lookahead == '"') ADVANCE(64); - if (lookahead == '#') ADVANCE(139); + if (lookahead == '#') ADVANCE(136); if (lookahead == '%') ADVANCE(78); if (lookahead == '&') ADVANCE(84); if (lookahead == '(') ADVANCE(45); @@ -6963,7 +10170,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(73); if (lookahead == '.') ADVANCE(42); if (lookahead == '/') ADVANCE(75); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '0') ADVANCE(123); if (lookahead == ':') ADVANCE(44); if (lookahead == '<') ADVANCE(92); if (lookahead == '=') ADVANCE(50); @@ -6978,10 +10185,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(82); if (lookahead == '}') ADVANCE(53); if (lookahead == '~') ADVANCE(91); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); if (lookahead == '$' || ('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); END_STATE(); case 40: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -6989,11 +10196,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 41: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); case 42: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_COMMA); @@ -7071,7 +10278,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 65: ACCEPT_TOKEN(aux_sym_string_literal_expr_token1); if (lookahead == '\n') ADVANCE(69); - if (lookahead == '"') ADVANCE(139); + if (lookahead == '"') ADVANCE(136); if (lookahead != 0) ADVANCE(65); END_STATE(); case 66: @@ -7260,18 +10467,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_QMARK_LBRACK); END_STATE(); case 113: - ACCEPT_TOKEN(sym_raw_string_start); - END_STATE(); - case 114: ACCEPT_TOKEN(sym_escape_interpolation); END_STATE(); - case 115: + case 114: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 116: + case 115: ACCEPT_TOKEN(sym__not_escape_sequence); - if (lookahead == 0) ADVANCE(140); - if (lookahead == '\n') ADVANCE(115); + if (lookahead == 0) ADVANCE(137); + if (lookahead == '\n') ADVANCE(114); if (lookahead == '\r') ADVANCE(2); if (lookahead == 'N') ADVANCE(11); if (lookahead == 'U') ADVANCE(36); @@ -7285,25 +10489,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'f' || lookahead == 'n' || lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(115); + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(114); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27); END_STATE(); - case 117: + case 116: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(120); + if (lookahead == '\n') ADVANCE(119); if (lookahead == '\\' || lookahead == '{' || - lookahead == '}') ADVANCE(139); - if (lookahead != 0) ADVANCE(117); + lookahead == '}') ADVANCE(136); + if (lookahead != 0) ADVANCE(116); END_STATE(); - case 118: + case 117: ACCEPT_TOKEN(sym__string_content); if (lookahead == '{') ADVANCE(13); if (lookahead != 0 && lookahead != '\\' && - lookahead != '}') ADVANCE(120); + lookahead != '}') ADVANCE(119); END_STATE(); - case 119: + case 118: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\t' || lookahead == '\n' || @@ -7311,191 +10515,181 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(119); - if (lookahead == '\r') ADVANCE(119); - if (lookahead == '#') ADVANCE(117); + lookahead == 65279) ADVANCE(118); + if (lookahead == '\r') ADVANCE(118); + if (lookahead == '#') ADVANCE(116); if (lookahead != 0 && lookahead != '\\' && lookahead != '{' && - lookahead != '}') ADVANCE(120); + lookahead != '}') ADVANCE(119); END_STATE(); - case 120: + case 119: ACCEPT_TOKEN(sym__string_content); if (lookahead != 0 && lookahead != '\\' && lookahead != '{' && - lookahead != '}') ADVANCE(120); + lookahead != '}') ADVANCE(119); END_STATE(); - case 121: + case 120: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 122: + case 121: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(134); - if (lookahead == 'G') ADVANCE(130); - if (lookahead == 'K') ADVANCE(130); - if (lookahead == 'M') ADVANCE(130); - if (lookahead == 'P') ADVANCE(130); - if (lookahead == 'T') ADVANCE(130); - if (lookahead == '_') ADVANCE(123); + if (lookahead == '.') ADVANCE(133); + if (lookahead == 'G') ADVANCE(129); + if (lookahead == 'K') ADVANCE(129); + if (lookahead == 'M') ADVANCE(129); + if (lookahead == 'P') ADVANCE(129); + if (lookahead == 'T') ADVANCE(129); + if (lookahead == '_') ADVANCE(122); if (lookahead == 'k' || lookahead == 'm' || lookahead == 'n' || - lookahead == 'u') ADVANCE(121); + lookahead == 'u') ADVANCE(120); if (lookahead == 'E' || lookahead == 'e') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); END_STATE(); - case 123: + case 122: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(134); - if (lookahead == 'G') ADVANCE(130); - if (lookahead == 'K') ADVANCE(130); - if (lookahead == 'M') ADVANCE(130); - if (lookahead == 'P') ADVANCE(130); - if (lookahead == 'T') ADVANCE(130); + if (lookahead == '.') ADVANCE(133); + if (lookahead == 'G') ADVANCE(129); + if (lookahead == 'K') ADVANCE(129); + if (lookahead == 'M') ADVANCE(129); + if (lookahead == 'P') ADVANCE(129); + if (lookahead == 'T') ADVANCE(129); if (lookahead == 'k' || lookahead == 'm' || lookahead == 'n' || - lookahead == 'u') ADVANCE(121); + lookahead == 'u') ADVANCE(120); if (lookahead == 'E' || lookahead == 'e') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); END_STATE(); - case 124: + case 123: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(134); + if (lookahead == '.') ADVANCE(133); if (lookahead == 'B' || lookahead == 'b') ADVANCE(8); - if (lookahead == 'G') ADVANCE(130); - if (lookahead == 'K') ADVANCE(130); - if (lookahead == 'M') ADVANCE(130); + if (lookahead == 'G') ADVANCE(129); + if (lookahead == 'K') ADVANCE(129); + if (lookahead == 'M') ADVANCE(129); if (lookahead == 'O' || lookahead == 'o') ADVANCE(9); - if (lookahead == 'P') ADVANCE(130); - if (lookahead == 'T') ADVANCE(130); + if (lookahead == 'P') ADVANCE(129); + if (lookahead == 'T') ADVANCE(129); if (lookahead == 'X' || lookahead == 'x') ADVANCE(10); - if (lookahead == '_') ADVANCE(123); + if (lookahead == '_') ADVANCE(122); if (lookahead == 'k' || lookahead == 'm' || lookahead == 'n' || - lookahead == 'u') ADVANCE(121); + lookahead == 'u') ADVANCE(120); if (lookahead == 'E' || lookahead == 'e') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); END_STATE(); - case 125: + case 124: ACCEPT_TOKEN(sym_integer); - if (lookahead == 'G') ADVANCE(130); - if (lookahead == 'K') ADVANCE(130); - if (lookahead == 'M') ADVANCE(130); - if (lookahead == 'P') ADVANCE(130); - if (lookahead == 'T') ADVANCE(130); - if (lookahead == '_') ADVANCE(126); + if (lookahead == 'G') ADVANCE(129); + if (lookahead == 'K') ADVANCE(129); + if (lookahead == 'M') ADVANCE(129); + if (lookahead == 'P') ADVANCE(129); + if (lookahead == 'T') ADVANCE(129); + if (lookahead == '_') ADVANCE(125); if (lookahead == 'k' || lookahead == 'm' || lookahead == 'n' || - lookahead == 'u') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); + lookahead == 'u') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 126: + case 125: ACCEPT_TOKEN(sym_integer); - if (lookahead == 'G') ADVANCE(130); - if (lookahead == 'K') ADVANCE(130); - if (lookahead == 'M') ADVANCE(130); - if (lookahead == 'P') ADVANCE(130); - if (lookahead == 'T') ADVANCE(130); + if (lookahead == 'G') ADVANCE(129); + if (lookahead == 'K') ADVANCE(129); + if (lookahead == 'M') ADVANCE(129); + if (lookahead == 'P') ADVANCE(129); + if (lookahead == 'T') ADVANCE(129); if (lookahead == 'k' || lookahead == 'm' || lookahead == 'n' || - lookahead == 'u') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); + lookahead == 'u') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 127: + case 126: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(16); if (lookahead == '0' || - lookahead == '1') ADVANCE(127); + lookahead == '1') ADVANCE(126); END_STATE(); - case 128: + case 127: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(127); END_STATE(); - case 129: + case 128: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(29); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); - case 130: + case 129: ACCEPT_TOKEN(sym_integer); - if (lookahead == 'i') ADVANCE(121); + if (lookahead == 'i') ADVANCE(120); END_STATE(); - case 131: + case 130: ACCEPT_TOKEN(sym_integer); if (lookahead == 'B' || lookahead == 'b') ADVANCE(8); - if (lookahead == 'G') ADVANCE(130); - if (lookahead == 'K') ADVANCE(130); - if (lookahead == 'M') ADVANCE(130); + if (lookahead == 'G') ADVANCE(129); + if (lookahead == 'K') ADVANCE(129); + if (lookahead == 'M') ADVANCE(129); if (lookahead == 'O' || lookahead == 'o') ADVANCE(9); - if (lookahead == 'P') ADVANCE(130); - if (lookahead == 'T') ADVANCE(130); + if (lookahead == 'P') ADVANCE(129); + if (lookahead == 'T') ADVANCE(129); if (lookahead == 'X' || lookahead == 'x') ADVANCE(10); - if (lookahead == '_') ADVANCE(126); + if (lookahead == '_') ADVANCE(125); if (lookahead == 'k' || lookahead == 'm' || lookahead == 'n' || - lookahead == 'u') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(125); + lookahead == 'u') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(124); END_STATE(); - case 132: + case 131: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(134); + if (lookahead == '_') ADVANCE(133); if (lookahead == 'E' || lookahead == 'e') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + END_STATE(); + case 132: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); END_STATE(); case 133: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); END_STATE(); case 134: ACCEPT_TOKEN(sym_float); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(15); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); END_STATE(); case 135: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); - END_STATE(); - case 136: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(113); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(138); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(135); END_STATE(); - case 137: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '{') ADVANCE(13); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(138); - END_STATE(); - case 138: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(138); - END_STATE(); - case 139: + case 136: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(139); + lookahead != '\n') ADVANCE(136); END_STATE(); - case 140: + case 137: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); default: @@ -7954,813 +11148,813 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 39, .external_lex_state = 2}, [2] = {.lex_state = 39, .external_lex_state = 3}, - [3] = {.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 = 3}, - [6] = {.lex_state = 39, .external_lex_state = 3}, - [7] = {.lex_state = 39, .external_lex_state = 3}, - [8] = {.lex_state = 39, .external_lex_state = 3}, - [9] = {.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 = 3}, - [12] = {.lex_state = 39, .external_lex_state = 3}, - [13] = {.lex_state = 39, .external_lex_state = 3}, + [11] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 3}, - [16] = {.lex_state = 39, .external_lex_state = 3}, - [17] = {.lex_state = 39, .external_lex_state = 3}, - [18] = {.lex_state = 39, .external_lex_state = 3}, - [19] = {.lex_state = 39, .external_lex_state = 3}, - [20] = {.lex_state = 39, .external_lex_state = 3}, - [21] = {.lex_state = 39, .external_lex_state = 3}, - [22] = {.lex_state = 39, .external_lex_state = 3}, - [23] = {.lex_state = 39, .external_lex_state = 3}, - [24] = {.lex_state = 39, .external_lex_state = 3}, - [25] = {.lex_state = 39, .external_lex_state = 3}, - [26] = {.lex_state = 39, .external_lex_state = 3}, - [27] = {.lex_state = 39, .external_lex_state = 3}, - [28] = {.lex_state = 39, .external_lex_state = 3}, - [29] = {.lex_state = 39, .external_lex_state = 3}, - [30] = {.lex_state = 39, .external_lex_state = 3}, - [31] = {.lex_state = 39, .external_lex_state = 3}, - [32] = {.lex_state = 39, .external_lex_state = 3}, - [33] = {.lex_state = 39, .external_lex_state = 3}, - [34] = {.lex_state = 39, .external_lex_state = 3}, - [35] = {.lex_state = 39, .external_lex_state = 3}, - [36] = {.lex_state = 39, .external_lex_state = 2}, - [37] = {.lex_state = 39, .external_lex_state = 3}, - [38] = {.lex_state = 39, .external_lex_state = 3}, - [39] = {.lex_state = 39, .external_lex_state = 2}, - [40] = {.lex_state = 39, .external_lex_state = 3}, - [41] = {.lex_state = 39, .external_lex_state = 3}, - [42] = {.lex_state = 39, .external_lex_state = 4}, - [43] = {.lex_state = 39, .external_lex_state = 4}, - [44] = {.lex_state = 39, .external_lex_state = 2}, - [45] = {.lex_state = 39, .external_lex_state = 4}, - [46] = {.lex_state = 39, .external_lex_state = 4}, - [47] = {.lex_state = 39, .external_lex_state = 4}, - [48] = {.lex_state = 39, .external_lex_state = 4}, - [49] = {.lex_state = 39, .external_lex_state = 4}, - [50] = {.lex_state = 39, .external_lex_state = 3}, - [51] = {.lex_state = 39, .external_lex_state = 4}, - [52] = {.lex_state = 39, .external_lex_state = 4}, - [53] = {.lex_state = 39, .external_lex_state = 4}, - [54] = {.lex_state = 39, .external_lex_state = 4}, - [55] = {.lex_state = 39, .external_lex_state = 4}, - [56] = {.lex_state = 39, .external_lex_state = 4}, - [57] = {.lex_state = 39, .external_lex_state = 4}, - [58] = {.lex_state = 39, .external_lex_state = 4}, - [59] = {.lex_state = 39, .external_lex_state = 4}, - [60] = {.lex_state = 39, .external_lex_state = 4}, - [61] = {.lex_state = 39, .external_lex_state = 4}, - [62] = {.lex_state = 39, .external_lex_state = 4}, - [63] = {.lex_state = 39, .external_lex_state = 4}, - [64] = {.lex_state = 39, .external_lex_state = 4}, - [65] = {.lex_state = 39, .external_lex_state = 3}, - [66] = {.lex_state = 39, .external_lex_state = 4}, - [67] = {.lex_state = 39, .external_lex_state = 4}, - [68] = {.lex_state = 39, .external_lex_state = 4}, - [69] = {.lex_state = 39, .external_lex_state = 4}, - [70] = {.lex_state = 39, .external_lex_state = 4}, - [71] = {.lex_state = 39, .external_lex_state = 4}, - [72] = {.lex_state = 39, .external_lex_state = 4}, - [73] = {.lex_state = 39, .external_lex_state = 4}, - [74] = {.lex_state = 39, .external_lex_state = 4}, - [75] = {.lex_state = 39, .external_lex_state = 4}, - [76] = {.lex_state = 39, .external_lex_state = 4}, - [77] = {.lex_state = 39, .external_lex_state = 4}, - [78] = {.lex_state = 39, .external_lex_state = 2}, - [79] = {.lex_state = 39, .external_lex_state = 4}, - [80] = {.lex_state = 3, .external_lex_state = 5}, - [81] = {.lex_state = 3, .external_lex_state = 5}, - [82] = {.lex_state = 3, .external_lex_state = 5}, - [83] = {.lex_state = 3, .external_lex_state = 5}, - [84] = {.lex_state = 3, .external_lex_state = 5}, - [85] = {.lex_state = 3, .external_lex_state = 5}, - [86] = {.lex_state = 3, .external_lex_state = 5}, - [87] = {.lex_state = 3, .external_lex_state = 5}, - [88] = {.lex_state = 3, .external_lex_state = 5}, - [89] = {.lex_state = 3, .external_lex_state = 5}, - [90] = {.lex_state = 21, .external_lex_state = 6}, - [91] = {.lex_state = 21, .external_lex_state = 6}, - [92] = {.lex_state = 39, .external_lex_state = 5}, - [93] = {.lex_state = 39, .external_lex_state = 5}, - [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 = 5}, - [98] = {.lex_state = 39, .external_lex_state = 5}, - [99] = {.lex_state = 39, .external_lex_state = 5}, - [100] = {.lex_state = 39, .external_lex_state = 5}, - [101] = {.lex_state = 39, .external_lex_state = 5}, - [102] = {.lex_state = 39, .external_lex_state = 5}, - [103] = {.lex_state = 39, .external_lex_state = 5}, - [104] = {.lex_state = 39, .external_lex_state = 5}, - [105] = {.lex_state = 39, .external_lex_state = 5}, - [106] = {.lex_state = 39, .external_lex_state = 5}, - [107] = {.lex_state = 39, .external_lex_state = 5}, - [108] = {.lex_state = 39, .external_lex_state = 5}, - [109] = {.lex_state = 39, .external_lex_state = 5}, - [110] = {.lex_state = 39, .external_lex_state = 5}, - [111] = {.lex_state = 39, .external_lex_state = 5}, - [112] = {.lex_state = 39, .external_lex_state = 5}, - [113] = {.lex_state = 39, .external_lex_state = 5}, - [114] = {.lex_state = 39, .external_lex_state = 5}, - [115] = {.lex_state = 39, .external_lex_state = 5}, - [116] = {.lex_state = 39, .external_lex_state = 5}, - [117] = {.lex_state = 39, .external_lex_state = 5}, - [118] = {.lex_state = 39, .external_lex_state = 5}, - [119] = {.lex_state = 39, .external_lex_state = 5}, - [120] = {.lex_state = 39, .external_lex_state = 5}, - [121] = {.lex_state = 39, .external_lex_state = 5}, - [122] = {.lex_state = 39, .external_lex_state = 5}, - [123] = {.lex_state = 39, .external_lex_state = 5}, - [124] = {.lex_state = 39, .external_lex_state = 5}, - [125] = {.lex_state = 39, .external_lex_state = 5}, - [126] = {.lex_state = 39, .external_lex_state = 6}, - [127] = {.lex_state = 39, .external_lex_state = 6}, - [128] = {.lex_state = 39, .external_lex_state = 5}, - [129] = {.lex_state = 39, .external_lex_state = 6}, - [130] = {.lex_state = 39, .external_lex_state = 6}, - [131] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [20] = {.lex_state = 39, .external_lex_state = 5}, + [21] = {.lex_state = 39, .external_lex_state = 5}, + [22] = {.lex_state = 39, .external_lex_state = 5}, + [23] = {.lex_state = 39, .external_lex_state = 5}, + [24] = {.lex_state = 39, .external_lex_state = 5}, + [25] = {.lex_state = 39, .external_lex_state = 5}, + [26] = {.lex_state = 39, .external_lex_state = 5}, + [27] = {.lex_state = 39, .external_lex_state = 5}, + [28] = {.lex_state = 39, .external_lex_state = 5}, + [29] = {.lex_state = 39, .external_lex_state = 5}, + [30] = {.lex_state = 39, .external_lex_state = 5}, + [31] = {.lex_state = 39, .external_lex_state = 5}, + [32] = {.lex_state = 39, .external_lex_state = 5}, + [33] = {.lex_state = 39, .external_lex_state = 5}, + [34] = {.lex_state = 39, .external_lex_state = 5}, + [35] = {.lex_state = 39, .external_lex_state = 5}, + [36] = {.lex_state = 39, .external_lex_state = 5}, + [37] = {.lex_state = 39, .external_lex_state = 5}, + [38] = {.lex_state = 39, .external_lex_state = 5}, + [39] = {.lex_state = 39, .external_lex_state = 5}, + [40] = {.lex_state = 39, .external_lex_state = 5}, + [41] = {.lex_state = 39, .external_lex_state = 5}, + [42] = {.lex_state = 39, .external_lex_state = 5}, + [43] = {.lex_state = 39, .external_lex_state = 5}, + [44] = {.lex_state = 39, .external_lex_state = 5}, + [45] = {.lex_state = 39, .external_lex_state = 5}, + [46] = {.lex_state = 39, .external_lex_state = 5}, + [47] = {.lex_state = 39, .external_lex_state = 5}, + [48] = {.lex_state = 39, .external_lex_state = 5}, + [49] = {.lex_state = 39, .external_lex_state = 5}, + [50] = {.lex_state = 39, .external_lex_state = 5}, + [51] = {.lex_state = 39, .external_lex_state = 5}, + [52] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [57] = {.lex_state = 39, .external_lex_state = 5}, + [58] = {.lex_state = 39, .external_lex_state = 5}, + [59] = {.lex_state = 39, .external_lex_state = 5}, + [60] = {.lex_state = 39, .external_lex_state = 5}, + [61] = {.lex_state = 39, .external_lex_state = 5}, + [62] = {.lex_state = 39, .external_lex_state = 5}, + [63] = {.lex_state = 39, .external_lex_state = 5}, + [64] = {.lex_state = 39, .external_lex_state = 5}, + [65] = {.lex_state = 39, .external_lex_state = 5}, + [66] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [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}, + [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}, + [81] = {.lex_state = 39, .external_lex_state = 5}, + [82] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [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}, + [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}, + [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}, + [131] = {.lex_state = 39, .external_lex_state = 3}, [132] = {.lex_state = 39, .external_lex_state = 5}, - [133] = {.lex_state = 39, .external_lex_state = 5}, - [134] = {.lex_state = 39, .external_lex_state = 5}, - [135] = {.lex_state = 39, .external_lex_state = 5}, + [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}, - [137] = {.lex_state = 39, .external_lex_state = 5}, - [138] = {.lex_state = 39, .external_lex_state = 6}, - [139] = {.lex_state = 39, .external_lex_state = 5}, - [140] = {.lex_state = 39, .external_lex_state = 5}, - [141] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 5}, - [144] = {.lex_state = 39, .external_lex_state = 5}, - [145] = {.lex_state = 39, .external_lex_state = 5}, + [143] = {.lex_state = 39, .external_lex_state = 2}, + [144] = {.lex_state = 39, .external_lex_state = 6}, + [145] = {.lex_state = 39, .external_lex_state = 6}, [146] = {.lex_state = 39, .external_lex_state = 6}, - [147] = {.lex_state = 39, .external_lex_state = 5}, + [147] = {.lex_state = 39, .external_lex_state = 6}, [148] = {.lex_state = 39, .external_lex_state = 6}, [149] = {.lex_state = 39, .external_lex_state = 6}, [150] = {.lex_state = 39, .external_lex_state = 5}, - [151] = {.lex_state = 39, .external_lex_state = 5}, + [151] = {.lex_state = 39, .external_lex_state = 6}, [152] = {.lex_state = 39, .external_lex_state = 6}, - [153] = {.lex_state = 39, .external_lex_state = 5}, - [154] = {.lex_state = 39, .external_lex_state = 2}, - [155] = {.lex_state = 39, .external_lex_state = 3}, + [153] = {.lex_state = 39, .external_lex_state = 6}, + [154] = {.lex_state = 39, .external_lex_state = 6}, + [155] = {.lex_state = 39, .external_lex_state = 6}, [156] = {.lex_state = 39, .external_lex_state = 6}, [157] = {.lex_state = 39, .external_lex_state = 6}, [158] = {.lex_state = 39, .external_lex_state = 6}, - [159] = {.lex_state = 39, .external_lex_state = 7}, - [160] = {.lex_state = 39, .external_lex_state = 7}, - [161] = {.lex_state = 39, .external_lex_state = 6}, - [162] = {.lex_state = 39, .external_lex_state = 7}, + [159] = {.lex_state = 39, .external_lex_state = 6}, + [160] = {.lex_state = 39, .external_lex_state = 6}, + [161] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 6}, - [169] = {.lex_state = 39, .external_lex_state = 7}, + [168] = {.lex_state = 39, .external_lex_state = 7}, + [169] = {.lex_state = 39, .external_lex_state = 6}, [170] = {.lex_state = 39, .external_lex_state = 6}, [171] = {.lex_state = 39, .external_lex_state = 6}, [172] = {.lex_state = 39, .external_lex_state = 6}, [173] = {.lex_state = 39, .external_lex_state = 6}, [174] = {.lex_state = 39, .external_lex_state = 6}, [175] = {.lex_state = 39, .external_lex_state = 6}, - [176] = {.lex_state = 39, .external_lex_state = 7}, - [177] = {.lex_state = 39, .external_lex_state = 3}, - [178] = {.lex_state = 39, .external_lex_state = 2}, - [179] = {.lex_state = 39, .external_lex_state = 7}, + [176] = {.lex_state = 39, .external_lex_state = 6}, + [177] = {.lex_state = 39, .external_lex_state = 6}, + [178] = {.lex_state = 39, .external_lex_state = 6}, + [179] = {.lex_state = 39, .external_lex_state = 6}, [180] = {.lex_state = 39, .external_lex_state = 6}, [181] = {.lex_state = 39, .external_lex_state = 6}, [182] = {.lex_state = 39, .external_lex_state = 6}, - [183] = {.lex_state = 39, .external_lex_state = 6}, - [184] = {.lex_state = 39, .external_lex_state = 2}, + [183] = {.lex_state = 39, .external_lex_state = 2}, + [184] = {.lex_state = 39, .external_lex_state = 6}, [185] = {.lex_state = 39, .external_lex_state = 6}, [186] = {.lex_state = 39, .external_lex_state = 7}, [187] = {.lex_state = 39, .external_lex_state = 6}, - [188] = {.lex_state = 39, .external_lex_state = 7}, + [188] = {.lex_state = 39, .external_lex_state = 6}, [189] = {.lex_state = 39, .external_lex_state = 6}, - [190] = {.lex_state = 39, .external_lex_state = 2}, + [190] = {.lex_state = 39, .external_lex_state = 6}, [191] = {.lex_state = 39, .external_lex_state = 6}, [192] = {.lex_state = 39, .external_lex_state = 6}, - [193] = {.lex_state = 39, .external_lex_state = 7}, + [193] = {.lex_state = 39, .external_lex_state = 6}, [194] = {.lex_state = 39, .external_lex_state = 6}, [195] = {.lex_state = 39, .external_lex_state = 6}, - [196] = {.lex_state = 39, .external_lex_state = 3}, + [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 = 20, .external_lex_state = 2}, - [200] = {.lex_state = 20, .external_lex_state = 2}, - [201] = {.lex_state = 39, .external_lex_state = 7}, - [202] = {.lex_state = 20, .external_lex_state = 2}, - [203] = {.lex_state = 20, .external_lex_state = 2}, - [204] = {.lex_state = 39, .external_lex_state = 2}, - [205] = {.lex_state = 20, .external_lex_state = 2}, - [206] = {.lex_state = 39, .external_lex_state = 7}, - [207] = {.lex_state = 20, .external_lex_state = 2}, - [208] = {.lex_state = 39, .external_lex_state = 7}, - [209] = {.lex_state = 39, .external_lex_state = 2}, - [210] = {.lex_state = 20, .external_lex_state = 2}, - [211] = {.lex_state = 20, .external_lex_state = 2}, - [212] = {.lex_state = 20, .external_lex_state = 2}, - [213] = {.lex_state = 20, .external_lex_state = 2}, - [214] = {.lex_state = 20, .external_lex_state = 2}, - [215] = {.lex_state = 20, .external_lex_state = 2}, - [216] = {.lex_state = 20, .external_lex_state = 2}, - [217] = {.lex_state = 20, .external_lex_state = 2}, - [218] = {.lex_state = 20, .external_lex_state = 2}, - [219] = {.lex_state = 20, .external_lex_state = 2}, - [220] = {.lex_state = 39, .external_lex_state = 7}, - [221] = {.lex_state = 20, .external_lex_state = 2}, - [222] = {.lex_state = 39, .external_lex_state = 7}, - [223] = {.lex_state = 20, .external_lex_state = 2}, + [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}, + [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 = 2}, - [226] = {.lex_state = 39, .external_lex_state = 7}, - [227] = {.lex_state = 39, .external_lex_state = 2}, - [228] = {.lex_state = 20, .external_lex_state = 2}, + [225] = {.lex_state = 39, .external_lex_state = 6}, + [226] = {.lex_state = 39, .external_lex_state = 2}, + [227] = {.lex_state = 3, .external_lex_state = 7}, + [228] = {.lex_state = 39, .external_lex_state = 8}, [229] = {.lex_state = 39, .external_lex_state = 7}, - [230] = {.lex_state = 20, .external_lex_state = 2}, - [231] = {.lex_state = 39, .external_lex_state = 7}, - [232] = {.lex_state = 39, .external_lex_state = 7}, - [233] = {.lex_state = 20, .external_lex_state = 2}, - [234] = {.lex_state = 20, .external_lex_state = 2}, - [235] = {.lex_state = 20, .external_lex_state = 2}, - [236] = {.lex_state = 39, .external_lex_state = 7}, - [237] = {.lex_state = 39, .external_lex_state = 2}, - [238] = {.lex_state = 20, .external_lex_state = 2}, - [239] = {.lex_state = 20, .external_lex_state = 2}, - [240] = {.lex_state = 20, .external_lex_state = 2}, - [241] = {.lex_state = 39, .external_lex_state = 2}, - [242] = {.lex_state = 20, .external_lex_state = 2}, - [243] = {.lex_state = 20, .external_lex_state = 2}, - [244] = {.lex_state = 20, .external_lex_state = 2}, - [245] = {.lex_state = 20, .external_lex_state = 2}, - [246] = {.lex_state = 20, .external_lex_state = 2}, - [247] = {.lex_state = 20, .external_lex_state = 2}, - [248] = {.lex_state = 20, .external_lex_state = 2}, - [249] = {.lex_state = 20, .external_lex_state = 2}, - [250] = {.lex_state = 39, .external_lex_state = 6}, - [251] = {.lex_state = 20, .external_lex_state = 2}, - [252] = {.lex_state = 20, .external_lex_state = 2}, + [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}, + [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 = 20, .external_lex_state = 2}, + [254] = {.lex_state = 39, .external_lex_state = 7}, [255] = {.lex_state = 39, .external_lex_state = 7}, - [256] = {.lex_state = 20, .external_lex_state = 2}, - [257] = {.lex_state = 20, .external_lex_state = 2}, - [258] = {.lex_state = 20, .external_lex_state = 2}, - [259] = {.lex_state = 20, .external_lex_state = 2}, - [260] = {.lex_state = 20, .external_lex_state = 2}, - [261] = {.lex_state = 20, .external_lex_state = 2}, - [262] = {.lex_state = 20, .external_lex_state = 2}, - [263] = {.lex_state = 20, .external_lex_state = 2}, - [264] = {.lex_state = 20, .external_lex_state = 2}, - [265] = {.lex_state = 39, .external_lex_state = 2}, - [266] = {.lex_state = 20, .external_lex_state = 2}, - [267] = {.lex_state = 20, .external_lex_state = 2}, - [268] = {.lex_state = 39, .external_lex_state = 2}, - [269] = {.lex_state = 20, .external_lex_state = 2}, - [270] = {.lex_state = 39, .external_lex_state = 2}, - [271] = {.lex_state = 39, .external_lex_state = 6}, - [272] = {.lex_state = 20, .external_lex_state = 2}, - [273] = {.lex_state = 20, .external_lex_state = 2}, - [274] = {.lex_state = 20, .external_lex_state = 2}, - [275] = {.lex_state = 20, .external_lex_state = 2}, - [276] = {.lex_state = 20, .external_lex_state = 2}, - [277] = {.lex_state = 20, .external_lex_state = 2}, - [278] = {.lex_state = 20, .external_lex_state = 2}, - [279] = {.lex_state = 20, .external_lex_state = 2}, - [280] = {.lex_state = 39, .external_lex_state = 2}, - [281] = {.lex_state = 20, .external_lex_state = 2}, - [282] = {.lex_state = 20, .external_lex_state = 2}, - [283] = {.lex_state = 20, .external_lex_state = 2}, - [284] = {.lex_state = 20, .external_lex_state = 2}, + [256] = {.lex_state = 39, .external_lex_state = 7}, + [257] = {.lex_state = 39, .external_lex_state = 7}, + [258] = {.lex_state = 39, .external_lex_state = 7}, + [259] = {.lex_state = 39, .external_lex_state = 7}, + [260] = {.lex_state = 39, .external_lex_state = 7}, + [261] = {.lex_state = 39, .external_lex_state = 7}, + [262] = {.lex_state = 39, .external_lex_state = 7}, + [263] = {.lex_state = 39, .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}, + [269] = {.lex_state = 39, .external_lex_state = 7}, + [270] = {.lex_state = 39, .external_lex_state = 7}, + [271] = {.lex_state = 39, .external_lex_state = 7}, + [272] = {.lex_state = 39, .external_lex_state = 7}, + [273] = {.lex_state = 39, .external_lex_state = 7}, + [274] = {.lex_state = 39, .external_lex_state = 7}, + [275] = {.lex_state = 39, .external_lex_state = 7}, + [276] = {.lex_state = 39, .external_lex_state = 7}, + [277] = {.lex_state = 39, .external_lex_state = 7}, + [278] = {.lex_state = 39, .external_lex_state = 7}, + [279] = {.lex_state = 39, .external_lex_state = 7}, + [280] = {.lex_state = 39, .external_lex_state = 7}, + [281] = {.lex_state = 39, .external_lex_state = 7}, + [282] = {.lex_state = 39, .external_lex_state = 7}, + [283] = {.lex_state = 39, .external_lex_state = 7}, + [284] = {.lex_state = 39, .external_lex_state = 7}, [285] = {.lex_state = 39, .external_lex_state = 7}, - [286] = {.lex_state = 20, .external_lex_state = 2}, - [287] = {.lex_state = 20, .external_lex_state = 2}, - [288] = {.lex_state = 20, .external_lex_state = 2}, - [289] = {.lex_state = 20, .external_lex_state = 2}, - [290] = {.lex_state = 20, .external_lex_state = 2}, - [291] = {.lex_state = 20, .external_lex_state = 2}, - [292] = {.lex_state = 20, .external_lex_state = 2}, - [293] = {.lex_state = 20, .external_lex_state = 2}, - [294] = {.lex_state = 39, .external_lex_state = 6}, + [286] = {.lex_state = 39, .external_lex_state = 7}, + [287] = {.lex_state = 39, .external_lex_state = 7}, + [288] = {.lex_state = 39, .external_lex_state = 7}, + [289] = {.lex_state = 39, .external_lex_state = 7}, + [290] = {.lex_state = 39, .external_lex_state = 7}, + [291] = {.lex_state = 39, .external_lex_state = 7}, + [292] = {.lex_state = 39, .external_lex_state = 7}, + [293] = {.lex_state = 39, .external_lex_state = 7}, + [294] = {.lex_state = 39, .external_lex_state = 7}, [295] = {.lex_state = 39, .external_lex_state = 7}, - [296] = {.lex_state = 20, .external_lex_state = 2}, - [297] = {.lex_state = 20, .external_lex_state = 2}, - [298] = {.lex_state = 20, .external_lex_state = 2}, + [296] = {.lex_state = 39, .external_lex_state = 7}, + [297] = {.lex_state = 39, .external_lex_state = 7}, + [298] = {.lex_state = 39, .external_lex_state = 7}, [299] = {.lex_state = 39, .external_lex_state = 7}, - [300] = {.lex_state = 20, .external_lex_state = 2}, - [301] = {.lex_state = 20, .external_lex_state = 2}, + [300] = {.lex_state = 39, .external_lex_state = 7}, + [301] = {.lex_state = 39, .external_lex_state = 7}, [302] = {.lex_state = 39, .external_lex_state = 7}, - [303] = {.lex_state = 20, .external_lex_state = 2}, - [304] = {.lex_state = 39, .external_lex_state = 2}, - [305] = {.lex_state = 20, .external_lex_state = 2}, - [306] = {.lex_state = 20, .external_lex_state = 2}, - [307] = {.lex_state = 20, .external_lex_state = 2}, - [308] = {.lex_state = 20, .external_lex_state = 2}, - [309] = {.lex_state = 20, .external_lex_state = 2}, - [310] = {.lex_state = 20, .external_lex_state = 2}, - [311] = {.lex_state = 20, .external_lex_state = 2}, - [312] = {.lex_state = 20, .external_lex_state = 2}, - [313] = {.lex_state = 20, .external_lex_state = 2}, - [314] = {.lex_state = 20, .external_lex_state = 2}, - [315] = {.lex_state = 20, .external_lex_state = 2}, - [316] = {.lex_state = 20, .external_lex_state = 2}, - [317] = {.lex_state = 20, .external_lex_state = 2}, - [318] = {.lex_state = 20, .external_lex_state = 2}, - [319] = {.lex_state = 39, .external_lex_state = 7}, - [320] = {.lex_state = 39, .external_lex_state = 2}, - [321] = {.lex_state = 39, .external_lex_state = 2}, - [322] = {.lex_state = 39, .external_lex_state = 2}, - [323] = {.lex_state = 39, .external_lex_state = 2}, - [324] = {.lex_state = 39, .external_lex_state = 2}, - [325] = {.lex_state = 39, .external_lex_state = 2}, - [326] = {.lex_state = 39, .external_lex_state = 3}, - [327] = {.lex_state = 39, .external_lex_state = 3}, - [328] = {.lex_state = 39, .external_lex_state = 3}, - [329] = {.lex_state = 39, .external_lex_state = 2}, - [330] = {.lex_state = 39, .external_lex_state = 2}, - [331] = {.lex_state = 39, .external_lex_state = 2}, - [332] = {.lex_state = 39, .external_lex_state = 2}, - [333] = {.lex_state = 39, .external_lex_state = 2}, - [334] = {.lex_state = 39, .external_lex_state = 2}, - [335] = {.lex_state = 39, .external_lex_state = 2}, - [336] = {.lex_state = 39, .external_lex_state = 2}, - [337] = {.lex_state = 39, .external_lex_state = 2}, - [338] = {.lex_state = 39, .external_lex_state = 2}, - [339] = {.lex_state = 39, .external_lex_state = 3}, - [340] = {.lex_state = 39, .external_lex_state = 3}, - [341] = {.lex_state = 39, .external_lex_state = 2}, - [342] = {.lex_state = 39, .external_lex_state = 2}, - [343] = {.lex_state = 39, .external_lex_state = 2}, - [344] = {.lex_state = 39, .external_lex_state = 2}, - [345] = {.lex_state = 39, .external_lex_state = 2}, - [346] = {.lex_state = 39, .external_lex_state = 2}, - [347] = {.lex_state = 39, .external_lex_state = 2}, - [348] = {.lex_state = 39, .external_lex_state = 2}, - [349] = {.lex_state = 39, .external_lex_state = 3}, - [350] = {.lex_state = 39, .external_lex_state = 3}, - [351] = {.lex_state = 39, .external_lex_state = 2}, - [352] = {.lex_state = 39, .external_lex_state = 2}, - [353] = {.lex_state = 39, .external_lex_state = 2}, - [354] = {.lex_state = 39, .external_lex_state = 2}, - [355] = {.lex_state = 39, .external_lex_state = 2}, - [356] = {.lex_state = 39, .external_lex_state = 2}, - [357] = {.lex_state = 39, .external_lex_state = 2}, - [358] = {.lex_state = 39, .external_lex_state = 3}, - [359] = {.lex_state = 39, .external_lex_state = 3}, - [360] = {.lex_state = 39, .external_lex_state = 3}, - [361] = {.lex_state = 39, .external_lex_state = 3}, - [362] = {.lex_state = 39, .external_lex_state = 2}, - [363] = {.lex_state = 39, .external_lex_state = 2}, - [364] = {.lex_state = 39, .external_lex_state = 2}, - [365] = {.lex_state = 39, .external_lex_state = 2}, - [366] = {.lex_state = 39, .external_lex_state = 3}, - [367] = {.lex_state = 39, .external_lex_state = 3}, + [303] = {.lex_state = 39, .external_lex_state = 7}, + [304] = {.lex_state = 39, .external_lex_state = 7}, + [305] = {.lex_state = 39, .external_lex_state = 7}, + [306] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [311] = {.lex_state = 39, .external_lex_state = 7}, + [312] = {.lex_state = 39, .external_lex_state = 3}, + [313] = {.lex_state = 39, .external_lex_state = 7}, + [314] = {.lex_state = 39, .external_lex_state = 7}, + [315] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [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}, + [325] = {.lex_state = 39, .external_lex_state = 7}, + [326] = {.lex_state = 39, .external_lex_state = 7}, + [327] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [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}, + [339] = {.lex_state = 39, .external_lex_state = 7}, + [340] = {.lex_state = 39, .external_lex_state = 7}, + [341] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [347] = {.lex_state = 39, .external_lex_state = 7}, + [348] = {.lex_state = 39, .external_lex_state = 8}, + [349] = {.lex_state = 39, .external_lex_state = 7}, + [350] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [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}, + [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}, + [365] = {.lex_state = 39, .external_lex_state = 8}, + [366] = {.lex_state = 39, .external_lex_state = 8}, + [367] = {.lex_state = 39, .external_lex_state = 7}, [368] = {.lex_state = 39, .external_lex_state = 3}, - [369] = {.lex_state = 39, .external_lex_state = 3}, - [370] = {.lex_state = 39, .external_lex_state = 3}, - [371] = {.lex_state = 39, .external_lex_state = 3}, - [372] = {.lex_state = 39, .external_lex_state = 3}, - [373] = {.lex_state = 39, .external_lex_state = 2}, - [374] = {.lex_state = 39, .external_lex_state = 2}, - [375] = {.lex_state = 39, .external_lex_state = 2}, - [376] = {.lex_state = 39, .external_lex_state = 2}, - [377] = {.lex_state = 39, .external_lex_state = 2}, - [378] = {.lex_state = 39, .external_lex_state = 2}, - [379] = {.lex_state = 39, .external_lex_state = 3}, - [380] = {.lex_state = 39, .external_lex_state = 2}, - [381] = {.lex_state = 39, .external_lex_state = 2}, - [382] = {.lex_state = 39, .external_lex_state = 3}, - [383] = {.lex_state = 39, .external_lex_state = 2}, - [384] = {.lex_state = 39, .external_lex_state = 2}, - [385] = {.lex_state = 39, .external_lex_state = 2}, - [386] = {.lex_state = 39, .external_lex_state = 2}, - [387] = {.lex_state = 39, .external_lex_state = 2}, - [388] = {.lex_state = 39, .external_lex_state = 2}, - [389] = {.lex_state = 39, .external_lex_state = 2}, - [390] = {.lex_state = 39, .external_lex_state = 2}, - [391] = {.lex_state = 39, .external_lex_state = 2}, - [392] = {.lex_state = 39, .external_lex_state = 2}, - [393] = {.lex_state = 39, .external_lex_state = 2}, - [394] = {.lex_state = 39, .external_lex_state = 2}, - [395] = {.lex_state = 39, .external_lex_state = 2}, - [396] = {.lex_state = 39, .external_lex_state = 2}, - [397] = {.lex_state = 39, .external_lex_state = 2}, - [398] = {.lex_state = 39, .external_lex_state = 2}, - [399] = {.lex_state = 39, .external_lex_state = 2}, - [400] = {.lex_state = 39, .external_lex_state = 2}, - [401] = {.lex_state = 39, .external_lex_state = 2}, - [402] = {.lex_state = 39, .external_lex_state = 2}, - [403] = {.lex_state = 39, .external_lex_state = 2}, - [404] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [390] = {.lex_state = 39, .external_lex_state = 8}, + [391] = {.lex_state = 39, .external_lex_state = 8}, + [392] = {.lex_state = 39, .external_lex_state = 8}, + [393] = {.lex_state = 39, .external_lex_state = 8}, + [394] = {.lex_state = 39, .external_lex_state = 9}, + [395] = {.lex_state = 39, .external_lex_state = 8}, + [396] = {.lex_state = 39, .external_lex_state = 8}, + [397] = {.lex_state = 39, .external_lex_state = 9}, + [398] = {.lex_state = 39, .external_lex_state = 8}, + [399] = {.lex_state = 39, .external_lex_state = 8}, + [400] = {.lex_state = 39, .external_lex_state = 8}, + [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}, - [406] = {.lex_state = 39, .external_lex_state = 2}, - [407] = {.lex_state = 39, .external_lex_state = 2}, - [408] = {.lex_state = 39, .external_lex_state = 2}, - [409] = {.lex_state = 39, .external_lex_state = 2}, - [410] = {.lex_state = 39, .external_lex_state = 2}, - [411] = {.lex_state = 39, .external_lex_state = 2}, - [412] = {.lex_state = 39, .external_lex_state = 2}, - [413] = {.lex_state = 39, .external_lex_state = 2}, - [414] = {.lex_state = 39, .external_lex_state = 2}, - [415] = {.lex_state = 39, .external_lex_state = 2}, - [416] = {.lex_state = 39, .external_lex_state = 2}, - [417] = {.lex_state = 39, .external_lex_state = 2}, - [418] = {.lex_state = 39, .external_lex_state = 2}, - [419] = {.lex_state = 39, .external_lex_state = 2}, - [420] = {.lex_state = 39, .external_lex_state = 2}, - [421] = {.lex_state = 39, .external_lex_state = 2}, + [406] = {.lex_state = 39, .external_lex_state = 8}, + [407] = {.lex_state = 39, .external_lex_state = 8}, + [408] = {.lex_state = 39, .external_lex_state = 8}, + [409] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [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}, + [421] = {.lex_state = 39, .external_lex_state = 8}, [422] = {.lex_state = 39, .external_lex_state = 2}, - [423] = {.lex_state = 39, .external_lex_state = 2}, - [424] = {.lex_state = 39, .external_lex_state = 3}, - [425] = {.lex_state = 39, .external_lex_state = 2}, - [426] = {.lex_state = 39, .external_lex_state = 2}, - [427] = {.lex_state = 39, .external_lex_state = 2}, - [428] = {.lex_state = 39, .external_lex_state = 2}, - [429] = {.lex_state = 39, .external_lex_state = 2}, - [430] = {.lex_state = 39, .external_lex_state = 3}, - [431] = {.lex_state = 39, .external_lex_state = 3}, - [432] = {.lex_state = 39, .external_lex_state = 2}, - [433] = {.lex_state = 39, .external_lex_state = 2}, - [434] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [429] = {.lex_state = 39, .external_lex_state = 8}, + [430] = {.lex_state = 39, .external_lex_state = 8}, + [431] = {.lex_state = 39, .external_lex_state = 8}, + [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}, - [436] = {.lex_state = 39, .external_lex_state = 3}, - [437] = {.lex_state = 39, .external_lex_state = 2}, - [438] = {.lex_state = 39, .external_lex_state = 2}, - [439] = {.lex_state = 39, .external_lex_state = 2}, - [440] = {.lex_state = 39, .external_lex_state = 2}, - [441] = {.lex_state = 39, .external_lex_state = 2}, - [442] = {.lex_state = 39, .external_lex_state = 3}, - [443] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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 = 2}, - [446] = {.lex_state = 39, .external_lex_state = 2}, - [447] = {.lex_state = 39, .external_lex_state = 3}, - [448] = {.lex_state = 39, .external_lex_state = 2}, - [449] = {.lex_state = 39, .external_lex_state = 2}, - [450] = {.lex_state = 39, .external_lex_state = 2}, - [451] = {.lex_state = 39, .external_lex_state = 2}, - [452] = {.lex_state = 39, .external_lex_state = 2}, - [453] = {.lex_state = 39, .external_lex_state = 2}, - [454] = {.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}, + [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}, + [454] = {.lex_state = 39, .external_lex_state = 9}, [455] = {.lex_state = 39, .external_lex_state = 2}, - [456] = {.lex_state = 39, .external_lex_state = 2}, - [457] = {.lex_state = 39, .external_lex_state = 2}, - [458] = {.lex_state = 39, .external_lex_state = 2}, - [459] = {.lex_state = 39, .external_lex_state = 2}, - [460] = {.lex_state = 39, .external_lex_state = 2}, - [461] = {.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 = 39, .external_lex_state = 2}, - [464] = {.lex_state = 39, .external_lex_state = 2}, - [465] = {.lex_state = 39, .external_lex_state = 2}, - [466] = {.lex_state = 39, .external_lex_state = 2}, - [467] = {.lex_state = 39, .external_lex_state = 2}, - [468] = {.lex_state = 39, .external_lex_state = 3}, - [469] = {.lex_state = 39, .external_lex_state = 2}, - [470] = {.lex_state = 39, .external_lex_state = 2}, - [471] = {.lex_state = 39, .external_lex_state = 2}, - [472] = {.lex_state = 39, .external_lex_state = 3}, - [473] = {.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}, + [473] = {.lex_state = 20, .external_lex_state = 2}, [474] = {.lex_state = 39, .external_lex_state = 2}, - [475] = {.lex_state = 39, .external_lex_state = 2}, - [476] = {.lex_state = 39, .external_lex_state = 2}, - [477] = {.lex_state = 39, .external_lex_state = 2}, - [478] = {.lex_state = 39, .external_lex_state = 2}, - [479] = {.lex_state = 39, .external_lex_state = 2}, - [480] = {.lex_state = 39, .external_lex_state = 2}, + [475] = {.lex_state = 20, .external_lex_state = 2}, + [476] = {.lex_state = 39, .external_lex_state = 9}, + [477] = {.lex_state = 20, .external_lex_state = 2}, + [478] = {.lex_state = 20, .external_lex_state = 2}, + [479] = {.lex_state = 39, .external_lex_state = 9}, + [480] = {.lex_state = 20, .external_lex_state = 2}, [481] = {.lex_state = 39, .external_lex_state = 2}, - [482] = {.lex_state = 39, .external_lex_state = 2}, - [483] = {.lex_state = 39, .external_lex_state = 2}, - [484] = {.lex_state = 39, .external_lex_state = 2}, - [485] = {.lex_state = 39, .external_lex_state = 2}, - [486] = {.lex_state = 39, .external_lex_state = 2}, - [487] = {.lex_state = 39, .external_lex_state = 3}, - [488] = {.lex_state = 39, .external_lex_state = 2}, + [482] = {.lex_state = 20, .external_lex_state = 2}, + [483] = {.lex_state = 20, .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}, + [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 = 39, .external_lex_state = 2}, - [491] = {.lex_state = 39, .external_lex_state = 2}, - [492] = {.lex_state = 39, .external_lex_state = 2}, - [493] = {.lex_state = 39, .external_lex_state = 2}, - [494] = {.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}, + [494] = {.lex_state = 20, .external_lex_state = 2}, [495] = {.lex_state = 39, .external_lex_state = 2}, - [496] = {.lex_state = 39, .external_lex_state = 2}, - [497] = {.lex_state = 39, .external_lex_state = 2}, - [498] = {.lex_state = 39, .external_lex_state = 3}, - [499] = {.lex_state = 39, .external_lex_state = 2}, - [500] = {.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 = 2}, - [503] = {.lex_state = 39, .external_lex_state = 2}, + [502] = {.lex_state = 39, .external_lex_state = 9}, + [503] = {.lex_state = 20, .external_lex_state = 2}, [504] = {.lex_state = 39, .external_lex_state = 2}, - [505] = {.lex_state = 39, .external_lex_state = 2}, - [506] = {.lex_state = 39, .external_lex_state = 2}, - [507] = {.lex_state = 39, .external_lex_state = 3}, - [508] = {.lex_state = 39, .external_lex_state = 2}, - [509] = {.lex_state = 39, .external_lex_state = 2}, - [510] = {.lex_state = 39, .external_lex_state = 2}, + [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}, - [512] = {.lex_state = 39, .external_lex_state = 2}, - [513] = {.lex_state = 39, .external_lex_state = 2}, - [514] = {.lex_state = 39, .external_lex_state = 2}, + [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}, - [516] = {.lex_state = 39, .external_lex_state = 2}, - [517] = {.lex_state = 39, .external_lex_state = 2}, - [518] = {.lex_state = 39, .external_lex_state = 2}, - [519] = {.lex_state = 39, .external_lex_state = 2}, - [520] = {.lex_state = 39, .external_lex_state = 2}, - [521] = {.lex_state = 39, .external_lex_state = 2}, - [522] = {.lex_state = 39, .external_lex_state = 3}, - [523] = {.lex_state = 39, .external_lex_state = 2}, - [524] = {.lex_state = 39, .external_lex_state = 2}, - [525] = {.lex_state = 39, .external_lex_state = 2}, - [526] = {.lex_state = 39, .external_lex_state = 2}, - [527] = {.lex_state = 39, .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}, + [520] = {.lex_state = 20, .external_lex_state = 2}, + [521] = {.lex_state = 20, .external_lex_state = 2}, + [522] = {.lex_state = 39, .external_lex_state = 9}, + [523] = {.lex_state = 20, .external_lex_state = 2}, + [524] = {.lex_state = 20, .external_lex_state = 2}, + [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}, - [529] = {.lex_state = 39, .external_lex_state = 2}, + [529] = {.lex_state = 20, .external_lex_state = 2}, [530] = {.lex_state = 39, .external_lex_state = 2}, - [531] = {.lex_state = 39, .external_lex_state = 2}, - [532] = {.lex_state = 39, .external_lex_state = 2}, - [533] = {.lex_state = 39, .external_lex_state = 2}, - [534] = {.lex_state = 39, .external_lex_state = 2}, - [535] = {.lex_state = 39, .external_lex_state = 2}, - [536] = {.lex_state = 39, .external_lex_state = 2}, - [537] = {.lex_state = 39, .external_lex_state = 2}, - [538] = {.lex_state = 39, .external_lex_state = 2}, - [539] = {.lex_state = 39, .external_lex_state = 2}, - [540] = {.lex_state = 39, .external_lex_state = 2}, - [541] = {.lex_state = 39, .external_lex_state = 3}, - [542] = {.lex_state = 39, .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}, + [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}, [543] = {.lex_state = 39, .external_lex_state = 2}, - [544] = {.lex_state = 39, .external_lex_state = 2}, - [545] = {.lex_state = 39, .external_lex_state = 3}, - [546] = {.lex_state = 39, .external_lex_state = 2}, - [547] = {.lex_state = 39, .external_lex_state = 2}, - [548] = {.lex_state = 39, .external_lex_state = 2}, - [549] = {.lex_state = 39, .external_lex_state = 3}, - [550] = {.lex_state = 39, .external_lex_state = 2}, - [551] = {.lex_state = 39, .external_lex_state = 2}, - [552] = {.lex_state = 39, .external_lex_state = 2}, - [553] = {.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}, + [549] = {.lex_state = 20, .external_lex_state = 2}, + [550] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 39, .external_lex_state = 2}, - [556] = {.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}, - [558] = {.lex_state = 39, .external_lex_state = 2}, - [559] = {.lex_state = 39, .external_lex_state = 2}, - [560] = {.lex_state = 39, .external_lex_state = 3}, - [561] = {.lex_state = 39, .external_lex_state = 2}, - [562] = {.lex_state = 39, .external_lex_state = 2}, - [563] = {.lex_state = 39, .external_lex_state = 2}, - [564] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [562] = {.lex_state = 20, .external_lex_state = 2}, + [563] = {.lex_state = 39, .external_lex_state = 9}, + [564] = {.lex_state = 20, .external_lex_state = 2}, [565] = {.lex_state = 39, .external_lex_state = 2}, - [566] = {.lex_state = 39, .external_lex_state = 2}, - [567] = {.lex_state = 39, .external_lex_state = 2}, - [568] = {.lex_state = 39, .external_lex_state = 2}, - [569] = {.lex_state = 39, .external_lex_state = 2}, - [570] = {.lex_state = 39, .external_lex_state = 2}, - [571] = {.lex_state = 39, .external_lex_state = 2}, - [572] = {.lex_state = 39, .external_lex_state = 2}, - [573] = {.lex_state = 39, .external_lex_state = 2}, - [574] = {.lex_state = 39, .external_lex_state = 2}, - [575] = {.lex_state = 39, .external_lex_state = 2}, - [576] = {.lex_state = 39, .external_lex_state = 2}, - [577] = {.lex_state = 39, .external_lex_state = 2}, - [578] = {.lex_state = 39, .external_lex_state = 2}, - [579] = {.lex_state = 39, .external_lex_state = 2}, - [580] = {.lex_state = 39, .external_lex_state = 2}, - [581] = {.lex_state = 39, .external_lex_state = 2}, - [582] = {.lex_state = 39, .external_lex_state = 2}, - [583] = {.lex_state = 39, .external_lex_state = 2}, - [584] = {.lex_state = 39, .external_lex_state = 2}, - [585] = {.lex_state = 39, .external_lex_state = 2}, - [586] = {.lex_state = 39, .external_lex_state = 2}, + [566] = {.lex_state = 20, .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}, + [572] = {.lex_state = 20, .external_lex_state = 2}, + [573] = {.lex_state = 20, .external_lex_state = 2}, + [574] = {.lex_state = 20, .external_lex_state = 2}, + [575] = {.lex_state = 20, .external_lex_state = 2}, + [576] = {.lex_state = 20, .external_lex_state = 2}, + [577] = {.lex_state = 20, .external_lex_state = 2}, + [578] = {.lex_state = 20, .external_lex_state = 2}, + [579] = {.lex_state = 39, .external_lex_state = 9}, + [580] = {.lex_state = 20, .external_lex_state = 2}, + [581] = {.lex_state = 20, .external_lex_state = 2}, + [582] = {.lex_state = 20, .external_lex_state = 2}, + [583] = {.lex_state = 39, .external_lex_state = 9}, + [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}, - [588] = {.lex_state = 39, .external_lex_state = 2}, - [589] = {.lex_state = 39, .external_lex_state = 2}, - [590] = {.lex_state = 39, .external_lex_state = 2}, - [591] = {.lex_state = 39, .external_lex_state = 2}, - [592] = {.lex_state = 39, .external_lex_state = 2}, - [593] = {.lex_state = 39, .external_lex_state = 2}, - [594] = {.lex_state = 39, .external_lex_state = 2}, - [595] = {.lex_state = 39, .external_lex_state = 2}, - [596] = {.lex_state = 39, .external_lex_state = 2}, - [597] = {.lex_state = 39, .external_lex_state = 2}, - [598] = {.lex_state = 39, .external_lex_state = 2}, - [599] = {.lex_state = 39, .external_lex_state = 2}, - [600] = {.lex_state = 39, .external_lex_state = 2}, - [601] = {.lex_state = 39, .external_lex_state = 2}, - [602] = {.lex_state = 39, .external_lex_state = 2}, - [603] = {.lex_state = 39, .external_lex_state = 2}, - [604] = {.lex_state = 39, .external_lex_state = 2}, - [605] = {.lex_state = 39, .external_lex_state = 3}, - [606] = {.lex_state = 39, .external_lex_state = 2}, - [607] = {.lex_state = 39, .external_lex_state = 2}, - [608] = {.lex_state = 39, .external_lex_state = 2}, - [609] = {.lex_state = 39, .external_lex_state = 2}, - [610] = {.lex_state = 39, .external_lex_state = 2}, - [611] = {.lex_state = 39, .external_lex_state = 2}, - [612] = {.lex_state = 39, .external_lex_state = 2}, - [613] = {.lex_state = 39, .external_lex_state = 2}, - [614] = {.lex_state = 39, .external_lex_state = 2}, - [615] = {.lex_state = 39, .external_lex_state = 3}, - [616] = {.lex_state = 39, .external_lex_state = 2}, - [617] = {.lex_state = 39, .external_lex_state = 2}, + [588] = {.lex_state = 20, .external_lex_state = 2}, + [589] = {.lex_state = 20, .external_lex_state = 2}, + [590] = {.lex_state = 20, .external_lex_state = 2}, + [591] = {.lex_state = 20, .external_lex_state = 2}, + [592] = {.lex_state = 20, .external_lex_state = 2}, + [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}, + [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}, + [602] = {.lex_state = 20, .external_lex_state = 2}, + [603] = {.lex_state = 20, .external_lex_state = 2}, + [604] = {.lex_state = 20, .external_lex_state = 2}, + [605] = {.lex_state = 20, .external_lex_state = 2}, + [606] = {.lex_state = 20, .external_lex_state = 2}, + [607] = {.lex_state = 20, .external_lex_state = 2}, + [608] = {.lex_state = 20, .external_lex_state = 2}, + [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}, + [617] = {.lex_state = 20, .external_lex_state = 2}, [618] = {.lex_state = 39, .external_lex_state = 2}, - [619] = {.lex_state = 39, .external_lex_state = 2}, - [620] = {.lex_state = 39, .external_lex_state = 2}, - [621] = {.lex_state = 39, .external_lex_state = 2}, - [622] = {.lex_state = 39, .external_lex_state = 2}, - [623] = {.lex_state = 39, .external_lex_state = 2}, - [624] = {.lex_state = 39, .external_lex_state = 2}, - [625] = {.lex_state = 39, .external_lex_state = 2}, - [626] = {.lex_state = 39, .external_lex_state = 2}, - [627] = {.lex_state = 39, .external_lex_state = 2}, - [628] = {.lex_state = 39, .external_lex_state = 2}, - [629] = {.lex_state = 39, .external_lex_state = 2}, - [630] = {.lex_state = 39, .external_lex_state = 3}, - [631] = {.lex_state = 39, .external_lex_state = 2}, - [632] = {.lex_state = 39, .external_lex_state = 2}, - [633] = {.lex_state = 39, .external_lex_state = 2}, - [634] = {.lex_state = 39, .external_lex_state = 2}, - [635] = {.lex_state = 39, .external_lex_state = 3}, - [636] = {.lex_state = 39, .external_lex_state = 2}, - [637] = {.lex_state = 39, .external_lex_state = 2}, - [638] = {.lex_state = 39, .external_lex_state = 2}, - [639] = {.lex_state = 39, .external_lex_state = 2}, - [640] = {.lex_state = 39, .external_lex_state = 2}, - [641] = {.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}, + [624] = {.lex_state = 39, .external_lex_state = 9}, + [625] = {.lex_state = 20, .external_lex_state = 2}, + [626] = {.lex_state = 39, .external_lex_state = 9}, + [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}, + [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}, + [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 = 39, .external_lex_state = 2}, - [644] = {.lex_state = 39, .external_lex_state = 2}, - [645] = {.lex_state = 39, .external_lex_state = 2}, - [646] = {.lex_state = 39, .external_lex_state = 2}, + [643] = {.lex_state = 20, .external_lex_state = 2}, + [644] = {.lex_state = 20, .external_lex_state = 2}, + [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 = 39, .external_lex_state = 2}, - [649] = {.lex_state = 39, .external_lex_state = 2}, - [650] = {.lex_state = 39, .external_lex_state = 2}, - [651] = {.lex_state = 39, .external_lex_state = 2}, - [652] = {.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}, + [651] = {.lex_state = 20, .external_lex_state = 2}, + [652] = {.lex_state = 20, .external_lex_state = 2}, [653] = {.lex_state = 39, .external_lex_state = 2}, - [654] = {.lex_state = 39, .external_lex_state = 2}, - [655] = {.lex_state = 39, .external_lex_state = 2}, - [656] = {.lex_state = 39, .external_lex_state = 2}, - [657] = {.lex_state = 39, .external_lex_state = 2}, - [658] = {.lex_state = 39, .external_lex_state = 2}, - [659] = {.lex_state = 39, .external_lex_state = 2}, - [660] = {.lex_state = 39, .external_lex_state = 2}, - [661] = {.lex_state = 39, .external_lex_state = 2}, - [662] = {.lex_state = 39, .external_lex_state = 2}, - [663] = {.lex_state = 39, .external_lex_state = 2}, - [664] = {.lex_state = 39, .external_lex_state = 2}, - [665] = {.lex_state = 39, .external_lex_state = 2}, - [666] = {.lex_state = 39, .external_lex_state = 2}, - [667] = {.lex_state = 39, .external_lex_state = 2}, - [668] = {.lex_state = 39, .external_lex_state = 2}, - [669] = {.lex_state = 39, .external_lex_state = 2}, - [670] = {.lex_state = 39, .external_lex_state = 2}, - [671] = {.lex_state = 39, .external_lex_state = 2}, - [672] = {.lex_state = 39, .external_lex_state = 2}, - [673] = {.lex_state = 39, .external_lex_state = 2}, - [674] = {.lex_state = 39, .external_lex_state = 2}, - [675] = {.lex_state = 39, .external_lex_state = 2}, - [676] = {.lex_state = 39, .external_lex_state = 2}, - [677] = {.lex_state = 39, .external_lex_state = 2}, - [678] = {.lex_state = 39, .external_lex_state = 2}, - [679] = {.lex_state = 39, .external_lex_state = 2}, - [680] = {.lex_state = 39, .external_lex_state = 2}, - [681] = {.lex_state = 39, .external_lex_state = 2}, - [682] = {.lex_state = 39, .external_lex_state = 2}, - [683] = {.lex_state = 39, .external_lex_state = 2}, - [684] = {.lex_state = 39, .external_lex_state = 2}, - [685] = {.lex_state = 39, .external_lex_state = 2}, - [686] = {.lex_state = 39, .external_lex_state = 2}, - [687] = {.lex_state = 39, .external_lex_state = 2}, - [688] = {.lex_state = 39, .external_lex_state = 2}, - [689] = {.lex_state = 39, .external_lex_state = 2}, - [690] = {.lex_state = 39, .external_lex_state = 2}, - [691] = {.lex_state = 39, .external_lex_state = 2}, - [692] = {.lex_state = 39, .external_lex_state = 2}, - [693] = {.lex_state = 39, .external_lex_state = 2}, - [694] = {.lex_state = 39, .external_lex_state = 2}, - [695] = {.lex_state = 39, .external_lex_state = 2}, - [696] = {.lex_state = 39, .external_lex_state = 2}, - [697] = {.lex_state = 39, .external_lex_state = 2}, - [698] = {.lex_state = 39, .external_lex_state = 2}, - [699] = {.lex_state = 39, .external_lex_state = 2}, - [700] = {.lex_state = 39, .external_lex_state = 2}, - [701] = {.lex_state = 39, .external_lex_state = 2}, - [702] = {.lex_state = 39, .external_lex_state = 2}, - [703] = {.lex_state = 39, .external_lex_state = 2}, - [704] = {.lex_state = 39, .external_lex_state = 2}, - [705] = {.lex_state = 39, .external_lex_state = 2}, - [706] = {.lex_state = 39, .external_lex_state = 2}, - [707] = {.lex_state = 39, .external_lex_state = 2}, - [708] = {.lex_state = 39, .external_lex_state = 2}, - [709] = {.lex_state = 39, .external_lex_state = 2}, - [710] = {.lex_state = 39, .external_lex_state = 2}, - [711] = {.lex_state = 39, .external_lex_state = 2}, - [712] = {.lex_state = 39, .external_lex_state = 2}, - [713] = {.lex_state = 39, .external_lex_state = 2}, - [714] = {.lex_state = 39, .external_lex_state = 2}, - [715] = {.lex_state = 39, .external_lex_state = 2}, - [716] = {.lex_state = 39, .external_lex_state = 2}, + [654] = {.lex_state = 20, .external_lex_state = 2}, + [655] = {.lex_state = 20, .external_lex_state = 2}, + [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}, + [661] = {.lex_state = 20, .external_lex_state = 2}, + [662] = {.lex_state = 20, .external_lex_state = 2}, + [663] = {.lex_state = 20, .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}, + [667] = {.lex_state = 20, .external_lex_state = 2}, + [668] = {.lex_state = 20, .external_lex_state = 2}, + [669] = {.lex_state = 39, .external_lex_state = 9}, + [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}, + [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}, + [680] = {.lex_state = 20, .external_lex_state = 2}, + [681] = {.lex_state = 20, .external_lex_state = 2}, + [682] = {.lex_state = 20, .external_lex_state = 2}, + [683] = {.lex_state = 20, .external_lex_state = 2}, + [684] = {.lex_state = 20, .external_lex_state = 2}, + [685] = {.lex_state = 20, .external_lex_state = 2}, + [686] = {.lex_state = 20, .external_lex_state = 2}, + [687] = {.lex_state = 20, .external_lex_state = 2}, + [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}, + [693] = {.lex_state = 20, .external_lex_state = 2}, + [694] = {.lex_state = 20, .external_lex_state = 2}, + [695] = {.lex_state = 20, .external_lex_state = 2}, + [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}, + [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}, + [704] = {.lex_state = 20, .external_lex_state = 2}, + [705] = {.lex_state = 20, .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}, + [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}, + [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 = 39, .external_lex_state = 2}, - [719] = {.lex_state = 39, .external_lex_state = 2}, - [720] = {.lex_state = 39, .external_lex_state = 2}, - [721] = {.lex_state = 39, .external_lex_state = 2}, - [722] = {.lex_state = 39, .external_lex_state = 2}, - [723] = {.lex_state = 39, .external_lex_state = 2}, - [724] = {.lex_state = 39, .external_lex_state = 2}, - [725] = {.lex_state = 39, .external_lex_state = 2}, - [726] = {.lex_state = 39, .external_lex_state = 2}, - [727] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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 = 2}, - [730] = {.lex_state = 39, .external_lex_state = 2}, - [731] = {.lex_state = 39, .external_lex_state = 2}, - [732] = {.lex_state = 39, .external_lex_state = 2}, - [733] = {.lex_state = 39, .external_lex_state = 2}, - [734] = {.lex_state = 39, .external_lex_state = 2}, - [735] = {.lex_state = 39, .external_lex_state = 2}, - [736] = {.lex_state = 39, .external_lex_state = 2}, - [737] = {.lex_state = 39, .external_lex_state = 2}, - [738] = {.lex_state = 39, .external_lex_state = 2}, - [739] = {.lex_state = 39, .external_lex_state = 2}, - [740] = {.lex_state = 39, .external_lex_state = 2}, - [741] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [734] = {.lex_state = 39, .external_lex_state = 4}, + [735] = {.lex_state = 39, .external_lex_state = 4}, + [736] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [741] = {.lex_state = 39, .external_lex_state = 3}, [742] = {.lex_state = 39, .external_lex_state = 3}, - [743] = {.lex_state = 39, .external_lex_state = 2}, - [744] = {.lex_state = 39, .external_lex_state = 2}, - [745] = {.lex_state = 39, .external_lex_state = 2}, + [743] = {.lex_state = 39, .external_lex_state = 3}, + [744] = {.lex_state = 39, .external_lex_state = 3}, + [745] = {.lex_state = 39, .external_lex_state = 3}, [746] = {.lex_state = 39, .external_lex_state = 2}, - [747] = {.lex_state = 39, .external_lex_state = 2}, - [748] = {.lex_state = 39, .external_lex_state = 2}, - [749] = {.lex_state = 39, .external_lex_state = 2}, - [750] = {.lex_state = 39, .external_lex_state = 2}, - [751] = {.lex_state = 39, .external_lex_state = 2}, - [752] = {.lex_state = 39, .external_lex_state = 2}, - [753] = {.lex_state = 39, .external_lex_state = 2}, - [754] = {.lex_state = 39, .external_lex_state = 2}, - [755] = {.lex_state = 39, .external_lex_state = 2}, - [756] = {.lex_state = 39, .external_lex_state = 2}, - [757] = {.lex_state = 39, .external_lex_state = 2}, - [758] = {.lex_state = 39, .external_lex_state = 2}, - [759] = {.lex_state = 39, .external_lex_state = 2}, - [760] = {.lex_state = 39, .external_lex_state = 2}, - [761] = {.lex_state = 39, .external_lex_state = 2}, - [762] = {.lex_state = 39, .external_lex_state = 2}, - [763] = {.lex_state = 39, .external_lex_state = 2}, - [764] = {.lex_state = 39, .external_lex_state = 2}, - [765] = {.lex_state = 39, .external_lex_state = 2}, - [766] = {.lex_state = 39, .external_lex_state = 2}, - [767] = {.lex_state = 39, .external_lex_state = 2}, - [768] = {.lex_state = 39, .external_lex_state = 2}, - [769] = {.lex_state = 39, .external_lex_state = 2}, - [770] = {.lex_state = 39, .external_lex_state = 2}, - [771] = {.lex_state = 39, .external_lex_state = 2}, - [772] = {.lex_state = 39, .external_lex_state = 2}, - [773] = {.lex_state = 39, .external_lex_state = 2}, - [774] = {.lex_state = 39, .external_lex_state = 2}, - [775] = {.lex_state = 39, .external_lex_state = 2}, - [776] = {.lex_state = 39, .external_lex_state = 2}, - [777] = {.lex_state = 39, .external_lex_state = 2}, - [778] = {.lex_state = 39, .external_lex_state = 2}, - [779] = {.lex_state = 39, .external_lex_state = 2}, - [780] = {.lex_state = 39, .external_lex_state = 2}, - [781] = {.lex_state = 39, .external_lex_state = 2}, - [782] = {.lex_state = 39, .external_lex_state = 2}, - [783] = {.lex_state = 39, .external_lex_state = 2}, - [784] = {.lex_state = 39, .external_lex_state = 2}, - [785] = {.lex_state = 39, .external_lex_state = 2}, - [786] = {.lex_state = 39, .external_lex_state = 2}, - [787] = {.lex_state = 39, .external_lex_state = 2}, - [788] = {.lex_state = 39, .external_lex_state = 2}, - [789] = {.lex_state = 39, .external_lex_state = 2}, - [790] = {.lex_state = 39, .external_lex_state = 2}, - [791] = {.lex_state = 39, .external_lex_state = 2}, - [792] = {.lex_state = 39, .external_lex_state = 2}, - [793] = {.lex_state = 39, .external_lex_state = 2}, - [794] = {.lex_state = 39, .external_lex_state = 2}, - [795] = {.lex_state = 39, .external_lex_state = 2}, - [796] = {.lex_state = 39, .external_lex_state = 2}, - [797] = {.lex_state = 39, .external_lex_state = 2}, - [798] = {.lex_state = 39, .external_lex_state = 2}, - [799] = {.lex_state = 39, .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}, + [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 = 2}, - [802] = {.lex_state = 39, .external_lex_state = 2}, - [803] = {.lex_state = 39, .external_lex_state = 2}, - [804] = {.lex_state = 39, .external_lex_state = 2}, - [805] = {.lex_state = 39, .external_lex_state = 2}, - [806] = {.lex_state = 39, .external_lex_state = 2}, - [807] = {.lex_state = 39, .external_lex_state = 2}, - [808] = {.lex_state = 39, .external_lex_state = 2}, - [809] = {.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}, @@ -8816,11 +12010,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [862] = {.lex_state = 39, .external_lex_state = 2}, [863] = {.lex_state = 39, .external_lex_state = 2}, [864] = {.lex_state = 39, .external_lex_state = 2}, - [865] = {.lex_state = 39, .external_lex_state = 3}, + [865] = {.lex_state = 39, .external_lex_state = 2}, [866] = {.lex_state = 39, .external_lex_state = 2}, - [867] = {.lex_state = 39, .external_lex_state = 3}, - [868] = {.lex_state = 39, .external_lex_state = 3}, - [869] = {.lex_state = 39, .external_lex_state = 3}, + [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}, [872] = {.lex_state = 39, .external_lex_state = 2}, @@ -8831,48 +12025,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, + [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}, - [889] = {.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 = 3}, - [893] = {.lex_state = 39, .external_lex_state = 3}, - [894] = {.lex_state = 39, .external_lex_state = 3}, - [895] = {.lex_state = 39, .external_lex_state = 3}, - [896] = {.lex_state = 39, .external_lex_state = 3}, - [897] = {.lex_state = 39, .external_lex_state = 3}, + [892] = {.lex_state = 39, .external_lex_state = 2}, + [893] = {.lex_state = 39, .external_lex_state = 2}, + [894] = {.lex_state = 39, .external_lex_state = 2}, + [895] = {.lex_state = 39, .external_lex_state = 2}, + [896] = {.lex_state = 39, .external_lex_state = 2}, + [897] = {.lex_state = 39, .external_lex_state = 2}, [898] = {.lex_state = 39, .external_lex_state = 2}, - [899] = {.lex_state = 39, .external_lex_state = 3}, - [900] = {.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 = 3}, + [902] = {.lex_state = 39, .external_lex_state = 2}, [903] = {.lex_state = 39, .external_lex_state = 2}, - [904] = {.lex_state = 39, .external_lex_state = 3}, + [904] = {.lex_state = 39, .external_lex_state = 2}, [905] = {.lex_state = 39, .external_lex_state = 2}, - [906] = {.lex_state = 39, .external_lex_state = 2}, - [907] = {.lex_state = 39, .external_lex_state = 2}, - [908] = {.lex_state = 39, .external_lex_state = 3}, + [906] = {.lex_state = 39, .external_lex_state = 4}, + [907] = {.lex_state = 39, .external_lex_state = 4}, + [908] = {.lex_state = 39, .external_lex_state = 2}, [909] = {.lex_state = 39, .external_lex_state = 2}, - [910] = {.lex_state = 39, .external_lex_state = 3}, - [911] = {.lex_state = 39, .external_lex_state = 2}, - [912] = {.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 = 2}, + [914] = {.lex_state = 39, .external_lex_state = 4}, [915] = {.lex_state = 39, .external_lex_state = 2}, - [916] = {.lex_state = 39, .external_lex_state = 2}, + [916] = {.lex_state = 39, .external_lex_state = 4}, [917] = {.lex_state = 39, .external_lex_state = 2}, [918] = {.lex_state = 39, .external_lex_state = 2}, - [919] = {.lex_state = 39, .external_lex_state = 2}, + [919] = {.lex_state = 39, .external_lex_state = 4}, [920] = {.lex_state = 39, .external_lex_state = 2}, - [921] = {.lex_state = 39, .external_lex_state = 2}, + [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}, @@ -8888,80 +12082,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [937] = {.lex_state = 39, .external_lex_state = 2}, [938] = {.lex_state = 39, .external_lex_state = 2}, - [939] = {.lex_state = 39, .external_lex_state = 3}, - [940] = {.lex_state = 39, .external_lex_state = 3}, + [939] = {.lex_state = 39, .external_lex_state = 2}, + [940] = {.lex_state = 39, .external_lex_state = 2}, [941] = {.lex_state = 39, .external_lex_state = 2}, - [942] = {.lex_state = 39, .external_lex_state = 3}, + [942] = {.lex_state = 39, .external_lex_state = 2}, [943] = {.lex_state = 39, .external_lex_state = 2}, - [944] = {.lex_state = 39, .external_lex_state = 3}, - [945] = {.lex_state = 39, .external_lex_state = 3}, + [944] = {.lex_state = 39, .external_lex_state = 2}, + [945] = {.lex_state = 39, .external_lex_state = 2}, [946] = {.lex_state = 39, .external_lex_state = 2}, - [947] = {.lex_state = 39, .external_lex_state = 3}, + [947] = {.lex_state = 39, .external_lex_state = 2}, [948] = {.lex_state = 39, .external_lex_state = 2}, [949] = {.lex_state = 39, .external_lex_state = 2}, [950] = {.lex_state = 39, .external_lex_state = 2}, - [951] = {.lex_state = 39, .external_lex_state = 3}, - [952] = {.lex_state = 39, .external_lex_state = 3}, - [953] = {.lex_state = 39, .external_lex_state = 3}, + [951] = {.lex_state = 39, .external_lex_state = 2}, + [952] = {.lex_state = 39, .external_lex_state = 2}, + [953] = {.lex_state = 39, .external_lex_state = 2}, [954] = {.lex_state = 39, .external_lex_state = 2}, - [955] = {.lex_state = 39, .external_lex_state = 3}, - [956] = {.lex_state = 39, .external_lex_state = 3}, - [957] = {.lex_state = 39, .external_lex_state = 3}, - [958] = {.lex_state = 39, .external_lex_state = 3}, - [959] = {.lex_state = 39, .external_lex_state = 3}, + [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 = 3}, + [961] = {.lex_state = 39, .external_lex_state = 2}, [962] = {.lex_state = 39, .external_lex_state = 2}, - [963] = {.lex_state = 39, .external_lex_state = 3}, + [963] = {.lex_state = 39, .external_lex_state = 2}, [964] = {.lex_state = 39, .external_lex_state = 2}, [965] = {.lex_state = 39, .external_lex_state = 2}, [966] = {.lex_state = 39, .external_lex_state = 2}, - [967] = {.lex_state = 39, .external_lex_state = 3}, - [968] = {.lex_state = 39, .external_lex_state = 3}, - [969] = {.lex_state = 39, .external_lex_state = 3}, - [970] = {.lex_state = 39, .external_lex_state = 3}, - [971] = {.lex_state = 39, .external_lex_state = 3}, - [972] = {.lex_state = 39, .external_lex_state = 3}, - [973] = {.lex_state = 39, .external_lex_state = 3}, - [974] = {.lex_state = 39, .external_lex_state = 3}, - [975] = {.lex_state = 39, .external_lex_state = 3}, + [967] = {.lex_state = 39, .external_lex_state = 2}, + [968] = {.lex_state = 39, .external_lex_state = 2}, + [969] = {.lex_state = 39, .external_lex_state = 2}, + [970] = {.lex_state = 39, .external_lex_state = 2}, + [971] = {.lex_state = 39, .external_lex_state = 2}, + [972] = {.lex_state = 39, .external_lex_state = 2}, + [973] = {.lex_state = 39, .external_lex_state = 2}, + [974] = {.lex_state = 39, .external_lex_state = 2}, + [975] = {.lex_state = 39, .external_lex_state = 2}, [976] = {.lex_state = 39, .external_lex_state = 2}, [977] = {.lex_state = 39, .external_lex_state = 2}, [978] = {.lex_state = 39, .external_lex_state = 2}, [979] = {.lex_state = 39, .external_lex_state = 2}, - [980] = {.lex_state = 39, .external_lex_state = 3}, + [980] = {.lex_state = 39, .external_lex_state = 2}, [981] = {.lex_state = 39, .external_lex_state = 2}, - [982] = {.lex_state = 39, .external_lex_state = 3}, + [982] = {.lex_state = 39, .external_lex_state = 2}, [983] = {.lex_state = 39, .external_lex_state = 2}, - [984] = {.lex_state = 39, .external_lex_state = 3}, - [985] = {.lex_state = 39, .external_lex_state = 3}, - [986] = {.lex_state = 39, .external_lex_state = 3}, - [987] = {.lex_state = 39, .external_lex_state = 3}, - [988] = {.lex_state = 39, .external_lex_state = 3}, - [989] = {.lex_state = 39, .external_lex_state = 2}, - [990] = {.lex_state = 39, .external_lex_state = 3}, - [991] = {.lex_state = 39, .external_lex_state = 3}, - [992] = {.lex_state = 39, .external_lex_state = 3}, - [993] = {.lex_state = 39, .external_lex_state = 3}, - [994] = {.lex_state = 39, .external_lex_state = 3}, - [995] = {.lex_state = 39, .external_lex_state = 3}, - [996] = {.lex_state = 39, .external_lex_state = 2}, - [997] = {.lex_state = 39, .external_lex_state = 3}, - [998] = {.lex_state = 39, .external_lex_state = 3}, - [999] = {.lex_state = 39, .external_lex_state = 3}, - [1000] = {.lex_state = 39, .external_lex_state = 3}, - [1001] = {.lex_state = 39, .external_lex_state = 3}, - [1002] = {.lex_state = 39, .external_lex_state = 3}, - [1003] = {.lex_state = 39, .external_lex_state = 3}, - [1004] = {.lex_state = 39, .external_lex_state = 3}, - [1005] = {.lex_state = 39, .external_lex_state = 3}, - [1006] = {.lex_state = 39, .external_lex_state = 3}, - [1007] = {.lex_state = 39, .external_lex_state = 3}, - [1008] = {.lex_state = 39, .external_lex_state = 3}, - [1009] = {.lex_state = 39, .external_lex_state = 3}, - [1010] = {.lex_state = 39, .external_lex_state = 3}, + [984] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [1005] = {.lex_state = 39, .external_lex_state = 2}, + [1006] = {.lex_state = 39, .external_lex_state = 5}, + [1007] = {.lex_state = 39, .external_lex_state = 2}, + [1008] = {.lex_state = 39, .external_lex_state = 2}, + [1009] = {.lex_state = 39, .external_lex_state = 2}, + [1010] = {.lex_state = 39, .external_lex_state = 2}, [1011] = {.lex_state = 39, .external_lex_state = 2}, [1012] = {.lex_state = 39, .external_lex_state = 2}, [1013] = {.lex_state = 39, .external_lex_state = 2}, @@ -8969,2306 +12163,5395 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1015] = {.lex_state = 39, .external_lex_state = 2}, [1016] = {.lex_state = 39, .external_lex_state = 2}, [1017] = {.lex_state = 39, .external_lex_state = 2}, - [1018] = {.lex_state = 39, .external_lex_state = 5}, - [1019] = {.lex_state = 39, .external_lex_state = 5}, - [1020] = {.lex_state = 39, .external_lex_state = 8}, - [1021] = {.lex_state = 39, .external_lex_state = 5}, - [1022] = {.lex_state = 39, .external_lex_state = 5}, - [1023] = {.lex_state = 39, .external_lex_state = 5}, - [1024] = {.lex_state = 39, .external_lex_state = 5}, - [1025] = {.lex_state = 39, .external_lex_state = 5}, - [1026] = {.lex_state = 39, .external_lex_state = 5}, - [1027] = {.lex_state = 39, .external_lex_state = 5}, - [1028] = {.lex_state = 39, .external_lex_state = 5}, - [1029] = {.lex_state = 39, .external_lex_state = 5}, - [1030] = {.lex_state = 39, .external_lex_state = 5}, - [1031] = {.lex_state = 39, .external_lex_state = 5}, - [1032] = {.lex_state = 39, .external_lex_state = 5}, - [1033] = {.lex_state = 39, .external_lex_state = 5}, - [1034] = {.lex_state = 39, .external_lex_state = 5}, - [1035] = {.lex_state = 39, .external_lex_state = 5}, - [1036] = {.lex_state = 39, .external_lex_state = 5}, - [1037] = {.lex_state = 39, .external_lex_state = 9}, - [1038] = {.lex_state = 39, .external_lex_state = 5}, - [1039] = {.lex_state = 39, .external_lex_state = 5}, - [1040] = {.lex_state = 39, .external_lex_state = 5}, - [1041] = {.lex_state = 39, .external_lex_state = 5}, - [1042] = {.lex_state = 39, .external_lex_state = 5}, - [1043] = {.lex_state = 39, .external_lex_state = 5}, - [1044] = {.lex_state = 39, .external_lex_state = 5}, - [1045] = {.lex_state = 39, .external_lex_state = 5}, - [1046] = {.lex_state = 39, .external_lex_state = 5}, - [1047] = {.lex_state = 39, .external_lex_state = 5}, - [1048] = {.lex_state = 39, .external_lex_state = 5}, - [1049] = {.lex_state = 39, .external_lex_state = 5}, - [1050] = {.lex_state = 39, .external_lex_state = 5}, - [1051] = {.lex_state = 39, .external_lex_state = 5}, - [1052] = {.lex_state = 39, .external_lex_state = 5}, - [1053] = {.lex_state = 39, .external_lex_state = 5}, - [1054] = {.lex_state = 39, .external_lex_state = 5}, - [1055] = {.lex_state = 39, .external_lex_state = 5}, - [1056] = {.lex_state = 39, .external_lex_state = 5}, - [1057] = {.lex_state = 39, .external_lex_state = 5}, - [1058] = {.lex_state = 39, .external_lex_state = 5}, - [1059] = {.lex_state = 39, .external_lex_state = 5}, - [1060] = {.lex_state = 39, .external_lex_state = 5}, - [1061] = {.lex_state = 39, .external_lex_state = 5}, - [1062] = {.lex_state = 39, .external_lex_state = 5}, - [1063] = {.lex_state = 39, .external_lex_state = 5}, - [1064] = {.lex_state = 39, .external_lex_state = 5}, - [1065] = {.lex_state = 39, .external_lex_state = 5}, - [1066] = {.lex_state = 39, .external_lex_state = 5}, - [1067] = {.lex_state = 39, .external_lex_state = 9}, - [1068] = {.lex_state = 39, .external_lex_state = 5}, - [1069] = {.lex_state = 39, .external_lex_state = 5}, - [1070] = {.lex_state = 39, .external_lex_state = 5}, - [1071] = {.lex_state = 39, .external_lex_state = 5}, - [1072] = {.lex_state = 39, .external_lex_state = 5}, - [1073] = {.lex_state = 39, .external_lex_state = 5}, - [1074] = {.lex_state = 39, .external_lex_state = 5}, - [1075] = {.lex_state = 39, .external_lex_state = 5}, - [1076] = {.lex_state = 39, .external_lex_state = 5}, - [1077] = {.lex_state = 39, .external_lex_state = 5}, - [1078] = {.lex_state = 39, .external_lex_state = 5}, - [1079] = {.lex_state = 39, .external_lex_state = 5}, - [1080] = {.lex_state = 39, .external_lex_state = 5}, - [1081] = {.lex_state = 39, .external_lex_state = 5}, - [1082] = {.lex_state = 39, .external_lex_state = 5}, - [1083] = {.lex_state = 39, .external_lex_state = 5}, - [1084] = {.lex_state = 39, .external_lex_state = 5}, - [1085] = {.lex_state = 39, .external_lex_state = 5}, - [1086] = {.lex_state = 39, .external_lex_state = 5}, - [1087] = {.lex_state = 39, .external_lex_state = 5}, - [1088] = {.lex_state = 39, .external_lex_state = 5}, + [1018] = {.lex_state = 39, .external_lex_state = 2}, + [1019] = {.lex_state = 39, .external_lex_state = 2}, + [1020] = {.lex_state = 39, .external_lex_state = 2}, + [1021] = {.lex_state = 39, .external_lex_state = 2}, + [1022] = {.lex_state = 39, .external_lex_state = 2}, + [1023] = {.lex_state = 39, .external_lex_state = 2}, + [1024] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [1039] = {.lex_state = 39, .external_lex_state = 2}, + [1040] = {.lex_state = 39, .external_lex_state = 3}, + [1041] = {.lex_state = 39, .external_lex_state = 2}, + [1042] = {.lex_state = 39, .external_lex_state = 2}, + [1043] = {.lex_state = 39, .external_lex_state = 3}, + [1044] = {.lex_state = 39, .external_lex_state = 2}, + [1045] = {.lex_state = 39, .external_lex_state = 2}, + [1046] = {.lex_state = 39, .external_lex_state = 3}, + [1047] = {.lex_state = 39, .external_lex_state = 2}, + [1048] = {.lex_state = 39, .external_lex_state = 2}, + [1049] = {.lex_state = 39, .external_lex_state = 2}, + [1050] = {.lex_state = 39, .external_lex_state = 2}, + [1051] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1056] = {.lex_state = 39, .external_lex_state = 2}, + [1057] = {.lex_state = 39, .external_lex_state = 2}, + [1058] = {.lex_state = 39, .external_lex_state = 2}, + [1059] = {.lex_state = 39, .external_lex_state = 2}, + [1060] = {.lex_state = 39, .external_lex_state = 2}, + [1061] = {.lex_state = 39, .external_lex_state = 2}, + [1062] = {.lex_state = 39, .external_lex_state = 2}, + [1063] = {.lex_state = 39, .external_lex_state = 2}, + [1064] = {.lex_state = 39, .external_lex_state = 2}, + [1065] = {.lex_state = 39, .external_lex_state = 2}, + [1066] = {.lex_state = 39, .external_lex_state = 2}, + [1067] = {.lex_state = 39, .external_lex_state = 2}, + [1068] = {.lex_state = 39, .external_lex_state = 2}, + [1069] = {.lex_state = 39, .external_lex_state = 2}, + [1070] = {.lex_state = 39, .external_lex_state = 2}, + [1071] = {.lex_state = 39, .external_lex_state = 2}, + [1072] = {.lex_state = 39, .external_lex_state = 2}, + [1073] = {.lex_state = 39, .external_lex_state = 2}, + [1074] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1079] = {.lex_state = 39, .external_lex_state = 2}, + [1080] = {.lex_state = 39, .external_lex_state = 4}, + [1081] = {.lex_state = 39, .external_lex_state = 2}, + [1082] = {.lex_state = 39, .external_lex_state = 2}, + [1083] = {.lex_state = 39, .external_lex_state = 2}, + [1084] = {.lex_state = 39, .external_lex_state = 2}, + [1085] = {.lex_state = 39, .external_lex_state = 2}, + [1086] = {.lex_state = 39, .external_lex_state = 2}, + [1087] = {.lex_state = 39, .external_lex_state = 2}, + [1088] = {.lex_state = 39, .external_lex_state = 2}, [1089] = {.lex_state = 39, .external_lex_state = 2}, - [1090] = {.lex_state = 39, .external_lex_state = 5}, - [1091] = {.lex_state = 39, .external_lex_state = 5}, - [1092] = {.lex_state = 39, .external_lex_state = 5}, - [1093] = {.lex_state = 39, .external_lex_state = 5}, - [1094] = {.lex_state = 39, .external_lex_state = 5}, - [1095] = {.lex_state = 39, .external_lex_state = 5}, - [1096] = {.lex_state = 39, .external_lex_state = 5}, - [1097] = {.lex_state = 39, .external_lex_state = 5}, - [1098] = {.lex_state = 39, .external_lex_state = 5}, - [1099] = {.lex_state = 39, .external_lex_state = 5}, - [1100] = {.lex_state = 39, .external_lex_state = 5}, - [1101] = {.lex_state = 39, .external_lex_state = 5}, - [1102] = {.lex_state = 39, .external_lex_state = 5}, - [1103] = {.lex_state = 39, .external_lex_state = 3}, - [1104] = {.lex_state = 39, .external_lex_state = 5}, - [1105] = {.lex_state = 39, .external_lex_state = 3}, - [1106] = {.lex_state = 39, .external_lex_state = 5}, - [1107] = {.lex_state = 39, .external_lex_state = 5}, - [1108] = {.lex_state = 39, .external_lex_state = 3}, - [1109] = {.lex_state = 39, .external_lex_state = 3}, - [1110] = {.lex_state = 39, .external_lex_state = 5}, - [1111] = {.lex_state = 39, .external_lex_state = 5}, - [1112] = {.lex_state = 39, .external_lex_state = 5}, - [1113] = {.lex_state = 39, .external_lex_state = 5}, - [1114] = {.lex_state = 39, .external_lex_state = 5}, + [1090] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1095] = {.lex_state = 39, .external_lex_state = 2}, + [1096] = {.lex_state = 39, .external_lex_state = 2}, + [1097] = {.lex_state = 39, .external_lex_state = 2}, + [1098] = {.lex_state = 39, .external_lex_state = 2}, + [1099] = {.lex_state = 39, .external_lex_state = 2}, + [1100] = {.lex_state = 39, .external_lex_state = 2}, + [1101] = {.lex_state = 39, .external_lex_state = 2}, + [1102] = {.lex_state = 39, .external_lex_state = 2}, + [1103] = {.lex_state = 39, .external_lex_state = 2}, + [1104] = {.lex_state = 39, .external_lex_state = 2}, + [1105] = {.lex_state = 39, .external_lex_state = 2}, + [1106] = {.lex_state = 39, .external_lex_state = 2}, + [1107] = {.lex_state = 39, .external_lex_state = 2}, + [1108] = {.lex_state = 39, .external_lex_state = 2}, + [1109] = {.lex_state = 39, .external_lex_state = 2}, + [1110] = {.lex_state = 39, .external_lex_state = 2}, + [1111] = {.lex_state = 39, .external_lex_state = 2}, + [1112] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 5}, - [1117] = {.lex_state = 39, .external_lex_state = 5}, - [1118] = {.lex_state = 39, .external_lex_state = 5}, - [1119] = {.lex_state = 39, .external_lex_state = 5}, - [1120] = {.lex_state = 39, .external_lex_state = 5}, - [1121] = {.lex_state = 39, .external_lex_state = 5}, - [1122] = {.lex_state = 39, .external_lex_state = 5}, - [1123] = {.lex_state = 39, .external_lex_state = 5}, + [1116] = {.lex_state = 39, .external_lex_state = 2}, + [1117] = {.lex_state = 39, .external_lex_state = 2}, + [1118] = {.lex_state = 39, .external_lex_state = 2}, + [1119] = {.lex_state = 39, .external_lex_state = 2}, + [1120] = {.lex_state = 39, .external_lex_state = 2}, + [1121] = {.lex_state = 39, .external_lex_state = 2}, + [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}, - [1126] = {.lex_state = 39, .external_lex_state = 5}, - [1127] = {.lex_state = 39, .external_lex_state = 5}, - [1128] = {.lex_state = 39, .external_lex_state = 5}, - [1129] = {.lex_state = 39, .external_lex_state = 5}, - [1130] = {.lex_state = 39, .external_lex_state = 5}, - [1131] = {.lex_state = 39, .external_lex_state = 5}, + [1126] = {.lex_state = 39, .external_lex_state = 2}, + [1127] = {.lex_state = 39, .external_lex_state = 3}, + [1128] = {.lex_state = 39, .external_lex_state = 2}, + [1129] = {.lex_state = 39, .external_lex_state = 3}, + [1130] = {.lex_state = 39, .external_lex_state = 2}, + [1131] = {.lex_state = 39, .external_lex_state = 2}, [1132] = {.lex_state = 39, .external_lex_state = 2}, - [1133] = {.lex_state = 39, .external_lex_state = 5}, - [1134] = {.lex_state = 39, .external_lex_state = 5}, - [1135] = {.lex_state = 39, .external_lex_state = 5}, - [1136] = {.lex_state = 39, .external_lex_state = 5}, - [1137] = {.lex_state = 39, .external_lex_state = 5}, - [1138] = {.lex_state = 39, .external_lex_state = 5}, - [1139] = {.lex_state = 39, .external_lex_state = 5}, - [1140] = {.lex_state = 39, .external_lex_state = 5}, - [1141] = {.lex_state = 39, .external_lex_state = 5}, - [1142] = {.lex_state = 39, .external_lex_state = 5}, - [1143] = {.lex_state = 39, .external_lex_state = 5}, - [1144] = {.lex_state = 39, .external_lex_state = 5}, - [1145] = {.lex_state = 39, .external_lex_state = 5}, - [1146] = {.lex_state = 39, .external_lex_state = 5}, - [1147] = {.lex_state = 39, .external_lex_state = 5}, - [1148] = {.lex_state = 39, .external_lex_state = 5}, - [1149] = {.lex_state = 39, .external_lex_state = 5}, - [1150] = {.lex_state = 39, .external_lex_state = 10}, - [1151] = {.lex_state = 39, .external_lex_state = 10}, - [1152] = {.lex_state = 39, .external_lex_state = 10}, - [1153] = {.lex_state = 39, .external_lex_state = 9}, - [1154] = {.lex_state = 39, .external_lex_state = 3}, - [1155] = {.lex_state = 39, .external_lex_state = 9}, + [1133] = {.lex_state = 39, .external_lex_state = 2}, + [1134] = {.lex_state = 39, .external_lex_state = 2}, + [1135] = {.lex_state = 39, .external_lex_state = 2}, + [1136] = {.lex_state = 39, .external_lex_state = 2}, + [1137] = {.lex_state = 39, .external_lex_state = 2}, + [1138] = {.lex_state = 39, .external_lex_state = 2}, + [1139] = {.lex_state = 39, .external_lex_state = 2}, + [1140] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1145] = {.lex_state = 39, .external_lex_state = 2}, + [1146] = {.lex_state = 39, .external_lex_state = 2}, + [1147] = {.lex_state = 39, .external_lex_state = 2}, + [1148] = {.lex_state = 39, .external_lex_state = 2}, + [1149] = {.lex_state = 39, .external_lex_state = 2}, + [1150] = {.lex_state = 39, .external_lex_state = 2}, + [1151] = {.lex_state = 39, .external_lex_state = 2}, + [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}, [1156] = {.lex_state = 39, .external_lex_state = 2}, [1157] = {.lex_state = 39, .external_lex_state = 2}, [1158] = {.lex_state = 39, .external_lex_state = 2}, - [1159] = {.lex_state = 39, .external_lex_state = 9}, + [1159] = {.lex_state = 39, .external_lex_state = 2}, [1160] = {.lex_state = 39, .external_lex_state = 2}, - [1161] = {.lex_state = 39, .external_lex_state = 3}, - [1162] = {.lex_state = 39, .external_lex_state = 3}, + [1161] = {.lex_state = 39, .external_lex_state = 2}, + [1162] = {.lex_state = 39, .external_lex_state = 2}, [1163] = {.lex_state = 39, .external_lex_state = 2}, - [1164] = {.lex_state = 39, .external_lex_state = 3}, - [1165] = {.lex_state = 39, .external_lex_state = 3}, - [1166] = {.lex_state = 39, .external_lex_state = 11}, - [1167] = {.lex_state = 39, .external_lex_state = 11}, - [1168] = {.lex_state = 39, .external_lex_state = 9}, + [1164] = {.lex_state = 39, .external_lex_state = 2}, + [1165] = {.lex_state = 39, .external_lex_state = 2}, + [1166] = {.lex_state = 39, .external_lex_state = 2}, + [1167] = {.lex_state = 39, .external_lex_state = 2}, + [1168] = {.lex_state = 39, .external_lex_state = 2}, [1169] = {.lex_state = 39, .external_lex_state = 2}, - [1170] = {.lex_state = 39, .external_lex_state = 11}, - [1171] = {.lex_state = 39, .external_lex_state = 9}, + [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}, - [1174] = {.lex_state = 39, .external_lex_state = 11}, - [1175] = {.lex_state = 39, .external_lex_state = 9}, - [1176] = {.lex_state = 39, .external_lex_state = 9}, - [1177] = {.lex_state = 39, .external_lex_state = 10}, - [1178] = {.lex_state = 39, .external_lex_state = 9}, - [1179] = {.lex_state = 39, .external_lex_state = 11}, - [1180] = {.lex_state = 39, .external_lex_state = 9}, - [1181] = {.lex_state = 39, .external_lex_state = 3}, - [1182] = {.lex_state = 39, .external_lex_state = 10}, - [1183] = {.lex_state = 39, .external_lex_state = 10}, - [1184] = {.lex_state = 3, .external_lex_state = 10}, - [1185] = {.lex_state = 39, .external_lex_state = 8}, - [1186] = {.lex_state = 39, .external_lex_state = 10}, - [1187] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [1181] = {.lex_state = 39, .external_lex_state = 2}, + [1182] = {.lex_state = 39, .external_lex_state = 2}, + [1183] = {.lex_state = 39, .external_lex_state = 2}, + [1184] = {.lex_state = 39, .external_lex_state = 2}, + [1185] = {.lex_state = 39, .external_lex_state = 2}, + [1186] = {.lex_state = 39, .external_lex_state = 2}, + [1187] = {.lex_state = 39, .external_lex_state = 4}, [1188] = {.lex_state = 39, .external_lex_state = 2}, - [1189] = {.lex_state = 39, .external_lex_state = 10}, - [1190] = {.lex_state = 39, .external_lex_state = 10}, - [1191] = {.lex_state = 39, .external_lex_state = 3}, - [1192] = {.lex_state = 39, .external_lex_state = 10}, - [1193] = {.lex_state = 39, .external_lex_state = 10}, - [1194] = {.lex_state = 39, .external_lex_state = 9}, - [1195] = {.lex_state = 39, .external_lex_state = 10}, - [1196] = {.lex_state = 39, .external_lex_state = 9}, - [1197] = {.lex_state = 39, .external_lex_state = 10}, - [1198] = {.lex_state = 39, .external_lex_state = 9}, - [1199] = {.lex_state = 39, .external_lex_state = 10}, - [1200] = {.lex_state = 39, .external_lex_state = 5}, - [1201] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [1195] = {.lex_state = 39, .external_lex_state = 2}, + [1196] = {.lex_state = 39, .external_lex_state = 2}, + [1197] = {.lex_state = 39, .external_lex_state = 2}, + [1198] = {.lex_state = 39, .external_lex_state = 5}, + [1199] = {.lex_state = 39, .external_lex_state = 3}, + [1200] = {.lex_state = 39, .external_lex_state = 2}, + [1201] = {.lex_state = 39, .external_lex_state = 2}, [1202] = {.lex_state = 39, .external_lex_state = 5}, - [1203] = {.lex_state = 39, .external_lex_state = 5}, - [1204] = {.lex_state = 39, .external_lex_state = 10}, - [1205] = {.lex_state = 3, .external_lex_state = 10}, - [1206] = {.lex_state = 39, .external_lex_state = 10}, - [1207] = {.lex_state = 39, .external_lex_state = 10}, - [1208] = {.lex_state = 39, .external_lex_state = 9}, - [1209] = {.lex_state = 39, .external_lex_state = 12}, - [1210] = {.lex_state = 39, .external_lex_state = 8}, - [1211] = {.lex_state = 39, .external_lex_state = 10}, - [1212] = {.lex_state = 39, .external_lex_state = 10}, - [1213] = {.lex_state = 39, .external_lex_state = 10}, - [1214] = {.lex_state = 39, .external_lex_state = 10}, - [1215] = {.lex_state = 39, .external_lex_state = 10}, - [1216] = {.lex_state = 39, .external_lex_state = 10}, - [1217] = {.lex_state = 39, .external_lex_state = 10}, - [1218] = {.lex_state = 39, .external_lex_state = 10}, - [1219] = {.lex_state = 39, .external_lex_state = 10}, - [1220] = {.lex_state = 39, .external_lex_state = 10}, - [1221] = {.lex_state = 39, .external_lex_state = 3}, - [1222] = {.lex_state = 39, .external_lex_state = 10}, - [1223] = {.lex_state = 39, .external_lex_state = 3}, - [1224] = {.lex_state = 39, .external_lex_state = 10}, - [1225] = {.lex_state = 39, .external_lex_state = 10}, - [1226] = {.lex_state = 39, .external_lex_state = 3}, - [1227] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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}, + [1219] = {.lex_state = 39, .external_lex_state = 2}, + [1220] = {.lex_state = 39, .external_lex_state = 2}, + [1221] = {.lex_state = 39, .external_lex_state = 2}, + [1222] = {.lex_state = 39, .external_lex_state = 2}, + [1223] = {.lex_state = 39, .external_lex_state = 2}, + [1224] = {.lex_state = 39, .external_lex_state = 2}, + [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}, - [1229] = {.lex_state = 39, .external_lex_state = 10}, + [1229] = {.lex_state = 39, .external_lex_state = 2}, [1230] = {.lex_state = 39, .external_lex_state = 2}, [1231] = {.lex_state = 39, .external_lex_state = 2}, - [1232] = {.lex_state = 3, .external_lex_state = 10}, - [1233] = {.lex_state = 39, .external_lex_state = 10}, - [1234] = {.lex_state = 39, .external_lex_state = 12}, - [1235] = {.lex_state = 39, .external_lex_state = 9}, - [1236] = {.lex_state = 39, .external_lex_state = 10}, - [1237] = {.lex_state = 39, .external_lex_state = 9}, - [1238] = {.lex_state = 39, .external_lex_state = 9}, - [1239] = {.lex_state = 39, .external_lex_state = 9}, - [1240] = {.lex_state = 39, .external_lex_state = 9}, - [1241] = {.lex_state = 39, .external_lex_state = 9}, - [1242] = {.lex_state = 39, .external_lex_state = 3}, - [1243] = {.lex_state = 39, .external_lex_state = 5}, - [1244] = {.lex_state = 39, .external_lex_state = 9}, - [1245] = {.lex_state = 39, .external_lex_state = 9}, - [1246] = {.lex_state = 39, .external_lex_state = 9}, + [1232] = {.lex_state = 39, .external_lex_state = 2}, + [1233] = {.lex_state = 39, .external_lex_state = 2}, + [1234] = {.lex_state = 39, .external_lex_state = 2}, + [1235] = {.lex_state = 39, .external_lex_state = 2}, + [1236] = {.lex_state = 39, .external_lex_state = 2}, + [1237] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1242] = {.lex_state = 39, .external_lex_state = 2}, + [1243] = {.lex_state = 39, .external_lex_state = 2}, + [1244] = {.lex_state = 39, .external_lex_state = 2}, + [1245] = {.lex_state = 39, .external_lex_state = 2}, + [1246] = {.lex_state = 39, .external_lex_state = 2}, [1247] = {.lex_state = 39, .external_lex_state = 2}, - [1248] = {.lex_state = 39, .external_lex_state = 9}, - [1249] = {.lex_state = 39, .external_lex_state = 9}, - [1250] = {.lex_state = 39, .external_lex_state = 9}, - [1251] = {.lex_state = 39, .external_lex_state = 9}, - [1252] = {.lex_state = 39, .external_lex_state = 9}, - [1253] = {.lex_state = 39, .external_lex_state = 9}, - [1254] = {.lex_state = 39, .external_lex_state = 9}, - [1255] = {.lex_state = 39, .external_lex_state = 9}, - [1256] = {.lex_state = 39, .external_lex_state = 9}, - [1257] = {.lex_state = 39, .external_lex_state = 10}, - [1258] = {.lex_state = 39, .external_lex_state = 9}, - [1259] = {.lex_state = 39, .external_lex_state = 9}, - [1260] = {.lex_state = 39, .external_lex_state = 9}, - [1261] = {.lex_state = 39, .external_lex_state = 10}, - [1262] = {.lex_state = 39, .external_lex_state = 9}, - [1263] = {.lex_state = 39, .external_lex_state = 10}, - [1264] = {.lex_state = 39, .external_lex_state = 9}, - [1265] = {.lex_state = 39, .external_lex_state = 9}, - [1266] = {.lex_state = 39, .external_lex_state = 9}, - [1267] = {.lex_state = 39, .external_lex_state = 9}, - [1268] = {.lex_state = 39, .external_lex_state = 9}, - [1269] = {.lex_state = 39, .external_lex_state = 9}, - [1270] = {.lex_state = 39, .external_lex_state = 9}, - [1271] = {.lex_state = 39, .external_lex_state = 9}, - [1272] = {.lex_state = 39, .external_lex_state = 9}, - [1273] = {.lex_state = 39, .external_lex_state = 9}, - [1274] = {.lex_state = 39, .external_lex_state = 9}, - [1275] = {.lex_state = 39, .external_lex_state = 10}, - [1276] = {.lex_state = 39, .external_lex_state = 9}, - [1277] = {.lex_state = 39, .external_lex_state = 12}, - [1278] = {.lex_state = 39, .external_lex_state = 10}, - [1279] = {.lex_state = 39, .external_lex_state = 10}, - [1280] = {.lex_state = 39, .external_lex_state = 10}, - [1281] = {.lex_state = 39, .external_lex_state = 10}, - [1282] = {.lex_state = 39, .external_lex_state = 9}, - [1283] = {.lex_state = 39, .external_lex_state = 9}, - [1284] = {.lex_state = 39, .external_lex_state = 10}, - [1285] = {.lex_state = 39, .external_lex_state = 10}, - [1286] = {.lex_state = 39, .external_lex_state = 9}, - [1287] = {.lex_state = 39, .external_lex_state = 10}, - [1288] = {.lex_state = 39, .external_lex_state = 9}, - [1289] = {.lex_state = 39, .external_lex_state = 9}, - [1290] = {.lex_state = 39, .external_lex_state = 10}, - [1291] = {.lex_state = 39, .external_lex_state = 10}, - [1292] = {.lex_state = 39, .external_lex_state = 10}, - [1293] = {.lex_state = 39, .external_lex_state = 9}, - [1294] = {.lex_state = 39, .external_lex_state = 9}, - [1295] = {.lex_state = 39, .external_lex_state = 9}, - [1296] = {.lex_state = 39, .external_lex_state = 9}, - [1297] = {.lex_state = 39, .external_lex_state = 9}, - [1298] = {.lex_state = 39, .external_lex_state = 9}, - [1299] = {.lex_state = 39, .external_lex_state = 9}, - [1300] = {.lex_state = 39, .external_lex_state = 9}, - [1301] = {.lex_state = 39, .external_lex_state = 9}, - [1302] = {.lex_state = 39, .external_lex_state = 9}, - [1303] = {.lex_state = 39, .external_lex_state = 9}, - [1304] = {.lex_state = 39, .external_lex_state = 9}, - [1305] = {.lex_state = 39, .external_lex_state = 9}, - [1306] = {.lex_state = 39, .external_lex_state = 10}, - [1307] = {.lex_state = 39, .external_lex_state = 9}, - [1308] = {.lex_state = 39, .external_lex_state = 9}, - [1309] = {.lex_state = 39, .external_lex_state = 9}, - [1310] = {.lex_state = 39, .external_lex_state = 9}, - [1311] = {.lex_state = 39, .external_lex_state = 10}, - [1312] = {.lex_state = 39, .external_lex_state = 10}, - [1313] = {.lex_state = 39, .external_lex_state = 9}, - [1314] = {.lex_state = 39, .external_lex_state = 10}, - [1315] = {.lex_state = 39, .external_lex_state = 10}, - [1316] = {.lex_state = 39, .external_lex_state = 10}, - [1317] = {.lex_state = 39, .external_lex_state = 10}, - [1318] = {.lex_state = 39, .external_lex_state = 10}, - [1319] = {.lex_state = 39, .external_lex_state = 12}, - [1320] = {.lex_state = 39, .external_lex_state = 10}, - [1321] = {.lex_state = 39, .external_lex_state = 10}, - [1322] = {.lex_state = 39, .external_lex_state = 9}, - [1323] = {.lex_state = 39, .external_lex_state = 9}, - [1324] = {.lex_state = 39, .external_lex_state = 9}, - [1325] = {.lex_state = 39, .external_lex_state = 9}, - [1326] = {.lex_state = 39, .external_lex_state = 9}, - [1327] = {.lex_state = 39, .external_lex_state = 9}, - [1328] = {.lex_state = 39, .external_lex_state = 9}, - [1329] = {.lex_state = 39, .external_lex_state = 9}, - [1330] = {.lex_state = 39, .external_lex_state = 9}, - [1331] = {.lex_state = 39, .external_lex_state = 10}, - [1332] = {.lex_state = 39, .external_lex_state = 10}, - [1333] = {.lex_state = 39, .external_lex_state = 9}, - [1334] = {.lex_state = 39, .external_lex_state = 9}, - [1335] = {.lex_state = 39, .external_lex_state = 9}, - [1336] = {.lex_state = 39, .external_lex_state = 10}, - [1337] = {.lex_state = 39, .external_lex_state = 9}, - [1338] = {.lex_state = 39, .external_lex_state = 10}, - [1339] = {.lex_state = 39, .external_lex_state = 10}, - [1340] = {.lex_state = 39, .external_lex_state = 9}, - [1341] = {.lex_state = 39, .external_lex_state = 9}, - [1342] = {.lex_state = 39, .external_lex_state = 10}, - [1343] = {.lex_state = 39, .external_lex_state = 10}, - [1344] = {.lex_state = 39, .external_lex_state = 9}, - [1345] = {.lex_state = 39, .external_lex_state = 8}, - [1346] = {.lex_state = 39, .external_lex_state = 9}, - [1347] = {.lex_state = 39, .external_lex_state = 9}, - [1348] = {.lex_state = 39, .external_lex_state = 10}, - [1349] = {.lex_state = 39, .external_lex_state = 10}, - [1350] = {.lex_state = 39, .external_lex_state = 9}, - [1351] = {.lex_state = 39, .external_lex_state = 10}, - [1352] = {.lex_state = 39, .external_lex_state = 10}, - [1353] = {.lex_state = 39, .external_lex_state = 10}, - [1354] = {.lex_state = 39, .external_lex_state = 9}, - [1355] = {.lex_state = 39, .external_lex_state = 10}, - [1356] = {.lex_state = 39, .external_lex_state = 10}, - [1357] = {.lex_state = 39, .external_lex_state = 10}, - [1358] = {.lex_state = 39, .external_lex_state = 10}, - [1359] = {.lex_state = 39, .external_lex_state = 10}, - [1360] = {.lex_state = 39, .external_lex_state = 10}, - [1361] = {.lex_state = 39, .external_lex_state = 10}, - [1362] = {.lex_state = 39, .external_lex_state = 10}, - [1363] = {.lex_state = 39, .external_lex_state = 9}, - [1364] = {.lex_state = 39, .external_lex_state = 9}, - [1365] = {.lex_state = 39, .external_lex_state = 10}, - [1366] = {.lex_state = 39, .external_lex_state = 10}, - [1367] = {.lex_state = 39, .external_lex_state = 10}, - [1368] = {.lex_state = 39, .external_lex_state = 10}, - [1369] = {.lex_state = 39, .external_lex_state = 9}, - [1370] = {.lex_state = 39, .external_lex_state = 10}, - [1371] = {.lex_state = 39, .external_lex_state = 10}, - [1372] = {.lex_state = 39, .external_lex_state = 10}, - [1373] = {.lex_state = 39, .external_lex_state = 10}, - [1374] = {.lex_state = 39, .external_lex_state = 10}, - [1375] = {.lex_state = 39, .external_lex_state = 9}, - [1376] = {.lex_state = 39, .external_lex_state = 10}, - [1377] = {.lex_state = 39, .external_lex_state = 10}, - [1378] = {.lex_state = 39, .external_lex_state = 10}, - [1379] = {.lex_state = 39, .external_lex_state = 10}, - [1380] = {.lex_state = 39, .external_lex_state = 10}, - [1381] = {.lex_state = 39, .external_lex_state = 10}, - [1382] = {.lex_state = 39, .external_lex_state = 10}, - [1383] = {.lex_state = 39, .external_lex_state = 10}, - [1384] = {.lex_state = 39, .external_lex_state = 10}, - [1385] = {.lex_state = 39, .external_lex_state = 10}, - [1386] = {.lex_state = 39, .external_lex_state = 10}, - [1387] = {.lex_state = 39, .external_lex_state = 9}, - [1388] = {.lex_state = 39, .external_lex_state = 9}, - [1389] = {.lex_state = 39, .external_lex_state = 9}, - [1390] = {.lex_state = 39, .external_lex_state = 9}, - [1391] = {.lex_state = 39, .external_lex_state = 10}, - [1392] = {.lex_state = 39, .external_lex_state = 9}, - [1393] = {.lex_state = 39, .external_lex_state = 10}, - [1394] = {.lex_state = 39, .external_lex_state = 10}, - [1395] = {.lex_state = 39, .external_lex_state = 10}, - [1396] = {.lex_state = 39, .external_lex_state = 10}, - [1397] = {.lex_state = 39, .external_lex_state = 10}, - [1398] = {.lex_state = 39, .external_lex_state = 10}, - [1399] = {.lex_state = 39, .external_lex_state = 10}, - [1400] = {.lex_state = 39, .external_lex_state = 10}, - [1401] = {.lex_state = 39, .external_lex_state = 10}, - [1402] = {.lex_state = 39, .external_lex_state = 10}, - [1403] = {.lex_state = 39, .external_lex_state = 10}, - [1404] = {.lex_state = 39, .external_lex_state = 10}, - [1405] = {.lex_state = 39, .external_lex_state = 10}, - [1406] = {.lex_state = 39, .external_lex_state = 10}, - [1407] = {.lex_state = 39, .external_lex_state = 10}, - [1408] = {.lex_state = 39, .external_lex_state = 10}, - [1409] = {.lex_state = 39, .external_lex_state = 10}, - [1410] = {.lex_state = 39, .external_lex_state = 9}, - [1411] = {.lex_state = 39, .external_lex_state = 10}, - [1412] = {.lex_state = 39, .external_lex_state = 9}, - [1413] = {.lex_state = 39, .external_lex_state = 10}, - [1414] = {.lex_state = 39, .external_lex_state = 9}, - [1415] = {.lex_state = 39, .external_lex_state = 10}, - [1416] = {.lex_state = 39, .external_lex_state = 10}, - [1417] = {.lex_state = 39, .external_lex_state = 10}, - [1418] = {.lex_state = 39, .external_lex_state = 11}, - [1419] = {.lex_state = 39, .external_lex_state = 11}, - [1420] = {.lex_state = 39, .external_lex_state = 11}, - [1421] = {.lex_state = 39, .external_lex_state = 11}, - [1422] = {.lex_state = 39, .external_lex_state = 11}, - [1423] = {.lex_state = 39, .external_lex_state = 11}, - [1424] = {.lex_state = 39, .external_lex_state = 11}, - [1425] = {.lex_state = 39, .external_lex_state = 11}, - [1426] = {.lex_state = 39, .external_lex_state = 11}, - [1427] = {.lex_state = 39, .external_lex_state = 9}, - [1428] = {.lex_state = 39, .external_lex_state = 11}, - [1429] = {.lex_state = 39, .external_lex_state = 11}, - [1430] = {.lex_state = 39, .external_lex_state = 11}, - [1431] = {.lex_state = 39, .external_lex_state = 11}, - [1432] = {.lex_state = 39, .external_lex_state = 11}, - [1433] = {.lex_state = 39, .external_lex_state = 3}, - [1434] = {.lex_state = 39, .external_lex_state = 11}, - [1435] = {.lex_state = 39, .external_lex_state = 11}, - [1436] = {.lex_state = 39, .external_lex_state = 2}, - [1437] = {.lex_state = 39, .external_lex_state = 11}, - [1438] = {.lex_state = 39, .external_lex_state = 3}, - [1439] = {.lex_state = 39, .external_lex_state = 3}, - [1440] = {.lex_state = 39, .external_lex_state = 3}, - [1441] = {.lex_state = 39, .external_lex_state = 11}, - [1442] = {.lex_state = 39, .external_lex_state = 11}, - [1443] = {.lex_state = 39, .external_lex_state = 11}, + [1248] = {.lex_state = 39, .external_lex_state = 2}, + [1249] = {.lex_state = 39, .external_lex_state = 5}, + [1250] = {.lex_state = 39, .external_lex_state = 2}, + [1251] = {.lex_state = 39, .external_lex_state = 2}, + [1252] = {.lex_state = 39, .external_lex_state = 2}, + [1253] = {.lex_state = 39, .external_lex_state = 2}, + [1254] = {.lex_state = 39, .external_lex_state = 2}, + [1255] = {.lex_state = 39, .external_lex_state = 2}, + [1256] = {.lex_state = 39, .external_lex_state = 2}, + [1257] = {.lex_state = 39, .external_lex_state = 2}, + [1258] = {.lex_state = 39, .external_lex_state = 2}, + [1259] = {.lex_state = 39, .external_lex_state = 2}, + [1260] = {.lex_state = 39, .external_lex_state = 2}, + [1261] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1266] = {.lex_state = 39, .external_lex_state = 2}, + [1267] = {.lex_state = 39, .external_lex_state = 2}, + [1268] = {.lex_state = 39, .external_lex_state = 2}, + [1269] = {.lex_state = 39, .external_lex_state = 2}, + [1270] = {.lex_state = 39, .external_lex_state = 2}, + [1271] = {.lex_state = 39, .external_lex_state = 2}, + [1272] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1279] = {.lex_state = 39, .external_lex_state = 2}, + [1280] = {.lex_state = 39, .external_lex_state = 2}, + [1281] = {.lex_state = 39, .external_lex_state = 2}, + [1282] = {.lex_state = 39, .external_lex_state = 2}, + [1283] = {.lex_state = 39, .external_lex_state = 2}, + [1284] = {.lex_state = 39, .external_lex_state = 2}, + [1285] = {.lex_state = 39, .external_lex_state = 2}, + [1286] = {.lex_state = 39, .external_lex_state = 2}, + [1287] = {.lex_state = 39, .external_lex_state = 2}, + [1288] = {.lex_state = 39, .external_lex_state = 2}, + [1289] = {.lex_state = 39, .external_lex_state = 2}, + [1290] = {.lex_state = 39, .external_lex_state = 2}, + [1291] = {.lex_state = 39, .external_lex_state = 2}, + [1292] = {.lex_state = 39, .external_lex_state = 2}, + [1293] = {.lex_state = 39, .external_lex_state = 2}, + [1294] = {.lex_state = 39, .external_lex_state = 2}, + [1295] = {.lex_state = 39, .external_lex_state = 2}, + [1296] = {.lex_state = 39, .external_lex_state = 2}, + [1297] = {.lex_state = 39, .external_lex_state = 2}, + [1298] = {.lex_state = 39, .external_lex_state = 2}, + [1299] = {.lex_state = 39, .external_lex_state = 2}, + [1300] = {.lex_state = 39, .external_lex_state = 2}, + [1301] = {.lex_state = 39, .external_lex_state = 2}, + [1302] = {.lex_state = 39, .external_lex_state = 2}, + [1303] = {.lex_state = 39, .external_lex_state = 2}, + [1304] = {.lex_state = 39, .external_lex_state = 2}, + [1305] = {.lex_state = 39, .external_lex_state = 2}, + [1306] = {.lex_state = 39, .external_lex_state = 2}, + [1307] = {.lex_state = 39, .external_lex_state = 2}, + [1308] = {.lex_state = 39, .external_lex_state = 2}, + [1309] = {.lex_state = 39, .external_lex_state = 2}, + [1310] = {.lex_state = 39, .external_lex_state = 2}, + [1311] = {.lex_state = 39, .external_lex_state = 2}, + [1312] = {.lex_state = 39, .external_lex_state = 2}, + [1313] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [1332] = {.lex_state = 39, .external_lex_state = 2}, + [1333] = {.lex_state = 39, .external_lex_state = 2}, + [1334] = {.lex_state = 39, .external_lex_state = 2}, + [1335] = {.lex_state = 39, .external_lex_state = 2}, + [1336] = {.lex_state = 39, .external_lex_state = 2}, + [1337] = {.lex_state = 39, .external_lex_state = 2}, + [1338] = {.lex_state = 39, .external_lex_state = 2}, + [1339] = {.lex_state = 39, .external_lex_state = 2}, + [1340] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1345] = {.lex_state = 39, .external_lex_state = 2}, + [1346] = {.lex_state = 39, .external_lex_state = 2}, + [1347] = {.lex_state = 39, .external_lex_state = 2}, + [1348] = {.lex_state = 39, .external_lex_state = 2}, + [1349] = {.lex_state = 39, .external_lex_state = 2}, + [1350] = {.lex_state = 39, .external_lex_state = 2}, + [1351] = {.lex_state = 39, .external_lex_state = 2}, + [1352] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [1389] = {.lex_state = 39, .external_lex_state = 2}, + [1390] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1396] = {.lex_state = 39, .external_lex_state = 2}, + [1397] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [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}, + [1424] = {.lex_state = 39, .external_lex_state = 2}, + [1425] = {.lex_state = 39, .external_lex_state = 2}, + [1426] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [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}, + [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}, [1444] = {.lex_state = 39, .external_lex_state = 2}, - [1445] = {.lex_state = 39, .external_lex_state = 11}, - [1446] = {.lex_state = 39, .external_lex_state = 11}, - [1447] = {.lex_state = 39, .external_lex_state = 11}, + [1445] = {.lex_state = 39, .external_lex_state = 2}, + [1446] = {.lex_state = 39, .external_lex_state = 2}, + [1447] = {.lex_state = 39, .external_lex_state = 2}, [1448] = {.lex_state = 39, .external_lex_state = 2}, - [1449] = {.lex_state = 39, .external_lex_state = 9}, - [1450] = {.lex_state = 39, .external_lex_state = 9}, - [1451] = {.lex_state = 39, .external_lex_state = 11}, - [1452] = {.lex_state = 39, .external_lex_state = 11}, - [1453] = {.lex_state = 39, .external_lex_state = 9}, - [1454] = {.lex_state = 39, .external_lex_state = 9}, + [1449] = {.lex_state = 39, .external_lex_state = 2}, + [1450] = {.lex_state = 39, .external_lex_state = 2}, + [1451] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 11}, - [1457] = {.lex_state = 39, .external_lex_state = 9}, - [1458] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 9}, - [1461] = {.lex_state = 39, .external_lex_state = 9}, - [1462] = {.lex_state = 39, .external_lex_state = 11}, - [1463] = {.lex_state = 39, .external_lex_state = 11}, - [1464] = {.lex_state = 39, .external_lex_state = 9}, - [1465] = {.lex_state = 39, .external_lex_state = 11}, - [1466] = {.lex_state = 39, .external_lex_state = 9}, - [1467] = {.lex_state = 39, .external_lex_state = 9}, - [1468] = {.lex_state = 39, .external_lex_state = 9}, - [1469] = {.lex_state = 39, .external_lex_state = 11}, - [1470] = {.lex_state = 39, .external_lex_state = 9}, - [1471] = {.lex_state = 39, .external_lex_state = 9}, - [1472] = {.lex_state = 39, .external_lex_state = 9}, - [1473] = {.lex_state = 39, .external_lex_state = 11}, - [1474] = {.lex_state = 39, .external_lex_state = 11}, - [1475] = {.lex_state = 39, .external_lex_state = 9}, - [1476] = {.lex_state = 39, .external_lex_state = 9}, - [1477] = {.lex_state = 39, .external_lex_state = 11}, - [1478] = {.lex_state = 39, .external_lex_state = 11}, - [1479] = {.lex_state = 39, .external_lex_state = 11}, - [1480] = {.lex_state = 39, .external_lex_state = 9}, - [1481] = {.lex_state = 39, .external_lex_state = 11}, - [1482] = {.lex_state = 39, .external_lex_state = 11}, - [1483] = {.lex_state = 39, .external_lex_state = 3}, - [1484] = {.lex_state = 39, .external_lex_state = 11}, - [1485] = {.lex_state = 39, .external_lex_state = 11}, - [1486] = {.lex_state = 39, .external_lex_state = 3}, - [1487] = {.lex_state = 39, .external_lex_state = 11}, - [1488] = {.lex_state = 39, .external_lex_state = 11}, - [1489] = {.lex_state = 39, .external_lex_state = 2}, - [1490] = {.lex_state = 39, .external_lex_state = 9}, - [1491] = {.lex_state = 39, .external_lex_state = 11}, - [1492] = {.lex_state = 3, .external_lex_state = 10}, - [1493] = {.lex_state = 39, .external_lex_state = 11}, - [1494] = {.lex_state = 39, .external_lex_state = 8}, - [1495] = {.lex_state = 39, .external_lex_state = 8}, - [1496] = {.lex_state = 39, .external_lex_state = 8}, - [1497] = {.lex_state = 39, .external_lex_state = 9}, - [1498] = {.lex_state = 39, .external_lex_state = 8}, - [1499] = {.lex_state = 39, .external_lex_state = 9}, - [1500] = {.lex_state = 39, .external_lex_state = 8}, - [1501] = {.lex_state = 39, .external_lex_state = 11}, - [1502] = {.lex_state = 39, .external_lex_state = 8}, - [1503] = {.lex_state = 39, .external_lex_state = 8}, - [1504] = {.lex_state = 39, .external_lex_state = 11}, - [1505] = {.lex_state = 39, .external_lex_state = 8}, - [1506] = {.lex_state = 39, .external_lex_state = 8}, - [1507] = {.lex_state = 39, .external_lex_state = 9}, - [1508] = {.lex_state = 39, .external_lex_state = 8}, - [1509] = {.lex_state = 39, .external_lex_state = 9}, - [1510] = {.lex_state = 39, .external_lex_state = 9}, - [1511] = {.lex_state = 39, .external_lex_state = 9}, - [1512] = {.lex_state = 39, .external_lex_state = 8}, - [1513] = {.lex_state = 39, .external_lex_state = 9}, - [1514] = {.lex_state = 39, .external_lex_state = 9}, - [1515] = {.lex_state = 39, .external_lex_state = 11}, - [1516] = {.lex_state = 39, .external_lex_state = 9}, - [1517] = {.lex_state = 39, .external_lex_state = 9}, - [1518] = {.lex_state = 39, .external_lex_state = 9}, - [1519] = {.lex_state = 39, .external_lex_state = 8}, - [1520] = {.lex_state = 39, .external_lex_state = 11}, - [1521] = {.lex_state = 39, .external_lex_state = 9}, - [1522] = {.lex_state = 39, .external_lex_state = 9}, - [1523] = {.lex_state = 39, .external_lex_state = 8}, - [1524] = {.lex_state = 39, .external_lex_state = 9}, - [1525] = {.lex_state = 39, .external_lex_state = 9}, - [1526] = {.lex_state = 39, .external_lex_state = 9}, - [1527] = {.lex_state = 39, .external_lex_state = 9}, - [1528] = {.lex_state = 39, .external_lex_state = 9}, - [1529] = {.lex_state = 39, .external_lex_state = 8}, - [1530] = {.lex_state = 39, .external_lex_state = 8}, - [1531] = {.lex_state = 39, .external_lex_state = 8}, - [1532] = {.lex_state = 39, .external_lex_state = 8}, - [1533] = {.lex_state = 3, .external_lex_state = 10}, - [1534] = {.lex_state = 39, .external_lex_state = 8}, - [1535] = {.lex_state = 39, .external_lex_state = 8}, - [1536] = {.lex_state = 39, .external_lex_state = 8}, - [1537] = {.lex_state = 39, .external_lex_state = 8}, - [1538] = {.lex_state = 39, .external_lex_state = 8}, - [1539] = {.lex_state = 39, .external_lex_state = 8}, - [1540] = {.lex_state = 39, .external_lex_state = 11}, - [1541] = {.lex_state = 39, .external_lex_state = 11}, - [1542] = {.lex_state = 39, .external_lex_state = 11}, - [1543] = {.lex_state = 39, .external_lex_state = 8}, - [1544] = {.lex_state = 39, .external_lex_state = 9}, - [1545] = {.lex_state = 39, .external_lex_state = 11}, - [1546] = {.lex_state = 39, .external_lex_state = 9}, - [1547] = {.lex_state = 39, .external_lex_state = 9}, - [1548] = {.lex_state = 39, .external_lex_state = 11}, - [1549] = {.lex_state = 39, .external_lex_state = 8}, - [1550] = {.lex_state = 39, .external_lex_state = 9}, - [1551] = {.lex_state = 3, .external_lex_state = 10}, - [1552] = {.lex_state = 3, .external_lex_state = 10}, - [1553] = {.lex_state = 39, .external_lex_state = 11}, - [1554] = {.lex_state = 3, .external_lex_state = 10}, - [1555] = {.lex_state = 3, .external_lex_state = 10}, - [1556] = {.lex_state = 3, .external_lex_state = 10}, - [1557] = {.lex_state = 3, .external_lex_state = 10}, - [1558] = {.lex_state = 39, .external_lex_state = 9}, - [1559] = {.lex_state = 3, .external_lex_state = 10}, - [1560] = {.lex_state = 39, .external_lex_state = 9}, - [1561] = {.lex_state = 3, .external_lex_state = 10}, - [1562] = {.lex_state = 3, .external_lex_state = 10}, - [1563] = {.lex_state = 39, .external_lex_state = 8}, - [1564] = {.lex_state = 39, .external_lex_state = 9}, - [1565] = {.lex_state = 39, .external_lex_state = 9}, - [1566] = {.lex_state = 3, .external_lex_state = 10}, - [1567] = {.lex_state = 39, .external_lex_state = 8}, - [1568] = {.lex_state = 39, .external_lex_state = 8}, - [1569] = {.lex_state = 3, .external_lex_state = 10}, - [1570] = {.lex_state = 39, .external_lex_state = 9}, - [1571] = {.lex_state = 39, .external_lex_state = 8}, - [1572] = {.lex_state = 39, .external_lex_state = 11}, - [1573] = {.lex_state = 3, .external_lex_state = 10}, - [1574] = {.lex_state = 3, .external_lex_state = 10}, - [1575] = {.lex_state = 39, .external_lex_state = 11}, - [1576] = {.lex_state = 39, .external_lex_state = 11}, - [1577] = {.lex_state = 39, .external_lex_state = 11}, - [1578] = {.lex_state = 39, .external_lex_state = 11}, - [1579] = {.lex_state = 39, .external_lex_state = 11}, - [1580] = {.lex_state = 39, .external_lex_state = 11}, - [1581] = {.lex_state = 39, .external_lex_state = 11}, - [1582] = {.lex_state = 39, .external_lex_state = 8}, - [1583] = {.lex_state = 3, .external_lex_state = 10}, - [1584] = {.lex_state = 39, .external_lex_state = 8}, - [1585] = {.lex_state = 3, .external_lex_state = 10}, - [1586] = {.lex_state = 3, .external_lex_state = 10}, - [1587] = {.lex_state = 39, .external_lex_state = 9}, - [1588] = {.lex_state = 3, .external_lex_state = 10}, - [1589] = {.lex_state = 39, .external_lex_state = 11}, - [1590] = {.lex_state = 39, .external_lex_state = 8}, - [1591] = {.lex_state = 3, .external_lex_state = 10}, - [1592] = {.lex_state = 3, .external_lex_state = 10}, - [1593] = {.lex_state = 3, .external_lex_state = 10}, - [1594] = {.lex_state = 3, .external_lex_state = 10}, - [1595] = {.lex_state = 39, .external_lex_state = 11}, - [1596] = {.lex_state = 39, .external_lex_state = 8}, - [1597] = {.lex_state = 3, .external_lex_state = 10}, - [1598] = {.lex_state = 39, .external_lex_state = 8}, - [1599] = {.lex_state = 39, .external_lex_state = 9}, - [1600] = {.lex_state = 39, .external_lex_state = 8}, - [1601] = {.lex_state = 39, .external_lex_state = 11}, - [1602] = {.lex_state = 39, .external_lex_state = 8}, - [1603] = {.lex_state = 3, .external_lex_state = 10}, - [1604] = {.lex_state = 3, .external_lex_state = 10}, - [1605] = {.lex_state = 3, .external_lex_state = 10}, - [1606] = {.lex_state = 3, .external_lex_state = 10}, - [1607] = {.lex_state = 3, .external_lex_state = 10}, - [1608] = {.lex_state = 3, .external_lex_state = 10}, - [1609] = {.lex_state = 3, .external_lex_state = 10}, - [1610] = {.lex_state = 39, .external_lex_state = 8}, - [1611] = {.lex_state = 39, .external_lex_state = 8}, - [1612] = {.lex_state = 39, .external_lex_state = 11}, - [1613] = {.lex_state = 3, .external_lex_state = 10}, - [1614] = {.lex_state = 39, .external_lex_state = 8}, - [1615] = {.lex_state = 39, .external_lex_state = 9}, - [1616] = {.lex_state = 3, .external_lex_state = 10}, - [1617] = {.lex_state = 39, .external_lex_state = 11}, - [1618] = {.lex_state = 3, .external_lex_state = 10}, - [1619] = {.lex_state = 39, .external_lex_state = 11}, - [1620] = {.lex_state = 39, .external_lex_state = 11}, - [1621] = {.lex_state = 3, .external_lex_state = 10}, - [1622] = {.lex_state = 39, .external_lex_state = 8}, - [1623] = {.lex_state = 39, .external_lex_state = 9}, - [1624] = {.lex_state = 3, .external_lex_state = 10}, - [1625] = {.lex_state = 3, .external_lex_state = 10}, - [1626] = {.lex_state = 39, .external_lex_state = 8}, - [1627] = {.lex_state = 3, .external_lex_state = 10}, - [1628] = {.lex_state = 3, .external_lex_state = 10}, - [1629] = {.lex_state = 3, .external_lex_state = 10}, - [1630] = {.lex_state = 39, .external_lex_state = 8}, - [1631] = {.lex_state = 39, .external_lex_state = 9}, - [1632] = {.lex_state = 3, .external_lex_state = 10}, - [1633] = {.lex_state = 39, .external_lex_state = 11}, - [1634] = {.lex_state = 3, .external_lex_state = 10}, - [1635] = {.lex_state = 39, .external_lex_state = 12}, + [1460] = {.lex_state = 39, .external_lex_state = 2}, + [1461] = {.lex_state = 39, .external_lex_state = 2}, + [1462] = {.lex_state = 39, .external_lex_state = 2}, + [1463] = {.lex_state = 39, .external_lex_state = 2}, + [1464] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [1473] = {.lex_state = 39, .external_lex_state = 2}, + [1474] = {.lex_state = 39, .external_lex_state = 4}, + [1475] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [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}, + [1486] = {.lex_state = 39, .external_lex_state = 4}, + [1487] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [1526] = {.lex_state = 39, .external_lex_state = 2}, + [1527] = {.lex_state = 39, .external_lex_state = 2}, + [1528] = {.lex_state = 39, .external_lex_state = 2}, + [1529] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [1541] = {.lex_state = 39, .external_lex_state = 2}, + [1542] = {.lex_state = 39, .external_lex_state = 2}, + [1543] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [1564] = {.lex_state = 39, .external_lex_state = 5}, + [1565] = {.lex_state = 39, .external_lex_state = 2}, + [1566] = {.lex_state = 39, .external_lex_state = 2}, + [1567] = {.lex_state = 39, .external_lex_state = 2}, + [1568] = {.lex_state = 39, .external_lex_state = 3}, + [1569] = {.lex_state = 39, .external_lex_state = 2}, + [1570] = {.lex_state = 39, .external_lex_state = 2}, + [1571] = {.lex_state = 39, .external_lex_state = 2}, + [1572] = {.lex_state = 39, .external_lex_state = 2}, + [1573] = {.lex_state = 39, .external_lex_state = 3}, + [1574] = {.lex_state = 39, .external_lex_state = 3}, + [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}, + [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}, + [1585] = {.lex_state = 39, .external_lex_state = 2}, + [1586] = {.lex_state = 39, .external_lex_state = 2}, + [1587] = {.lex_state = 39, .external_lex_state = 2}, + [1588] = {.lex_state = 39, .external_lex_state = 2}, + [1589] = {.lex_state = 39, .external_lex_state = 2}, + [1590] = {.lex_state = 39, .external_lex_state = 2}, + [1591] = {.lex_state = 39, .external_lex_state = 2}, + [1592] = {.lex_state = 39, .external_lex_state = 2}, + [1593] = {.lex_state = 39, .external_lex_state = 2}, + [1594] = {.lex_state = 39, .external_lex_state = 2}, + [1595] = {.lex_state = 39, .external_lex_state = 2}, + [1596] = {.lex_state = 39, .external_lex_state = 2}, + [1597] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [1608] = {.lex_state = 39, .external_lex_state = 2}, + [1609] = {.lex_state = 39, .external_lex_state = 3}, + [1610] = {.lex_state = 39, .external_lex_state = 2}, + [1611] = {.lex_state = 39, .external_lex_state = 3}, + [1612] = {.lex_state = 39, .external_lex_state = 2}, + [1613] = {.lex_state = 39, .external_lex_state = 2}, + [1614] = {.lex_state = 39, .external_lex_state = 3}, + [1615] = {.lex_state = 39, .external_lex_state = 2}, + [1616] = {.lex_state = 39, .external_lex_state = 2}, + [1617] = {.lex_state = 39, .external_lex_state = 5}, + [1618] = {.lex_state = 39, .external_lex_state = 2}, + [1619] = {.lex_state = 39, .external_lex_state = 2}, + [1620] = {.lex_state = 39, .external_lex_state = 5}, + [1621] = {.lex_state = 39, .external_lex_state = 2}, + [1622] = {.lex_state = 39, .external_lex_state = 5}, + [1623] = {.lex_state = 39, .external_lex_state = 2}, + [1624] = {.lex_state = 39, .external_lex_state = 2}, + [1625] = {.lex_state = 39, .external_lex_state = 2}, + [1626] = {.lex_state = 39, .external_lex_state = 2}, + [1627] = {.lex_state = 39, .external_lex_state = 2}, + [1628] = {.lex_state = 39, .external_lex_state = 5}, + [1629] = {.lex_state = 39, .external_lex_state = 2}, + [1630] = {.lex_state = 39, .external_lex_state = 2}, + [1631] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 11}, - [1638] = {.lex_state = 39, .external_lex_state = 11}, - [1639] = {.lex_state = 39, .external_lex_state = 11}, - [1640] = {.lex_state = 39, .external_lex_state = 3}, - [1641] = {.lex_state = 39, .external_lex_state = 11}, - [1642] = {.lex_state = 39, .external_lex_state = 8}, - [1643] = {.lex_state = 3, .external_lex_state = 10}, - [1644] = {.lex_state = 39, .external_lex_state = 11}, - [1645] = {.lex_state = 39, .external_lex_state = 8}, - [1646] = {.lex_state = 3, .external_lex_state = 10}, - [1647] = {.lex_state = 39, .external_lex_state = 9}, - [1648] = {.lex_state = 39, .external_lex_state = 8}, - [1649] = {.lex_state = 39, .external_lex_state = 11}, - [1650] = {.lex_state = 39, .external_lex_state = 3}, - [1651] = {.lex_state = 39, .external_lex_state = 11}, - [1652] = {.lex_state = 39, .external_lex_state = 3}, - [1653] = {.lex_state = 39, .external_lex_state = 8}, - [1654] = {.lex_state = 39, .external_lex_state = 8}, - [1655] = {.lex_state = 39, .external_lex_state = 11}, - [1656] = {.lex_state = 3, .external_lex_state = 10}, - [1657] = {.lex_state = 39, .external_lex_state = 11}, - [1658] = {.lex_state = 39, .external_lex_state = 8}, - [1659] = {.lex_state = 39, .external_lex_state = 8}, - [1660] = {.lex_state = 39, .external_lex_state = 9}, - [1661] = {.lex_state = 39, .external_lex_state = 9}, - [1662] = {.lex_state = 39, .external_lex_state = 3}, - [1663] = {.lex_state = 39, .external_lex_state = 10}, - [1664] = {.lex_state = 39, .external_lex_state = 11}, - [1665] = {.lex_state = 39, .external_lex_state = 11}, - [1666] = {.lex_state = 39, .external_lex_state = 11}, - [1667] = {.lex_state = 39, .external_lex_state = 12}, - [1668] = {.lex_state = 39, .external_lex_state = 11}, - [1669] = {.lex_state = 39, .external_lex_state = 3}, - [1670] = {.lex_state = 39, .external_lex_state = 3}, - [1671] = {.lex_state = 39, .external_lex_state = 8}, - [1672] = {.lex_state = 3, .external_lex_state = 10}, - [1673] = {.lex_state = 39, .external_lex_state = 11}, - [1674] = {.lex_state = 39, .external_lex_state = 3}, - [1675] = {.lex_state = 39, .external_lex_state = 11}, - [1676] = {.lex_state = 39, .external_lex_state = 11}, - [1677] = {.lex_state = 39, .external_lex_state = 3}, - [1678] = {.lex_state = 39, .external_lex_state = 3}, + [1637] = {.lex_state = 39, .external_lex_state = 2}, + [1638] = {.lex_state = 39, .external_lex_state = 5}, + [1639] = {.lex_state = 39, .external_lex_state = 2}, + [1640] = {.lex_state = 39, .external_lex_state = 2}, + [1641] = {.lex_state = 39, .external_lex_state = 2}, + [1642] = {.lex_state = 39, .external_lex_state = 2}, + [1643] = {.lex_state = 39, .external_lex_state = 2}, + [1644] = {.lex_state = 39, .external_lex_state = 2}, + [1645] = {.lex_state = 39, .external_lex_state = 2}, + [1646] = {.lex_state = 39, .external_lex_state = 2}, + [1647] = {.lex_state = 39, .external_lex_state = 2}, + [1648] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [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}, + [1660] = {.lex_state = 39, .external_lex_state = 2}, + [1661] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [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}, + [1670] = {.lex_state = 39, .external_lex_state = 2}, + [1671] = {.lex_state = 39, .external_lex_state = 2}, + [1672] = {.lex_state = 39, .external_lex_state = 2}, + [1673] = {.lex_state = 39, .external_lex_state = 2}, + [1674] = {.lex_state = 39, .external_lex_state = 2}, + [1675] = {.lex_state = 39, .external_lex_state = 2}, + [1676] = {.lex_state = 39, .external_lex_state = 2}, + [1677] = {.lex_state = 39, .external_lex_state = 2}, + [1678] = {.lex_state = 39, .external_lex_state = 2}, [1679] = {.lex_state = 39, .external_lex_state = 2}, - [1680] = {.lex_state = 39, .external_lex_state = 11}, - [1681] = {.lex_state = 39, .external_lex_state = 12}, - [1682] = {.lex_state = 39, .external_lex_state = 11}, + [1680] = {.lex_state = 39, .external_lex_state = 2}, + [1681] = {.lex_state = 39, .external_lex_state = 2}, + [1682] = {.lex_state = 39, .external_lex_state = 2}, [1683] = {.lex_state = 39, .external_lex_state = 2}, [1684] = {.lex_state = 39, .external_lex_state = 2}, - [1685] = {.lex_state = 39, .external_lex_state = 8}, - [1686] = {.lex_state = 39, .external_lex_state = 11}, - [1687] = {.lex_state = 39, .external_lex_state = 3}, - [1688] = {.lex_state = 39, .external_lex_state = 11}, + [1685] = {.lex_state = 39, .external_lex_state = 2}, + [1686] = {.lex_state = 39, .external_lex_state = 2}, + [1687] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 3, .external_lex_state = 10}, - [1692] = {.lex_state = 39, .external_lex_state = 9}, + [1691] = {.lex_state = 39, .external_lex_state = 2}, + [1692] = {.lex_state = 39, .external_lex_state = 4}, [1693] = {.lex_state = 39, .external_lex_state = 2}, - [1694] = {.lex_state = 39, .external_lex_state = 3}, + [1694] = {.lex_state = 39, .external_lex_state = 2}, [1695] = {.lex_state = 39, .external_lex_state = 2}, [1696] = {.lex_state = 39, .external_lex_state = 2}, - [1697] = {.lex_state = 3, .external_lex_state = 10}, + [1697] = {.lex_state = 39, .external_lex_state = 2}, [1698] = {.lex_state = 39, .external_lex_state = 2}, - [1699] = {.lex_state = 39, .external_lex_state = 3}, - [1700] = {.lex_state = 39, .external_lex_state = 3}, + [1699] = {.lex_state = 39, .external_lex_state = 2}, + [1700] = {.lex_state = 39, .external_lex_state = 4}, [1701] = {.lex_state = 39, .external_lex_state = 2}, - [1702] = {.lex_state = 39, .external_lex_state = 12}, + [1702] = {.lex_state = 39, .external_lex_state = 2}, [1703] = {.lex_state = 39, .external_lex_state = 2}, - [1704] = {.lex_state = 39, .external_lex_state = 3}, - [1705] = {.lex_state = 39, .external_lex_state = 11}, + [1704] = {.lex_state = 39, .external_lex_state = 4}, + [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 = 11}, - [1710] = {.lex_state = 39, .external_lex_state = 9}, - [1711] = {.lex_state = 39, .external_lex_state = 8}, - [1712] = {.lex_state = 39, .external_lex_state = 11}, - [1713] = {.lex_state = 39, .external_lex_state = 3}, + [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}, [1714] = {.lex_state = 39, .external_lex_state = 2}, - [1715] = {.lex_state = 39, .external_lex_state = 3}, - [1716] = {.lex_state = 39, .external_lex_state = 12}, - [1717] = {.lex_state = 39, .external_lex_state = 12}, - [1718] = {.lex_state = 39, .external_lex_state = 12}, - [1719] = {.lex_state = 39, .external_lex_state = 8}, - [1720] = {.lex_state = 39, .external_lex_state = 8}, - [1721] = {.lex_state = 39, .external_lex_state = 9}, - [1722] = {.lex_state = 39, .external_lex_state = 3}, - [1723] = {.lex_state = 39, .external_lex_state = 3}, - [1724] = {.lex_state = 39, .external_lex_state = 8}, - [1725] = {.lex_state = 39, .external_lex_state = 11}, - [1726] = {.lex_state = 39, .external_lex_state = 8}, + [1715] = {.lex_state = 39, .external_lex_state = 2}, + [1716] = {.lex_state = 39, .external_lex_state = 2}, + [1717] = {.lex_state = 39, .external_lex_state = 2}, + [1718] = {.lex_state = 39, .external_lex_state = 2}, + [1719] = {.lex_state = 39, .external_lex_state = 2}, + [1720] = {.lex_state = 39, .external_lex_state = 2}, + [1721] = {.lex_state = 39, .external_lex_state = 2}, + [1722] = {.lex_state = 39, .external_lex_state = 2}, + [1723] = {.lex_state = 39, .external_lex_state = 2}, + [1724] = {.lex_state = 39, .external_lex_state = 2}, + [1725] = {.lex_state = 39, .external_lex_state = 2}, + [1726] = {.lex_state = 39, .external_lex_state = 2}, [1727] = {.lex_state = 39, .external_lex_state = 2}, - [1728] = {.lex_state = 39, .external_lex_state = 11}, + [1728] = {.lex_state = 39, .external_lex_state = 2}, [1729] = {.lex_state = 39, .external_lex_state = 2}, - [1730] = {.lex_state = 39, .external_lex_state = 11}, - [1731] = {.lex_state = 39, .external_lex_state = 9}, - [1732] = {.lex_state = 39, .external_lex_state = 11}, - [1733] = {.lex_state = 39, .external_lex_state = 3}, - [1734] = {.lex_state = 39, .external_lex_state = 3}, - [1735] = {.lex_state = 39, .external_lex_state = 11}, - [1736] = {.lex_state = 39, .external_lex_state = 9}, - [1737] = {.lex_state = 39, .external_lex_state = 11}, - [1738] = {.lex_state = 39, .external_lex_state = 8}, - [1739] = {.lex_state = 39, .external_lex_state = 12}, - [1740] = {.lex_state = 39, .external_lex_state = 12}, - [1741] = {.lex_state = 39, .external_lex_state = 8}, - [1742] = {.lex_state = 39, .external_lex_state = 8}, - [1743] = {.lex_state = 39, .external_lex_state = 11}, - [1744] = {.lex_state = 39, .external_lex_state = 11}, - [1745] = {.lex_state = 3, .external_lex_state = 10}, - [1746] = {.lex_state = 39, .external_lex_state = 11}, - [1747] = {.lex_state = 39, .external_lex_state = 11}, - [1748] = {.lex_state = 39, .external_lex_state = 8}, + [1730] = {.lex_state = 39, .external_lex_state = 2}, + [1731] = {.lex_state = 39, .external_lex_state = 2}, + [1732] = {.lex_state = 39, .external_lex_state = 2}, + [1733] = {.lex_state = 39, .external_lex_state = 2}, + [1734] = {.lex_state = 39, .external_lex_state = 2}, + [1735] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1742] = {.lex_state = 39, .external_lex_state = 2}, + [1743] = {.lex_state = 39, .external_lex_state = 2}, + [1744] = {.lex_state = 39, .external_lex_state = 2}, + [1745] = {.lex_state = 39, .external_lex_state = 2}, + [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}, [1750] = {.lex_state = 39, .external_lex_state = 2}, [1751] = {.lex_state = 39, .external_lex_state = 2}, [1752] = {.lex_state = 39, .external_lex_state = 2}, - [1753] = {.lex_state = 39, .external_lex_state = 8}, - [1754] = {.lex_state = 39, .external_lex_state = 8}, - [1755] = {.lex_state = 39, .external_lex_state = 12}, - [1756] = {.lex_state = 39, .external_lex_state = 3}, - [1757] = {.lex_state = 39, .external_lex_state = 12}, - [1758] = {.lex_state = 39, .external_lex_state = 3}, - [1759] = {.lex_state = 39, .external_lex_state = 11}, - [1760] = {.lex_state = 39, .external_lex_state = 12}, - [1761] = {.lex_state = 39, .external_lex_state = 12}, - [1762] = {.lex_state = 3, .external_lex_state = 10}, - [1763] = {.lex_state = 39, .external_lex_state = 12}, - [1764] = {.lex_state = 3, .external_lex_state = 10}, - [1765] = {.lex_state = 39, .external_lex_state = 12}, - [1766] = {.lex_state = 39, .external_lex_state = 12}, - [1767] = {.lex_state = 39, .external_lex_state = 12}, + [1753] = {.lex_state = 39, .external_lex_state = 2}, + [1754] = {.lex_state = 39, .external_lex_state = 2}, + [1755] = {.lex_state = 39, .external_lex_state = 2}, + [1756] = {.lex_state = 39, .external_lex_state = 2}, + [1757] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [1767] = {.lex_state = 39, .external_lex_state = 2}, [1768] = {.lex_state = 39, .external_lex_state = 2}, - [1769] = {.lex_state = 3, .external_lex_state = 10}, - [1770] = {.lex_state = 3, .external_lex_state = 10}, + [1769] = {.lex_state = 39, .external_lex_state = 2}, + [1770] = {.lex_state = 39, .external_lex_state = 2}, [1771] = {.lex_state = 39, .external_lex_state = 2}, - [1772] = {.lex_state = 39, .external_lex_state = 9}, - [1773] = {.lex_state = 39, .external_lex_state = 12}, - [1774] = {.lex_state = 39, .external_lex_state = 12}, - [1775] = {.lex_state = 39, .external_lex_state = 11}, - [1776] = {.lex_state = 39, .external_lex_state = 12}, - [1777] = {.lex_state = 39, .external_lex_state = 3}, - [1778] = {.lex_state = 39, .external_lex_state = 8}, - [1779] = {.lex_state = 39, .external_lex_state = 12}, - [1780] = {.lex_state = 3, .external_lex_state = 10}, - [1781] = {.lex_state = 39, .external_lex_state = 8}, - [1782] = {.lex_state = 39, .external_lex_state = 12}, - [1783] = {.lex_state = 39, .external_lex_state = 9}, - [1784] = {.lex_state = 39, .external_lex_state = 12}, - [1785] = {.lex_state = 39, .external_lex_state = 12}, - [1786] = {.lex_state = 39, .external_lex_state = 9}, - [1787] = {.lex_state = 39, .external_lex_state = 11}, - [1788] = {.lex_state = 3, .external_lex_state = 10}, - [1789] = {.lex_state = 39, .external_lex_state = 12}, - [1790] = {.lex_state = 39, .external_lex_state = 11}, - [1791] = {.lex_state = 39, .external_lex_state = 12}, - [1792] = {.lex_state = 39, .external_lex_state = 12}, - [1793] = {.lex_state = 39, .external_lex_state = 12}, - [1794] = {.lex_state = 39, .external_lex_state = 12}, - [1795] = {.lex_state = 39, .external_lex_state = 3}, - [1796] = {.lex_state = 39, .external_lex_state = 11}, - [1797] = {.lex_state = 39, .external_lex_state = 11}, - [1798] = {.lex_state = 39, .external_lex_state = 3}, - [1799] = {.lex_state = 39, .external_lex_state = 11}, - [1800] = {.lex_state = 39, .external_lex_state = 3}, - [1801] = {.lex_state = 3, .external_lex_state = 10}, - [1802] = {.lex_state = 3, .external_lex_state = 10}, - [1803] = {.lex_state = 39, .external_lex_state = 12}, - [1804] = {.lex_state = 39, .external_lex_state = 8}, - [1805] = {.lex_state = 39, .external_lex_state = 11}, - [1806] = {.lex_state = 39, .external_lex_state = 9}, - [1807] = {.lex_state = 3, .external_lex_state = 10}, - [1808] = {.lex_state = 39, .external_lex_state = 9}, - [1809] = {.lex_state = 39, .external_lex_state = 12}, - [1810] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [1776] = {.lex_state = 39, .external_lex_state = 2}, + [1777] = {.lex_state = 39, .external_lex_state = 4}, + [1778] = {.lex_state = 39, .external_lex_state = 2}, + [1779] = {.lex_state = 39, .external_lex_state = 2}, + [1780] = {.lex_state = 39, .external_lex_state = 2}, + [1781] = {.lex_state = 39, .external_lex_state = 2}, + [1782] = {.lex_state = 39, .external_lex_state = 2}, + [1783] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1788] = {.lex_state = 39, .external_lex_state = 2}, + [1789] = {.lex_state = 39, .external_lex_state = 2}, + [1790] = {.lex_state = 39, .external_lex_state = 2}, + [1791] = {.lex_state = 39, .external_lex_state = 2}, + [1792] = {.lex_state = 39, .external_lex_state = 2}, + [1793] = {.lex_state = 39, .external_lex_state = 2}, + [1794] = {.lex_state = 39, .external_lex_state = 2}, + [1795] = {.lex_state = 39, .external_lex_state = 2}, + [1796] = {.lex_state = 39, .external_lex_state = 2}, + [1797] = {.lex_state = 39, .external_lex_state = 2}, + [1798] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1803] = {.lex_state = 39, .external_lex_state = 2}, + [1804] = {.lex_state = 39, .external_lex_state = 2}, + [1805] = {.lex_state = 39, .external_lex_state = 2}, + [1806] = {.lex_state = 39, .external_lex_state = 2}, + [1807] = {.lex_state = 39, .external_lex_state = 2}, + [1808] = {.lex_state = 39, .external_lex_state = 2}, + [1809] = {.lex_state = 39, .external_lex_state = 2}, + [1810] = {.lex_state = 39, .external_lex_state = 2}, [1811] = {.lex_state = 39, .external_lex_state = 2}, - [1812] = {.lex_state = 3, .external_lex_state = 10}, - [1813] = {.lex_state = 39, .external_lex_state = 11}, - [1814] = {.lex_state = 39, .external_lex_state = 11}, - [1815] = {.lex_state = 39, .external_lex_state = 11}, - [1816] = {.lex_state = 39, .external_lex_state = 12}, - [1817] = {.lex_state = 39, .external_lex_state = 12}, - [1818] = {.lex_state = 39, .external_lex_state = 11}, - [1819] = {.lex_state = 3, .external_lex_state = 10}, - [1820] = {.lex_state = 3, .external_lex_state = 10}, - [1821] = {.lex_state = 3, .external_lex_state = 10}, - [1822] = {.lex_state = 3, .external_lex_state = 10}, - [1823] = {.lex_state = 39, .external_lex_state = 12}, + [1812] = {.lex_state = 39, .external_lex_state = 2}, + [1813] = {.lex_state = 39, .external_lex_state = 2}, + [1814] = {.lex_state = 39, .external_lex_state = 2}, + [1815] = {.lex_state = 39, .external_lex_state = 2}, + [1816] = {.lex_state = 39, .external_lex_state = 2}, + [1817] = {.lex_state = 39, .external_lex_state = 2}, + [1818] = {.lex_state = 39, .external_lex_state = 2}, + [1819] = {.lex_state = 39, .external_lex_state = 2}, + [1820] = {.lex_state = 39, .external_lex_state = 2}, + [1821] = {.lex_state = 39, .external_lex_state = 2}, + [1822] = {.lex_state = 39, .external_lex_state = 2}, + [1823] = {.lex_state = 39, .external_lex_state = 2}, [1824] = {.lex_state = 39, .external_lex_state = 2}, - [1825] = {.lex_state = 39, .external_lex_state = 11}, - [1826] = {.lex_state = 39, .external_lex_state = 11}, + [1825] = {.lex_state = 39, .external_lex_state = 2}, + [1826] = {.lex_state = 39, .external_lex_state = 2}, [1827] = {.lex_state = 39, .external_lex_state = 2}, - [1828] = {.lex_state = 39, .external_lex_state = 12}, - [1829] = {.lex_state = 39, .external_lex_state = 8}, - [1830] = {.lex_state = 39, .external_lex_state = 8}, - [1831] = {.lex_state = 39, .external_lex_state = 8}, - [1832] = {.lex_state = 39, .external_lex_state = 12}, - [1833] = {.lex_state = 39, .external_lex_state = 3}, - [1834] = {.lex_state = 39, .external_lex_state = 12}, - [1835] = {.lex_state = 39, .external_lex_state = 11}, - [1836] = {.lex_state = 3, .external_lex_state = 10}, - [1837] = {.lex_state = 3, .external_lex_state = 10}, - [1838] = {.lex_state = 3, .external_lex_state = 10}, - [1839] = {.lex_state = 39, .external_lex_state = 12}, - [1840] = {.lex_state = 39, .external_lex_state = 11}, - [1841] = {.lex_state = 3, .external_lex_state = 10}, - [1842] = {.lex_state = 3, .external_lex_state = 10}, - [1843] = {.lex_state = 39, .external_lex_state = 12}, - [1844] = {.lex_state = 3, .external_lex_state = 10}, - [1845] = {.lex_state = 39, .external_lex_state = 12}, - [1846] = {.lex_state = 39, .external_lex_state = 11}, - [1847] = {.lex_state = 39, .external_lex_state = 8}, - [1848] = {.lex_state = 39, .external_lex_state = 12}, - [1849] = {.lex_state = 39, .external_lex_state = 8}, - [1850] = {.lex_state = 39, .external_lex_state = 8}, - [1851] = {.lex_state = 39, .external_lex_state = 12}, - [1852] = {.lex_state = 39, .external_lex_state = 12}, - [1853] = {.lex_state = 3, .external_lex_state = 10}, - [1854] = {.lex_state = 3, .external_lex_state = 10}, - [1855] = {.lex_state = 39, .external_lex_state = 12}, - [1856] = {.lex_state = 39, .external_lex_state = 9}, - [1857] = {.lex_state = 3, .external_lex_state = 10}, - [1858] = {.lex_state = 39, .external_lex_state = 8}, - [1859] = {.lex_state = 3, .external_lex_state = 10}, - [1860] = {.lex_state = 3, .external_lex_state = 10}, - [1861] = {.lex_state = 3, .external_lex_state = 10}, - [1862] = {.lex_state = 3, .external_lex_state = 10}, - [1863] = {.lex_state = 3, .external_lex_state = 10}, - [1864] = {.lex_state = 39, .external_lex_state = 12}, - [1865] = {.lex_state = 3, .external_lex_state = 10}, - [1866] = {.lex_state = 39, .external_lex_state = 12}, - [1867] = {.lex_state = 39, .external_lex_state = 8}, - [1868] = {.lex_state = 39, .external_lex_state = 8}, - [1869] = {.lex_state = 3, .external_lex_state = 10}, - [1870] = {.lex_state = 39, .external_lex_state = 8}, - [1871] = {.lex_state = 39, .external_lex_state = 12}, - [1872] = {.lex_state = 39, .external_lex_state = 8}, - [1873] = {.lex_state = 3, .external_lex_state = 10}, - [1874] = {.lex_state = 3, .external_lex_state = 10}, - [1875] = {.lex_state = 39, .external_lex_state = 12}, - [1876] = {.lex_state = 39, .external_lex_state = 8}, - [1877] = {.lex_state = 3, .external_lex_state = 10}, - [1878] = {.lex_state = 3, .external_lex_state = 10}, - [1879] = {.lex_state = 39, .external_lex_state = 8}, - [1880] = {.lex_state = 3, .external_lex_state = 10}, - [1881] = {.lex_state = 39, .external_lex_state = 12}, - [1882] = {.lex_state = 39, .external_lex_state = 12}, - [1883] = {.lex_state = 39, .external_lex_state = 8}, - [1884] = {.lex_state = 39, .external_lex_state = 12}, - [1885] = {.lex_state = 39, .external_lex_state = 12}, - [1886] = {.lex_state = 39, .external_lex_state = 12}, - [1887] = {.lex_state = 3, .external_lex_state = 10}, - [1888] = {.lex_state = 39, .external_lex_state = 8}, - [1889] = {.lex_state = 39, .external_lex_state = 12}, - [1890] = {.lex_state = 3, .external_lex_state = 10}, - [1891] = {.lex_state = 39, .external_lex_state = 9}, - [1892] = {.lex_state = 39, .external_lex_state = 8}, - [1893] = {.lex_state = 39, .external_lex_state = 12}, - [1894] = {.lex_state = 39, .external_lex_state = 8}, - [1895] = {.lex_state = 39, .external_lex_state = 12}, - [1896] = {.lex_state = 39, .external_lex_state = 8}, - [1897] = {.lex_state = 3, .external_lex_state = 10}, - [1898] = {.lex_state = 39, .external_lex_state = 12}, - [1899] = {.lex_state = 39, .external_lex_state = 8}, - [1900] = {.lex_state = 39, .external_lex_state = 12}, - [1901] = {.lex_state = 39, .external_lex_state = 12}, - [1902] = {.lex_state = 39, .external_lex_state = 12}, - [1903] = {.lex_state = 39, .external_lex_state = 8}, - [1904] = {.lex_state = 3, .external_lex_state = 10}, - [1905] = {.lex_state = 39, .external_lex_state = 8}, - [1906] = {.lex_state = 39, .external_lex_state = 8}, - [1907] = {.lex_state = 3, .external_lex_state = 10}, - [1908] = {.lex_state = 3, .external_lex_state = 10}, - [1909] = {.lex_state = 39, .external_lex_state = 8}, - [1910] = {.lex_state = 39, .external_lex_state = 12}, - [1911] = {.lex_state = 3, .external_lex_state = 10}, - [1912] = {.lex_state = 3, .external_lex_state = 10}, - [1913] = {.lex_state = 3, .external_lex_state = 10}, - [1914] = {.lex_state = 39, .external_lex_state = 8}, - [1915] = {.lex_state = 39, .external_lex_state = 12}, - [1916] = {.lex_state = 39, .external_lex_state = 8}, - [1917] = {.lex_state = 39, .external_lex_state = 8}, - [1918] = {.lex_state = 39, .external_lex_state = 8}, - [1919] = {.lex_state = 3, .external_lex_state = 10}, - [1920] = {.lex_state = 39, .external_lex_state = 8}, - [1921] = {.lex_state = 39, .external_lex_state = 8}, - [1922] = {.lex_state = 39, .external_lex_state = 8}, - [1923] = {.lex_state = 39, .external_lex_state = 8}, - [1924] = {.lex_state = 39, .external_lex_state = 9}, - [1925] = {.lex_state = 3, .external_lex_state = 10}, - [1926] = {.lex_state = 39, .external_lex_state = 8}, - [1927] = {.lex_state = 39, .external_lex_state = 8}, - [1928] = {.lex_state = 39, .external_lex_state = 8}, - [1929] = {.lex_state = 3, .external_lex_state = 10}, - [1930] = {.lex_state = 39, .external_lex_state = 8}, - [1931] = {.lex_state = 39, .external_lex_state = 8}, - [1932] = {.lex_state = 39, .external_lex_state = 8}, - [1933] = {.lex_state = 39, .external_lex_state = 8}, - [1934] = {.lex_state = 3, .external_lex_state = 10}, - [1935] = {.lex_state = 39, .external_lex_state = 8}, - [1936] = {.lex_state = 39, .external_lex_state = 8}, - [1937] = {.lex_state = 39, .external_lex_state = 12}, - [1938] = {.lex_state = 39, .external_lex_state = 8}, - [1939] = {.lex_state = 39, .external_lex_state = 8}, - [1940] = {.lex_state = 39, .external_lex_state = 8}, - [1941] = {.lex_state = 3, .external_lex_state = 10}, - [1942] = {.lex_state = 39, .external_lex_state = 8}, - [1943] = {.lex_state = 3, .external_lex_state = 10}, - [1944] = {.lex_state = 3, .external_lex_state = 10}, - [1945] = {.lex_state = 3, .external_lex_state = 10}, - [1946] = {.lex_state = 3, .external_lex_state = 10}, - [1947] = {.lex_state = 3, .external_lex_state = 10}, - [1948] = {.lex_state = 3, .external_lex_state = 10}, - [1949] = {.lex_state = 3, .external_lex_state = 10}, - [1950] = {.lex_state = 39, .external_lex_state = 8}, - [1951] = {.lex_state = 39, .external_lex_state = 12}, - [1952] = {.lex_state = 3, .external_lex_state = 10}, - [1953] = {.lex_state = 3, .external_lex_state = 10}, - [1954] = {.lex_state = 3, .external_lex_state = 10}, - [1955] = {.lex_state = 39, .external_lex_state = 8}, - [1956] = {.lex_state = 39, .external_lex_state = 8}, - [1957] = {.lex_state = 3, .external_lex_state = 10}, - [1958] = {.lex_state = 3, .external_lex_state = 10}, - [1959] = {.lex_state = 3, .external_lex_state = 10}, - [1960] = {.lex_state = 39, .external_lex_state = 8}, - [1961] = {.lex_state = 39, .external_lex_state = 9}, - [1962] = {.lex_state = 3, .external_lex_state = 10}, - [1963] = {.lex_state = 39, .external_lex_state = 12}, - [1964] = {.lex_state = 39, .external_lex_state = 12}, - [1965] = {.lex_state = 3, .external_lex_state = 10}, - [1966] = {.lex_state = 39, .external_lex_state = 12}, - [1967] = {.lex_state = 39, .external_lex_state = 8}, - [1968] = {.lex_state = 39, .external_lex_state = 12}, - [1969] = {.lex_state = 39, .external_lex_state = 8}, - [1970] = {.lex_state = 39, .external_lex_state = 8}, - [1971] = {.lex_state = 3, .external_lex_state = 10}, - [1972] = {.lex_state = 3, .external_lex_state = 10}, - [1973] = {.lex_state = 39, .external_lex_state = 8}, - [1974] = {.lex_state = 39, .external_lex_state = 8}, - [1975] = {.lex_state = 3, .external_lex_state = 10}, - [1976] = {.lex_state = 3, .external_lex_state = 10}, - [1977] = {.lex_state = 3, .external_lex_state = 10}, - [1978] = {.lex_state = 39, .external_lex_state = 12}, - [1979] = {.lex_state = 39, .external_lex_state = 12}, - [1980] = {.lex_state = 39, .external_lex_state = 9}, - [1981] = {.lex_state = 39, .external_lex_state = 9}, - [1982] = {.lex_state = 39, .external_lex_state = 9}, - [1983] = {.lex_state = 39, .external_lex_state = 9}, - [1984] = {.lex_state = 39, .external_lex_state = 9}, - [1985] = {.lex_state = 39, .external_lex_state = 9}, - [1986] = {.lex_state = 39, .external_lex_state = 9}, - [1987] = {.lex_state = 39, .external_lex_state = 9}, - [1988] = {.lex_state = 39, .external_lex_state = 9}, - [1989] = {.lex_state = 39, .external_lex_state = 9}, - [1990] = {.lex_state = 39, .external_lex_state = 12}, - [1991] = {.lex_state = 39, .external_lex_state = 5}, - [1992] = {.lex_state = 39, .external_lex_state = 9}, - [1993] = {.lex_state = 39, .external_lex_state = 9}, - [1994] = {.lex_state = 39, .external_lex_state = 9}, - [1995] = {.lex_state = 39, .external_lex_state = 5}, - [1996] = {.lex_state = 39, .external_lex_state = 12}, - [1997] = {.lex_state = 39, .external_lex_state = 8}, - [1998] = {.lex_state = 39, .external_lex_state = 12}, - [1999] = {.lex_state = 39, .external_lex_state = 9}, - [2000] = {.lex_state = 39, .external_lex_state = 9}, - [2001] = {.lex_state = 39, .external_lex_state = 9}, - [2002] = {.lex_state = 39, .external_lex_state = 12}, - [2003] = {.lex_state = 39, .external_lex_state = 12}, - [2004] = {.lex_state = 39, .external_lex_state = 12}, - [2005] = {.lex_state = 39, .external_lex_state = 12}, - [2006] = {.lex_state = 39, .external_lex_state = 12}, - [2007] = {.lex_state = 39, .external_lex_state = 12}, - [2008] = {.lex_state = 39, .external_lex_state = 12}, - [2009] = {.lex_state = 39, .external_lex_state = 12}, - [2010] = {.lex_state = 39, .external_lex_state = 12}, - [2011] = {.lex_state = 39, .external_lex_state = 12}, - [2012] = {.lex_state = 39, .external_lex_state = 12}, - [2013] = {.lex_state = 39, .external_lex_state = 12}, - [2014] = {.lex_state = 39, .external_lex_state = 12}, - [2015] = {.lex_state = 39, .external_lex_state = 12}, - [2016] = {.lex_state = 39, .external_lex_state = 12}, - [2017] = {.lex_state = 39, .external_lex_state = 12}, - [2018] = {.lex_state = 39, .external_lex_state = 12}, - [2019] = {.lex_state = 39, .external_lex_state = 12}, - [2020] = {.lex_state = 39, .external_lex_state = 12}, - [2021] = {.lex_state = 39, .external_lex_state = 12}, - [2022] = {.lex_state = 39, .external_lex_state = 12}, - [2023] = {.lex_state = 39, .external_lex_state = 12}, - [2024] = {.lex_state = 39, .external_lex_state = 12}, - [2025] = {.lex_state = 39, .external_lex_state = 12}, - [2026] = {.lex_state = 39, .external_lex_state = 12}, - [2027] = {.lex_state = 39, .external_lex_state = 12}, - [2028] = {.lex_state = 39, .external_lex_state = 12}, - [2029] = {.lex_state = 39, .external_lex_state = 12}, - [2030] = {.lex_state = 39, .external_lex_state = 12}, - [2031] = {.lex_state = 39, .external_lex_state = 12}, - [2032] = {.lex_state = 39, .external_lex_state = 12}, - [2033] = {.lex_state = 39, .external_lex_state = 12}, - [2034] = {.lex_state = 39, .external_lex_state = 9}, - [2035] = {.lex_state = 39, .external_lex_state = 9}, - [2036] = {.lex_state = 39, .external_lex_state = 12}, - [2037] = {.lex_state = 39, .external_lex_state = 12}, - [2038] = {.lex_state = 39, .external_lex_state = 12}, - [2039] = {.lex_state = 39, .external_lex_state = 9}, - [2040] = {.lex_state = 39, .external_lex_state = 12}, - [2041] = {.lex_state = 39, .external_lex_state = 9}, - [2042] = {.lex_state = 39, .external_lex_state = 12}, - [2043] = {.lex_state = 39, .external_lex_state = 12}, - [2044] = {.lex_state = 39, .external_lex_state = 12}, - [2045] = {.lex_state = 39, .external_lex_state = 12}, - [2046] = {.lex_state = 39, .external_lex_state = 12}, - [2047] = {.lex_state = 39, .external_lex_state = 12}, - [2048] = {.lex_state = 39, .external_lex_state = 9}, - [2049] = {.lex_state = 39, .external_lex_state = 12}, - [2050] = {.lex_state = 39, .external_lex_state = 12}, - [2051] = {.lex_state = 39, .external_lex_state = 5}, - [2052] = {.lex_state = 39, .external_lex_state = 5}, - [2053] = {.lex_state = 39, .external_lex_state = 5}, - [2054] = {.lex_state = 39, .external_lex_state = 5}, + [1828] = {.lex_state = 39, .external_lex_state = 2}, + [1829] = {.lex_state = 39, .external_lex_state = 2}, + [1830] = {.lex_state = 39, .external_lex_state = 2}, + [1831] = {.lex_state = 39, .external_lex_state = 2}, + [1832] = {.lex_state = 39, .external_lex_state = 2}, + [1833] = {.lex_state = 39, .external_lex_state = 2}, + [1834] = {.lex_state = 39, .external_lex_state = 2}, + [1835] = {.lex_state = 39, .external_lex_state = 2}, + [1836] = {.lex_state = 39, .external_lex_state = 2}, + [1837] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1842] = {.lex_state = 39, .external_lex_state = 2}, + [1843] = {.lex_state = 39, .external_lex_state = 2}, + [1844] = {.lex_state = 39, .external_lex_state = 2}, + [1845] = {.lex_state = 39, .external_lex_state = 2}, + [1846] = {.lex_state = 39, .external_lex_state = 2}, + [1847] = {.lex_state = 39, .external_lex_state = 2}, + [1848] = {.lex_state = 39, .external_lex_state = 2}, + [1849] = {.lex_state = 39, .external_lex_state = 2}, + [1850] = {.lex_state = 39, .external_lex_state = 2}, + [1851] = {.lex_state = 39, .external_lex_state = 2}, + [1852] = {.lex_state = 39, .external_lex_state = 2}, + [1853] = {.lex_state = 39, .external_lex_state = 2}, + [1854] = {.lex_state = 39, .external_lex_state = 2}, + [1855] = {.lex_state = 39, .external_lex_state = 2}, + [1856] = {.lex_state = 39, .external_lex_state = 2}, + [1857] = {.lex_state = 39, .external_lex_state = 2}, + [1858] = {.lex_state = 39, .external_lex_state = 2}, + [1859] = {.lex_state = 39, .external_lex_state = 2}, + [1860] = {.lex_state = 39, .external_lex_state = 2}, + [1861] = {.lex_state = 39, .external_lex_state = 2}, + [1862] = {.lex_state = 39, .external_lex_state = 2}, + [1863] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [1868] = {.lex_state = 39, .external_lex_state = 2}, + [1869] = {.lex_state = 39, .external_lex_state = 2}, + [1870] = {.lex_state = 39, .external_lex_state = 2}, + [1871] = {.lex_state = 39, .external_lex_state = 2}, + [1872] = {.lex_state = 39, .external_lex_state = 2}, + [1873] = {.lex_state = 39, .external_lex_state = 2}, + [1874] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [1901] = {.lex_state = 39, .external_lex_state = 2}, + [1902] = {.lex_state = 39, .external_lex_state = 5}, + [1903] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [1911] = {.lex_state = 39, .external_lex_state = 2}, + [1912] = {.lex_state = 39, .external_lex_state = 4}, + [1913] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [2009] = {.lex_state = 39, .external_lex_state = 2}, + [2010] = {.lex_state = 39, .external_lex_state = 5}, + [2011] = {.lex_state = 39, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [2051] = {.lex_state = 39, .external_lex_state = 2}, + [2052] = {.lex_state = 39, .external_lex_state = 2}, + [2053] = {.lex_state = 39, .external_lex_state = 3}, + [2054] = {.lex_state = 39, .external_lex_state = 2}, [2055] = {.lex_state = 39, .external_lex_state = 5}, - [2056] = {.lex_state = 39, .external_lex_state = 9}, - [2057] = {.lex_state = 39, .external_lex_state = 9}, - [2058] = {.lex_state = 39, .external_lex_state = 8}, - [2059] = {.lex_state = 39, .external_lex_state = 9}, - [2060] = {.lex_state = 39, .external_lex_state = 9}, - [2061] = {.lex_state = 39, .external_lex_state = 9}, - [2062] = {.lex_state = 39, .external_lex_state = 9}, - [2063] = {.lex_state = 39, .external_lex_state = 9}, - [2064] = {.lex_state = 39, .external_lex_state = 9}, - [2065] = {.lex_state = 39, .external_lex_state = 9}, - [2066] = {.lex_state = 39, .external_lex_state = 9}, - [2067] = {.lex_state = 39, .external_lex_state = 5}, - [2068] = {.lex_state = 39, .external_lex_state = 6}, - [2069] = {.lex_state = 39, .external_lex_state = 7}, - [2070] = {.lex_state = 39, .external_lex_state = 6}, - [2071] = {.lex_state = 39, .external_lex_state = 7}, + [2056] = {.lex_state = 39, .external_lex_state = 4}, + [2057] = {.lex_state = 39, .external_lex_state = 3}, + [2058] = {.lex_state = 39, .external_lex_state = 2}, + [2059] = {.lex_state = 39, .external_lex_state = 3}, + [2060] = {.lex_state = 39, .external_lex_state = 4}, + [2061] = {.lex_state = 39, .external_lex_state = 2}, + [2062] = {.lex_state = 39, .external_lex_state = 3}, + [2063] = {.lex_state = 39, .external_lex_state = 2}, + [2064] = {.lex_state = 39, .external_lex_state = 2}, + [2065] = {.lex_state = 39, .external_lex_state = 3}, + [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}, + [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 = 2}, - [2074] = {.lex_state = 39, .external_lex_state = 5}, - [2075] = {.lex_state = 39, .external_lex_state = 5}, - [2076] = {.lex_state = 39, .external_lex_state = 5}, - [2077] = {.lex_state = 39, .external_lex_state = 2}, - [2078] = {.lex_state = 39, .external_lex_state = 5}, - [2079] = {.lex_state = 39, .external_lex_state = 7}, - [2080] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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 = 7}, - [2083] = {.lex_state = 39, .external_lex_state = 7}, - [2084] = {.lex_state = 39, .external_lex_state = 2}, - [2085] = {.lex_state = 39, .external_lex_state = 6}, - [2086] = {.lex_state = 39, .external_lex_state = 7}, - [2087] = {.lex_state = 39, .external_lex_state = 7}, - [2088] = {.lex_state = 39, .external_lex_state = 6}, - [2089] = {.lex_state = 39, .external_lex_state = 7}, - [2090] = {.lex_state = 39, .external_lex_state = 6}, - [2091] = {.lex_state = 39, .external_lex_state = 7}, + [2082] = {.lex_state = 39, .external_lex_state = 4}, + [2083] = {.lex_state = 39, .external_lex_state = 4}, + [2084] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 2}, + [2093] = {.lex_state = 39, .external_lex_state = 5}, [2094] = {.lex_state = 39, .external_lex_state = 5}, - [2095] = {.lex_state = 39, .external_lex_state = 2}, - [2096] = {.lex_state = 39, .external_lex_state = 5}, - [2097] = {.lex_state = 39, .external_lex_state = 5}, - [2098] = {.lex_state = 39, .external_lex_state = 5}, - [2099] = {.lex_state = 39, .external_lex_state = 5}, - [2100] = {.lex_state = 39, .external_lex_state = 2}, - [2101] = {.lex_state = 39, .external_lex_state = 2}, - [2102] = {.lex_state = 39, .external_lex_state = 6}, - [2103] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [2103] = {.lex_state = 39, .external_lex_state = 2}, [2104] = {.lex_state = 39, .external_lex_state = 5}, - [2105] = {.lex_state = 39, .external_lex_state = 7}, - [2106] = {.lex_state = 39, .external_lex_state = 2}, + [2105] = {.lex_state = 39, .external_lex_state = 2}, + [2106] = {.lex_state = 39, .external_lex_state = 5}, [2107] = {.lex_state = 39, .external_lex_state = 2}, - [2108] = {.lex_state = 39, .external_lex_state = 7}, - [2109] = {.lex_state = 39, .external_lex_state = 6}, + [2108] = {.lex_state = 39, .external_lex_state = 5}, + [2109] = {.lex_state = 39, .external_lex_state = 5}, [2110] = {.lex_state = 39, .external_lex_state = 5}, - [2111] = {.lex_state = 39, .external_lex_state = 7}, - [2112] = {.lex_state = 39, .external_lex_state = 5}, - [2113] = {.lex_state = 39, .external_lex_state = 5}, - [2114] = {.lex_state = 39, .external_lex_state = 5}, + [2111] = {.lex_state = 39, .external_lex_state = 2}, + [2112] = {.lex_state = 39, .external_lex_state = 2}, + [2113] = {.lex_state = 39, .external_lex_state = 2}, + [2114] = {.lex_state = 39, .external_lex_state = 2}, [2115] = {.lex_state = 39, .external_lex_state = 7}, [2116] = {.lex_state = 39, .external_lex_state = 5}, - [2117] = {.lex_state = 39, .external_lex_state = 5}, - [2118] = {.lex_state = 39, .external_lex_state = 6}, - [2119] = {.lex_state = 39, .external_lex_state = 7}, - [2120] = {.lex_state = 39, .external_lex_state = 6}, - [2121] = {.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}, - [2124] = {.lex_state = 39, .external_lex_state = 2}, + [2124] = {.lex_state = 39, .external_lex_state = 5}, [2125] = {.lex_state = 39, .external_lex_state = 2}, - [2126] = {.lex_state = 39, .external_lex_state = 2}, - [2127] = {.lex_state = 39, .external_lex_state = 2}, - [2128] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 2}, - [2131] = {.lex_state = 39, .external_lex_state = 2}, + [2130] = {.lex_state = 39, .external_lex_state = 5}, + [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}, [2135] = {.lex_state = 39, .external_lex_state = 2}, [2136] = {.lex_state = 39, .external_lex_state = 2}, - [2137] = {.lex_state = 39, .external_lex_state = 2}, - [2138] = {.lex_state = 39, .external_lex_state = 2}, + [2137] = {.lex_state = 39, .external_lex_state = 6}, + [2138] = {.lex_state = 39, .external_lex_state = 5}, [2139] = {.lex_state = 39, .external_lex_state = 2}, [2140] = {.lex_state = 39, .external_lex_state = 2}, [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 = 2}, + [2144] = {.lex_state = 39, .external_lex_state = 6}, [2145] = {.lex_state = 39, .external_lex_state = 2}, - [2146] = {.lex_state = 39, .external_lex_state = 2}, + [2146] = {.lex_state = 39, .external_lex_state = 5}, [2147] = {.lex_state = 39, .external_lex_state = 2}, - [2148] = {.lex_state = 39, .external_lex_state = 10}, - [2149] = {.lex_state = 39, .external_lex_state = 10}, - [2150] = {.lex_state = 39, .external_lex_state = 2}, - [2151] = {.lex_state = 39, .external_lex_state = 10}, - [2152] = {.lex_state = 39, .external_lex_state = 2}, + [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}, - [2154] = {.lex_state = 39, .external_lex_state = 2}, - [2155] = {.lex_state = 39, .external_lex_state = 2}, + [2154] = {.lex_state = 39, .external_lex_state = 5}, + [2155] = {.lex_state = 39, .external_lex_state = 3}, [2156] = {.lex_state = 39, .external_lex_state = 2}, - [2157] = {.lex_state = 39, .external_lex_state = 2}, - [2158] = {.lex_state = 39, .external_lex_state = 2}, - [2159] = {.lex_state = 39, .external_lex_state = 2}, - [2160] = {.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}, + [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}, - [2166] = {.lex_state = 39, .external_lex_state = 2}, + [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}, [2170] = {.lex_state = 39, .external_lex_state = 2}, - [2171] = {.lex_state = 39, .external_lex_state = 2}, - [2172] = {.lex_state = 39, .external_lex_state = 2}, - [2173] = {.lex_state = 39, .external_lex_state = 2}, + [2171] = {.lex_state = 39, .external_lex_state = 5}, + [2172] = {.lex_state = 39, .external_lex_state = 7}, + [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 = 2}, + [2177] = {.lex_state = 39, .external_lex_state = 5}, [2178] = {.lex_state = 39, .external_lex_state = 2}, - [2179] = {.lex_state = 39, .external_lex_state = 2}, - [2180] = {.lex_state = 39, .external_lex_state = 2}, - [2181] = {.lex_state = 39, .external_lex_state = 2}, - [2182] = {.lex_state = 39, .external_lex_state = 9}, - [2183] = {.lex_state = 39, .external_lex_state = 2}, - [2184] = {.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}, + [2182] = {.lex_state = 39, .external_lex_state = 5}, + [2183] = {.lex_state = 39, .external_lex_state = 5}, + [2184] = {.lex_state = 39, .external_lex_state = 5}, [2185] = {.lex_state = 39, .external_lex_state = 2}, [2186] = {.lex_state = 39, .external_lex_state = 2}, - [2187] = {.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 = 2}, - [2190] = {.lex_state = 39, .external_lex_state = 2}, + [2189] = {.lex_state = 39, .external_lex_state = 5}, + [2190] = {.lex_state = 39, .external_lex_state = 5}, [2191] = {.lex_state = 39, .external_lex_state = 2}, - [2192] = {.lex_state = 39, .external_lex_state = 2}, - [2193] = {.lex_state = 39, .external_lex_state = 2}, - [2194] = {.lex_state = 39, .external_lex_state = 2}, + [2192] = {.lex_state = 39, .external_lex_state = 5}, + [2193] = {.lex_state = 39, .external_lex_state = 5}, + [2194] = {.lex_state = 39, .external_lex_state = 4}, [2195] = {.lex_state = 39, .external_lex_state = 2}, [2196] = {.lex_state = 39, .external_lex_state = 2}, - [2197] = {.lex_state = 39, .external_lex_state = 2}, - [2198] = {.lex_state = 39, .external_lex_state = 2}, - [2199] = {.lex_state = 39, .external_lex_state = 2}, - [2200] = {.lex_state = 39, .external_lex_state = 2}, + [2197] = {.lex_state = 39, .external_lex_state = 5}, + [2198] = {.lex_state = 39, .external_lex_state = 5}, + [2199] = {.lex_state = 39, .external_lex_state = 5}, + [2200] = {.lex_state = 39, .external_lex_state = 5}, [2201] = {.lex_state = 39, .external_lex_state = 2}, - [2202] = {.lex_state = 39, .external_lex_state = 2}, + [2202] = {.lex_state = 39, .external_lex_state = 5}, [2203] = {.lex_state = 39, .external_lex_state = 2}, [2204] = {.lex_state = 39, .external_lex_state = 2}, - [2205] = {.lex_state = 39, .external_lex_state = 2}, - [2206] = {.lex_state = 39, .external_lex_state = 2}, + [2205] = {.lex_state = 39, .external_lex_state = 5}, + [2206] = {.lex_state = 39, .external_lex_state = 5}, [2207] = {.lex_state = 39, .external_lex_state = 2}, - [2208] = {.lex_state = 39, .external_lex_state = 2}, - [2209] = {.lex_state = 39, .external_lex_state = 2}, - [2210] = {.lex_state = 39, .external_lex_state = 10}, + [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}, [2213] = {.lex_state = 39, .external_lex_state = 2}, - [2214] = {.lex_state = 39, .external_lex_state = 2}, - [2215] = {.lex_state = 39, .external_lex_state = 2}, + [2214] = {.lex_state = 39, .external_lex_state = 5}, + [2215] = {.lex_state = 39, .external_lex_state = 5}, [2216] = {.lex_state = 39, .external_lex_state = 2}, - [2217] = {.lex_state = 39, .external_lex_state = 2}, + [2217] = {.lex_state = 39, .external_lex_state = 5}, [2218] = {.lex_state = 39, .external_lex_state = 2}, - [2219] = {.lex_state = 39, .external_lex_state = 2}, - [2220] = {.lex_state = 39, .external_lex_state = 2}, - [2221] = {.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}, [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}, - [2226] = {.lex_state = 39, .external_lex_state = 2}, - [2227] = {.lex_state = 39, .external_lex_state = 9}, - [2228] = {.lex_state = 39, .external_lex_state = 9}, - [2229] = {.lex_state = 39, .external_lex_state = 9}, - [2230] = {.lex_state = 39, .external_lex_state = 9}, - [2231] = {.lex_state = 39, .external_lex_state = 11}, - [2232] = {.lex_state = 39, .external_lex_state = 11}, - [2233] = {.lex_state = 39, .external_lex_state = 11}, - [2234] = {.lex_state = 39, .external_lex_state = 11}, - [2235] = {.lex_state = 3, .external_lex_state = 10}, - [2236] = {.lex_state = 39, .external_lex_state = 9}, - [2237] = {.lex_state = 3, .external_lex_state = 10}, - [2238] = {.lex_state = 3, .external_lex_state = 10}, - [2239] = {.lex_state = 39, .external_lex_state = 8}, - [2240] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [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}, + [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 = 9}, - [2243] = {.lex_state = 3, .external_lex_state = 10}, - [2244] = {.lex_state = 39, .external_lex_state = 9}, - [2245] = {.lex_state = 39, .external_lex_state = 9}, - [2246] = {.lex_state = 39, .external_lex_state = 8}, - [2247] = {.lex_state = 3, .external_lex_state = 5}, - [2248] = {.lex_state = 39, .external_lex_state = 12}, - [2249] = {.lex_state = 39, .external_lex_state = 12}, - [2250] = {.lex_state = 3, .external_lex_state = 5}, - [2251] = {.lex_state = 39, .external_lex_state = 12}, - [2252] = {.lex_state = 3, .external_lex_state = 5}, - [2253] = {.lex_state = 39, .external_lex_state = 12}, - [2254] = {.lex_state = 39, .external_lex_state = 5}, - [2255] = {.lex_state = 39, .external_lex_state = 5}, - [2256] = {.lex_state = 3, .external_lex_state = 5}, - [2257] = {.lex_state = 39, .external_lex_state = 5}, - [2258] = {.lex_state = 39, .external_lex_state = 5}, - [2259] = {.lex_state = 39, .external_lex_state = 5}, - [2260] = {.lex_state = 3, .external_lex_state = 5}, - [2261] = {.lex_state = 39, .external_lex_state = 5}, - [2262] = {.lex_state = 39, .external_lex_state = 5}, - [2263] = {.lex_state = 39, .external_lex_state = 5}, - [2264] = {.lex_state = 39, .external_lex_state = 5}, - [2265] = {.lex_state = 3, .external_lex_state = 2}, - [2266] = {.lex_state = 39, .external_lex_state = 9}, - [2267] = {.lex_state = 39, .external_lex_state = 9}, - [2268] = {.lex_state = 39, .external_lex_state = 9}, - [2269] = {.lex_state = 39, .external_lex_state = 5}, - [2270] = {.lex_state = 39, .external_lex_state = 5}, - [2271] = {.lex_state = 39, .external_lex_state = 5}, - [2272] = {.lex_state = 39, .external_lex_state = 9}, - [2273] = {.lex_state = 39, .external_lex_state = 5}, - [2274] = {.lex_state = 39, .external_lex_state = 10}, - [2275] = {.lex_state = 39, .external_lex_state = 10}, - [2276] = {.lex_state = 39, .external_lex_state = 10}, - [2277] = {.lex_state = 39, .external_lex_state = 10}, - [2278] = {.lex_state = 39, .external_lex_state = 2}, - [2279] = {.lex_state = 39, .external_lex_state = 2}, - [2280] = {.lex_state = 39, .external_lex_state = 10}, - [2281] = {.lex_state = 39, .external_lex_state = 8}, - [2282] = {.lex_state = 39, .external_lex_state = 11}, - [2283] = {.lex_state = 39, .external_lex_state = 9}, - [2284] = {.lex_state = 39, .external_lex_state = 11}, - [2285] = {.lex_state = 39, .external_lex_state = 11}, - [2286] = {.lex_state = 39, .external_lex_state = 11}, - [2287] = {.lex_state = 39, .external_lex_state = 9}, - [2288] = {.lex_state = 39, .external_lex_state = 9}, - [2289] = {.lex_state = 39, .external_lex_state = 11}, - [2290] = {.lex_state = 39, .external_lex_state = 9}, - [2291] = {.lex_state = 39, .external_lex_state = 11}, - [2292] = {.lex_state = 39, .external_lex_state = 11}, - [2293] = {.lex_state = 39, .external_lex_state = 9}, - [2294] = {.lex_state = 39, .external_lex_state = 11}, - [2295] = {.lex_state = 39, .external_lex_state = 11}, - [2296] = {.lex_state = 39, .external_lex_state = 9}, - [2297] = {.lex_state = 39, .external_lex_state = 9}, - [2298] = {.lex_state = 39, .external_lex_state = 10}, - [2299] = {.lex_state = 39, .external_lex_state = 11}, - [2300] = {.lex_state = 39, .external_lex_state = 11}, - [2301] = {.lex_state = 39, .external_lex_state = 10}, - [2302] = {.lex_state = 39, .external_lex_state = 10}, - [2303] = {.lex_state = 39, .external_lex_state = 11}, - [2304] = {.lex_state = 39, .external_lex_state = 11}, - [2305] = {.lex_state = 39, .external_lex_state = 10}, - [2306] = {.lex_state = 39, .external_lex_state = 10}, - [2307] = {.lex_state = 39, .external_lex_state = 9}, - [2308] = {.lex_state = 39, .external_lex_state = 11}, - [2309] = {.lex_state = 39, .external_lex_state = 11}, - [2310] = {.lex_state = 39, .external_lex_state = 11}, - [2311] = {.lex_state = 39, .external_lex_state = 10}, - [2312] = {.lex_state = 39, .external_lex_state = 11}, - [2313] = {.lex_state = 39, .external_lex_state = 11}, - [2314] = {.lex_state = 39, .external_lex_state = 10}, - [2315] = {.lex_state = 39, .external_lex_state = 2}, - [2316] = {.lex_state = 39, .external_lex_state = 10}, - [2317] = {.lex_state = 39, .external_lex_state = 10}, - [2318] = {.lex_state = 39, .external_lex_state = 11}, - [2319] = {.lex_state = 39, .external_lex_state = 11}, - [2320] = {.lex_state = 39, .external_lex_state = 9}, - [2321] = {.lex_state = 39, .external_lex_state = 11}, - [2322] = {.lex_state = 39, .external_lex_state = 11}, - [2323] = {.lex_state = 39, .external_lex_state = 11}, - [2324] = {.lex_state = 39, .external_lex_state = 2}, - [2325] = {.lex_state = 39, .external_lex_state = 2}, - [2326] = {.lex_state = 39, .external_lex_state = 10}, - [2327] = {.lex_state = 39, .external_lex_state = 12}, - [2328] = {.lex_state = 39, .external_lex_state = 8}, - [2329] = {.lex_state = 39, .external_lex_state = 12}, - [2330] = {.lex_state = 39, .external_lex_state = 12}, - [2331] = {.lex_state = 39, .external_lex_state = 2}, - [2332] = {.lex_state = 39, .external_lex_state = 8}, - [2333] = {.lex_state = 39, .external_lex_state = 2}, - [2334] = {.lex_state = 39, .external_lex_state = 12}, - [2335] = {.lex_state = 39, .external_lex_state = 2}, - [2336] = {.lex_state = 39, .external_lex_state = 10}, - [2337] = {.lex_state = 39, .external_lex_state = 2}, - [2338] = {.lex_state = 39, .external_lex_state = 11}, - [2339] = {.lex_state = 39, .external_lex_state = 9}, - [2340] = {.lex_state = 3, .external_lex_state = 10}, - [2341] = {.lex_state = 39, .external_lex_state = 9}, - [2342] = {.lex_state = 39, .external_lex_state = 2}, - [2343] = {.lex_state = 39, .external_lex_state = 2}, - [2344] = {.lex_state = 39, .external_lex_state = 8}, - [2345] = {.lex_state = 39, .external_lex_state = 12}, - [2346] = {.lex_state = 39, .external_lex_state = 2}, - [2347] = {.lex_state = 39, .external_lex_state = 12}, - [2348] = {.lex_state = 39, .external_lex_state = 8}, - [2349] = {.lex_state = 39, .external_lex_state = 11}, - [2350] = {.lex_state = 39, .external_lex_state = 8}, - [2351] = {.lex_state = 39, .external_lex_state = 2}, - [2352] = {.lex_state = 3, .external_lex_state = 10}, - [2353] = {.lex_state = 3, .external_lex_state = 10}, - [2354] = {.lex_state = 39, .external_lex_state = 9}, - [2355] = {.lex_state = 39, .external_lex_state = 11}, - [2356] = {.lex_state = 39, .external_lex_state = 12}, - [2357] = {.lex_state = 39, .external_lex_state = 2}, - [2358] = {.lex_state = 39, .external_lex_state = 9}, - [2359] = {.lex_state = 39, .external_lex_state = 12}, - [2360] = {.lex_state = 39, .external_lex_state = 2}, - [2361] = {.lex_state = 39, .external_lex_state = 9}, - [2362] = {.lex_state = 39, .external_lex_state = 9}, - [2363] = {.lex_state = 39, .external_lex_state = 12}, - [2364] = {.lex_state = 39, .external_lex_state = 2}, - [2365] = {.lex_state = 39, .external_lex_state = 2}, - [2366] = {.lex_state = 39, .external_lex_state = 2}, - [2367] = {.lex_state = 39, .external_lex_state = 2}, - [2368] = {.lex_state = 39, .external_lex_state = 8}, - [2369] = {.lex_state = 39, .external_lex_state = 9}, - [2370] = {.lex_state = 39, .external_lex_state = 11}, - [2371] = {.lex_state = 39, .external_lex_state = 2}, - [2372] = {.lex_state = 3, .external_lex_state = 10}, - [2373] = {.lex_state = 3, .external_lex_state = 10}, - [2374] = {.lex_state = 39, .external_lex_state = 2}, - [2375] = {.lex_state = 39, .external_lex_state = 9}, - [2376] = {.lex_state = 39, .external_lex_state = 9}, - [2377] = {.lex_state = 3, .external_lex_state = 10}, - [2378] = {.lex_state = 3, .external_lex_state = 10}, - [2379] = {.lex_state = 39, .external_lex_state = 12}, - [2380] = {.lex_state = 39, .external_lex_state = 10}, - [2381] = {.lex_state = 39, .external_lex_state = 10}, - [2382] = {.lex_state = 39, .external_lex_state = 10}, - [2383] = {.lex_state = 39, .external_lex_state = 2}, - [2384] = {.lex_state = 39, .external_lex_state = 10}, - [2385] = {.lex_state = 39, .external_lex_state = 11}, - [2386] = {.lex_state = 39, .external_lex_state = 2}, - [2387] = {.lex_state = 39, .external_lex_state = 2}, - [2388] = {.lex_state = 39, .external_lex_state = 2}, - [2389] = {.lex_state = 39, .external_lex_state = 10}, - [2390] = {.lex_state = 39, .external_lex_state = 11}, - [2391] = {.lex_state = 39, .external_lex_state = 10}, - [2392] = {.lex_state = 39, .external_lex_state = 2}, - [2393] = {.lex_state = 39, .external_lex_state = 12}, - [2394] = {.lex_state = 39, .external_lex_state = 2}, - [2395] = {.lex_state = 39, .external_lex_state = 10}, + [2242] = {.lex_state = 39, .external_lex_state = 2}, + [2243] = {.lex_state = 39, .external_lex_state = 2}, + [2244] = {.lex_state = 39, .external_lex_state = 8}, + [2245] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [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}, + [2260] = {.lex_state = 39, .external_lex_state = 7}, + [2261] = {.lex_state = 39, .external_lex_state = 6}, + [2262] = {.lex_state = 39, .external_lex_state = 6}, + [2263] = {.lex_state = 39, .external_lex_state = 6}, + [2264] = {.lex_state = 39, .external_lex_state = 6}, + [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}, + [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}, + [2282] = {.lex_state = 39, .external_lex_state = 6}, + [2283] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [2291] = {.lex_state = 39, .external_lex_state = 6}, + [2292] = {.lex_state = 39, .external_lex_state = 6}, + [2293] = {.lex_state = 39, .external_lex_state = 2}, + [2294] = {.lex_state = 39, .external_lex_state = 6}, + [2295] = {.lex_state = 39, .external_lex_state = 6}, + [2296] = {.lex_state = 39, .external_lex_state = 7}, + [2297] = {.lex_state = 39, .external_lex_state = 6}, + [2298] = {.lex_state = 39, .external_lex_state = 6}, + [2299] = {.lex_state = 39, .external_lex_state = 7}, + [2300] = {.lex_state = 39, .external_lex_state = 6}, + [2301] = {.lex_state = 39, .external_lex_state = 6}, + [2302] = {.lex_state = 3, .external_lex_state = 7}, + [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}, + [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}, + [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}, + [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}, + [2331] = {.lex_state = 39, .external_lex_state = 6}, + [2332] = {.lex_state = 39, .external_lex_state = 6}, + [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}, + [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}, + [2342] = {.lex_state = 39, .external_lex_state = 6}, + [2343] = {.lex_state = 39, .external_lex_state = 6}, + [2344] = {.lex_state = 39, .external_lex_state = 9}, + [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}, + [2349] = {.lex_state = 39, .external_lex_state = 7}, + [2350] = {.lex_state = 39, .external_lex_state = 6}, + [2351] = {.lex_state = 39, .external_lex_state = 6}, + [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}, + [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}, + [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}, + [2367] = {.lex_state = 39, .external_lex_state = 6}, + [2368] = {.lex_state = 39, .external_lex_state = 6}, + [2369] = {.lex_state = 39, .external_lex_state = 6}, + [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}, + [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}, + [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}, + [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 = 2}, - [2398] = {.lex_state = 39, .external_lex_state = 12}, - [2399] = {.lex_state = 39, .external_lex_state = 2}, - [2400] = {.lex_state = 39, .external_lex_state = 9}, - [2401] = {.lex_state = 39, .external_lex_state = 11}, - [2402] = {.lex_state = 39, .external_lex_state = 2}, - [2403] = {.lex_state = 39, .external_lex_state = 10}, - [2404] = {.lex_state = 39, .external_lex_state = 11}, - [2405] = {.lex_state = 39, .external_lex_state = 10}, - [2406] = {.lex_state = 39, .external_lex_state = 10}, - [2407] = {.lex_state = 39, .external_lex_state = 10}, - [2408] = {.lex_state = 39, .external_lex_state = 12}, - [2409] = {.lex_state = 39, .external_lex_state = 8}, + [2397] = {.lex_state = 39, .external_lex_state = 4}, + [2398] = {.lex_state = 39, .external_lex_state = 6}, + [2399] = {.lex_state = 39, .external_lex_state = 6}, + [2400] = {.lex_state = 39, .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}, + [2404] = {.lex_state = 39, .external_lex_state = 6}, + [2405] = {.lex_state = 39, .external_lex_state = 7}, + [2406] = {.lex_state = 39, .external_lex_state = 7}, + [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 = 2}, - [2413] = {.lex_state = 39, .external_lex_state = 9}, - [2414] = {.lex_state = 39, .external_lex_state = 9}, - [2415] = {.lex_state = 39, .external_lex_state = 10}, - [2416] = {.lex_state = 39, .external_lex_state = 10}, - [2417] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 12}, - [2420] = {.lex_state = 39, .external_lex_state = 11}, + [2419] = {.lex_state = 39, .external_lex_state = 2}, + [2420] = {.lex_state = 39, .external_lex_state = 7}, [2421] = {.lex_state = 39, .external_lex_state = 8}, - [2422] = {.lex_state = 39, .external_lex_state = 10}, - [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 = 12}, - [2427] = {.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 = 10}, - [2430] = {.lex_state = 39, .external_lex_state = 8}, + [2429] = {.lex_state = 39, .external_lex_state = 7}, + [2430] = {.lex_state = 39, .external_lex_state = 6}, [2431] = {.lex_state = 39, .external_lex_state = 2}, - [2432] = {.lex_state = 39, .external_lex_state = 10}, - [2433] = {.lex_state = 39, .external_lex_state = 10}, - [2434] = {.lex_state = 39, .external_lex_state = 11}, - [2435] = {.lex_state = 39, .external_lex_state = 10}, - [2436] = {.lex_state = 39, .external_lex_state = 2}, - [2437] = {.lex_state = 39, .external_lex_state = 10}, - [2438] = {.lex_state = 39, .external_lex_state = 8}, - [2439] = {.lex_state = 39, .external_lex_state = 2}, - [2440] = {.lex_state = 39, .external_lex_state = 10}, - [2441] = {.lex_state = 39, .external_lex_state = 2}, - [2442] = {.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}, + [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}, + [2440] = {.lex_state = 39, .external_lex_state = 2}, + [2441] = {.lex_state = 39, .external_lex_state = 7}, + [2442] = {.lex_state = 39, .external_lex_state = 7}, [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 = 12}, - [2447] = {.lex_state = 39, .external_lex_state = 10}, - [2448] = {.lex_state = 39, .external_lex_state = 12}, - [2449] = {.lex_state = 39, .external_lex_state = 8}, - [2450] = {.lex_state = 39, .external_lex_state = 9}, - [2451] = {.lex_state = 39, .external_lex_state = 9}, - [2452] = {.lex_state = 39, .external_lex_state = 9}, - [2453] = {.lex_state = 39, .external_lex_state = 9}, - [2454] = {.lex_state = 39, .external_lex_state = 9}, - [2455] = {.lex_state = 39, .external_lex_state = 9}, - [2456] = {.lex_state = 39, .external_lex_state = 9}, - [2457] = {.lex_state = 39, .external_lex_state = 9}, - [2458] = {.lex_state = 39, .external_lex_state = 8}, - [2459] = {.lex_state = 39, .external_lex_state = 10}, - [2460] = {.lex_state = 39, .external_lex_state = 8}, - [2461] = {.lex_state = 39, .external_lex_state = 9}, - [2462] = {.lex_state = 39, .external_lex_state = 12}, - [2463] = {.lex_state = 39, .external_lex_state = 9}, - [2464] = {.lex_state = 39, .external_lex_state = 9}, - [2465] = {.lex_state = 39, .external_lex_state = 10}, - [2466] = {.lex_state = 39, .external_lex_state = 10}, - [2467] = {.lex_state = 39, .external_lex_state = 11}, - [2468] = {.lex_state = 39, .external_lex_state = 9}, - [2469] = {.lex_state = 39, .external_lex_state = 10}, - [2470] = {.lex_state = 39, .external_lex_state = 9}, - [2471] = {.lex_state = 39, .external_lex_state = 12}, - [2472] = {.lex_state = 39, .external_lex_state = 10}, - [2473] = {.lex_state = 39, .external_lex_state = 10}, - [2474] = {.lex_state = 39, .external_lex_state = 10}, - [2475] = {.lex_state = 39, .external_lex_state = 9}, - [2476] = {.lex_state = 39, .external_lex_state = 10}, - [2477] = {.lex_state = 39, .external_lex_state = 10}, - [2478] = {.lex_state = 39, .external_lex_state = 10}, - [2479] = {.lex_state = 39, .external_lex_state = 9}, - [2480] = {.lex_state = 39, .external_lex_state = 9}, - [2481] = {.lex_state = 39, .external_lex_state = 11}, - [2482] = {.lex_state = 39, .external_lex_state = 9}, - [2483] = {.lex_state = 39, .external_lex_state = 10}, - [2484] = {.lex_state = 39, .external_lex_state = 9}, + [2446] = {.lex_state = 39, .external_lex_state = 2}, + [2447] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [2454] = {.lex_state = 39, .external_lex_state = 7}, + [2455] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [2462] = {.lex_state = 39, .external_lex_state = 2}, + [2463] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [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}, + [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 = 9}, - [2487] = {.lex_state = 39, .external_lex_state = 10}, - [2488] = {.lex_state = 39, .external_lex_state = 8}, - [2489] = {.lex_state = 39, .external_lex_state = 9}, - [2490] = {.lex_state = 39, .external_lex_state = 9}, - [2491] = {.lex_state = 39, .external_lex_state = 10}, - [2492] = {.lex_state = 39, .external_lex_state = 9}, - [2493] = {.lex_state = 39, .external_lex_state = 9}, - [2494] = {.lex_state = 39, .external_lex_state = 9}, - [2495] = {.lex_state = 39, .external_lex_state = 9}, - [2496] = {.lex_state = 39, .external_lex_state = 11}, - [2497] = {.lex_state = 39, .external_lex_state = 10}, - [2498] = {.lex_state = 39, .external_lex_state = 10}, - [2499] = {.lex_state = 39, .external_lex_state = 9}, - [2500] = {.lex_state = 39, .external_lex_state = 10}, - [2501] = {.lex_state = 39, .external_lex_state = 9}, - [2502] = {.lex_state = 39, .external_lex_state = 10}, - [2503] = {.lex_state = 39, .external_lex_state = 10}, - [2504] = {.lex_state = 39, .external_lex_state = 9}, - [2505] = {.lex_state = 39, .external_lex_state = 12}, - [2506] = {.lex_state = 39, .external_lex_state = 10}, - [2507] = {.lex_state = 39, .external_lex_state = 9}, - [2508] = {.lex_state = 39, .external_lex_state = 10}, - [2509] = {.lex_state = 39, .external_lex_state = 10}, - [2510] = {.lex_state = 39, .external_lex_state = 9}, - [2511] = {.lex_state = 39, .external_lex_state = 9}, - [2512] = {.lex_state = 39, .external_lex_state = 11}, - [2513] = {.lex_state = 39, .external_lex_state = 8}, - [2514] = {.lex_state = 39, .external_lex_state = 10}, - [2515] = {.lex_state = 39, .external_lex_state = 9}, - [2516] = {.lex_state = 39, .external_lex_state = 11}, - [2517] = {.lex_state = 39, .external_lex_state = 9}, + [2486] = {.lex_state = 39, .external_lex_state = 2}, + [2487] = {.lex_state = 39, .external_lex_state = 2}, + [2488] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [2517] = {.lex_state = 39, .external_lex_state = 6}, [2518] = {.lex_state = 39, .external_lex_state = 8}, - [2519] = {.lex_state = 39, .external_lex_state = 9}, - [2520] = {.lex_state = 39, .external_lex_state = 9}, - [2521] = {.lex_state = 39, .external_lex_state = 8}, - [2522] = {.lex_state = 39, .external_lex_state = 9}, - [2523] = {.lex_state = 39, .external_lex_state = 10}, - [2524] = {.lex_state = 39, .external_lex_state = 12}, - [2525] = {.lex_state = 39, .external_lex_state = 9}, - [2526] = {.lex_state = 39, .external_lex_state = 12}, - [2527] = {.lex_state = 39, .external_lex_state = 9}, - [2528] = {.lex_state = 39, .external_lex_state = 11}, - [2529] = {.lex_state = 39, .external_lex_state = 9}, - [2530] = {.lex_state = 39, .external_lex_state = 12}, - [2531] = {.lex_state = 39, .external_lex_state = 9}, - [2532] = {.lex_state = 39, .external_lex_state = 9}, - [2533] = {.lex_state = 39, .external_lex_state = 10}, - [2534] = {.lex_state = 39, .external_lex_state = 9}, - [2535] = {.lex_state = 39, .external_lex_state = 12}, - [2536] = {.lex_state = 39, .external_lex_state = 10}, - [2537] = {.lex_state = 39, .external_lex_state = 9}, - [2538] = {.lex_state = 39, .external_lex_state = 9}, - [2539] = {.lex_state = 39, .external_lex_state = 10}, - [2540] = {.lex_state = 39, .external_lex_state = 10}, - [2541] = {.lex_state = 39, .external_lex_state = 10}, - [2542] = {.lex_state = 39, .external_lex_state = 9}, - [2543] = {.lex_state = 39, .external_lex_state = 10}, - [2544] = {.lex_state = 39, .external_lex_state = 9}, - [2545] = {.lex_state = 39, .external_lex_state = 10}, - [2546] = {.lex_state = 39, .external_lex_state = 10}, - [2547] = {.lex_state = 39, .external_lex_state = 10}, - [2548] = {.lex_state = 39, .external_lex_state = 10}, - [2549] = {.lex_state = 39, .external_lex_state = 9}, - [2550] = {.lex_state = 39, .external_lex_state = 8}, - [2551] = {.lex_state = 39, .external_lex_state = 10}, - [2552] = {.lex_state = 39, .external_lex_state = 9}, - [2553] = {.lex_state = 39, .external_lex_state = 9}, - [2554] = {.lex_state = 39, .external_lex_state = 9}, - [2555] = {.lex_state = 39, .external_lex_state = 11}, - [2556] = {.lex_state = 39, .external_lex_state = 9}, - [2557] = {.lex_state = 39, .external_lex_state = 10}, - [2558] = {.lex_state = 39, .external_lex_state = 12}, - [2559] = {.lex_state = 39, .external_lex_state = 11}, - [2560] = {.lex_state = 39, .external_lex_state = 11}, - [2561] = {.lex_state = 39, .external_lex_state = 9}, - [2562] = {.lex_state = 39, .external_lex_state = 9}, - [2563] = {.lex_state = 39, .external_lex_state = 9}, - [2564] = {.lex_state = 39, .external_lex_state = 9}, - [2565] = {.lex_state = 39, .external_lex_state = 9}, - [2566] = {.lex_state = 39, .external_lex_state = 9}, - [2567] = {.lex_state = 39, .external_lex_state = 9}, - [2568] = {.lex_state = 39, .external_lex_state = 9}, - [2569] = {.lex_state = 39, .external_lex_state = 9}, - [2570] = {.lex_state = 39, .external_lex_state = 9}, - [2571] = {.lex_state = 39, .external_lex_state = 9}, - [2572] = {.lex_state = 39, .external_lex_state = 9}, - [2573] = {.lex_state = 39, .external_lex_state = 9}, - [2574] = {.lex_state = 39, .external_lex_state = 9}, - [2575] = {.lex_state = 39, .external_lex_state = 9}, - [2576] = {.lex_state = 39, .external_lex_state = 9}, - [2577] = {.lex_state = 39, .external_lex_state = 9}, - [2578] = {.lex_state = 39, .external_lex_state = 8}, - [2579] = {.lex_state = 39, .external_lex_state = 9}, - [2580] = {.lex_state = 39, .external_lex_state = 9}, - [2581] = {.lex_state = 39, .external_lex_state = 9}, - [2582] = {.lex_state = 39, .external_lex_state = 9}, - [2583] = {.lex_state = 39, .external_lex_state = 9}, - [2584] = {.lex_state = 39, .external_lex_state = 9}, - [2585] = {.lex_state = 39, .external_lex_state = 9}, - [2586] = {.lex_state = 39, .external_lex_state = 9}, - [2587] = {.lex_state = 39, .external_lex_state = 9}, - [2588] = {.lex_state = 39, .external_lex_state = 9}, - [2589] = {.lex_state = 22, .external_lex_state = 13}, - [2590] = {.lex_state = 22, .external_lex_state = 13}, - [2591] = {.lex_state = 22, .external_lex_state = 13}, - [2592] = {.lex_state = 22, .external_lex_state = 13}, - [2593] = {.lex_state = 22, .external_lex_state = 13}, - [2594] = {.lex_state = 22, .external_lex_state = 13}, - [2595] = {.lex_state = 22, .external_lex_state = 13}, - [2596] = {.lex_state = 22, .external_lex_state = 13}, - [2597] = {.lex_state = 22, .external_lex_state = 13}, - [2598] = {.lex_state = 22, .external_lex_state = 13}, - [2599] = {.lex_state = 22, .external_lex_state = 13}, - [2600] = {.lex_state = 22, .external_lex_state = 13}, - [2601] = {.lex_state = 22, .external_lex_state = 13}, - [2602] = {.lex_state = 21, .external_lex_state = 9}, - [2603] = {.lex_state = 21, .external_lex_state = 9}, - [2604] = {.lex_state = 22, .external_lex_state = 13}, - [2605] = {.lex_state = 22, .external_lex_state = 13}, - [2606] = {.lex_state = 22, .external_lex_state = 13}, - [2607] = {.lex_state = 22, .external_lex_state = 13}, - [2608] = {.lex_state = 22, .external_lex_state = 13}, - [2609] = {.lex_state = 22, .external_lex_state = 13}, - [2610] = {.lex_state = 39, .external_lex_state = 9}, - [2611] = {.lex_state = 39, .external_lex_state = 8}, - [2612] = {.lex_state = 39, .external_lex_state = 9}, - [2613] = {.lex_state = 21, .external_lex_state = 9}, - [2614] = {.lex_state = 39, .external_lex_state = 9}, - [2615] = {.lex_state = 39, .external_lex_state = 9}, - [2616] = {.lex_state = 21, .external_lex_state = 9}, - [2617] = {.lex_state = 39, .external_lex_state = 9}, - [2618] = {.lex_state = 39, .external_lex_state = 9}, - [2619] = {.lex_state = 39, .external_lex_state = 9}, - [2620] = {.lex_state = 39, .external_lex_state = 9}, - [2621] = {.lex_state = 39, .external_lex_state = 9}, - [2622] = {.lex_state = 39, .external_lex_state = 10}, - [2623] = {.lex_state = 39, .external_lex_state = 9}, - [2624] = {.lex_state = 39, .external_lex_state = 9}, - [2625] = {.lex_state = 39, .external_lex_state = 10}, - [2626] = {.lex_state = 39, .external_lex_state = 9}, - [2627] = {.lex_state = 39, .external_lex_state = 9}, - [2628] = {.lex_state = 39, .external_lex_state = 9}, - [2629] = {.lex_state = 39, .external_lex_state = 10}, - [2630] = {.lex_state = 39, .external_lex_state = 9}, - [2631] = {.lex_state = 39, .external_lex_state = 9}, - [2632] = {.lex_state = 39, .external_lex_state = 9}, - [2633] = {.lex_state = 39, .external_lex_state = 9}, - [2634] = {.lex_state = 39, .external_lex_state = 10}, - [2635] = {.lex_state = 39, .external_lex_state = 9}, - [2636] = {.lex_state = 39, .external_lex_state = 9}, - [2637] = {.lex_state = 39, .external_lex_state = 9}, - [2638] = {.lex_state = 39, .external_lex_state = 9}, - [2639] = {.lex_state = 39, .external_lex_state = 9}, - [2640] = {.lex_state = 39, .external_lex_state = 10}, - [2641] = {.lex_state = 39, .external_lex_state = 9}, - [2642] = {.lex_state = 39, .external_lex_state = 9}, - [2643] = {.lex_state = 39, .external_lex_state = 9}, - [2644] = {.lex_state = 39, .external_lex_state = 9}, - [2645] = {.lex_state = 39, .external_lex_state = 9}, - [2646] = {.lex_state = 3, .external_lex_state = 10}, - [2647] = {.lex_state = 39, .external_lex_state = 9}, - [2648] = {.lex_state = 22, .external_lex_state = 13}, - [2649] = {.lex_state = 39, .external_lex_state = 9}, - [2650] = {.lex_state = 39, .external_lex_state = 9}, - [2651] = {.lex_state = 39, .external_lex_state = 11}, - [2652] = {.lex_state = 39, .external_lex_state = 9}, - [2653] = {.lex_state = 39, .external_lex_state = 9}, - [2654] = {.lex_state = 39, .external_lex_state = 12}, - [2655] = {.lex_state = 22, .external_lex_state = 13}, - [2656] = {.lex_state = 39, .external_lex_state = 10}, - [2657] = {.lex_state = 39, .external_lex_state = 11}, - [2658] = {.lex_state = 39, .external_lex_state = 11}, - [2659] = {.lex_state = 39, .external_lex_state = 9}, - [2660] = {.lex_state = 39, .external_lex_state = 10}, - [2661] = {.lex_state = 39, .external_lex_state = 10}, - [2662] = {.lex_state = 39, .external_lex_state = 12}, - [2663] = {.lex_state = 39, .external_lex_state = 9}, - [2664] = {.lex_state = 39, .external_lex_state = 9}, - [2665] = {.lex_state = 39, .external_lex_state = 9}, - [2666] = {.lex_state = 39, .external_lex_state = 9}, - [2667] = {.lex_state = 39, .external_lex_state = 9}, - [2668] = {.lex_state = 3, .external_lex_state = 10}, - [2669] = {.lex_state = 39, .external_lex_state = 9}, - [2670] = {.lex_state = 39, .external_lex_state = 9}, - [2671] = {.lex_state = 39, .external_lex_state = 10}, - [2672] = {.lex_state = 39, .external_lex_state = 10}, - [2673] = {.lex_state = 39, .external_lex_state = 10}, - [2674] = {.lex_state = 39, .external_lex_state = 9}, - [2675] = {.lex_state = 39, .external_lex_state = 9}, - [2676] = {.lex_state = 39, .external_lex_state = 9}, - [2677] = {.lex_state = 39, .external_lex_state = 10}, - [2678] = {.lex_state = 39, .external_lex_state = 11}, - [2679] = {.lex_state = 39, .external_lex_state = 9}, - [2680] = {.lex_state = 39, .external_lex_state = 9}, - [2681] = {.lex_state = 39, .external_lex_state = 12}, - [2682] = {.lex_state = 39, .external_lex_state = 9}, - [2683] = {.lex_state = 39, .external_lex_state = 9}, - [2684] = {.lex_state = 39, .external_lex_state = 11}, - [2685] = {.lex_state = 39, .external_lex_state = 9}, - [2686] = {.lex_state = 39, .external_lex_state = 12}, - [2687] = {.lex_state = 39, .external_lex_state = 12}, - [2688] = {.lex_state = 39, .external_lex_state = 12}, - [2689] = {.lex_state = 39, .external_lex_state = 12}, - [2690] = {.lex_state = 39, .external_lex_state = 12}, - [2691] = {.lex_state = 39, .external_lex_state = 9}, - [2692] = {.lex_state = 39, .external_lex_state = 12}, - [2693] = {.lex_state = 39, .external_lex_state = 12}, - [2694] = {.lex_state = 39, .external_lex_state = 10}, - [2695] = {.lex_state = 39, .external_lex_state = 12}, - [2696] = {.lex_state = 39, .external_lex_state = 10}, - [2697] = {.lex_state = 39, .external_lex_state = 12}, - [2698] = {.lex_state = 39, .external_lex_state = 12}, - [2699] = {.lex_state = 39, .external_lex_state = 12}, - [2700] = {.lex_state = 39, .external_lex_state = 12}, - [2701] = {.lex_state = 39, .external_lex_state = 12}, - [2702] = {.lex_state = 39, .external_lex_state = 12}, - [2703] = {.lex_state = 39, .external_lex_state = 12}, - [2704] = {.lex_state = 39, .external_lex_state = 12}, - [2705] = {.lex_state = 3, .external_lex_state = 10}, - [2706] = {.lex_state = 39, .external_lex_state = 9}, - [2707] = {.lex_state = 39, .external_lex_state = 12}, - [2708] = {.lex_state = 39, .external_lex_state = 8}, - [2709] = {.lex_state = 3, .external_lex_state = 10}, + [2519] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [2525] = {.lex_state = 39, .external_lex_state = 6}, + [2526] = {.lex_state = 39, .external_lex_state = 2}, + [2527] = {.lex_state = 39, .external_lex_state = 7}, + [2528] = {.lex_state = 39, .external_lex_state = 8}, + [2529] = {.lex_state = 39, .external_lex_state = 6}, + [2530] = {.lex_state = 39, .external_lex_state = 6}, + [2531] = {.lex_state = 39, .external_lex_state = 6}, + [2532] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [2550] = {.lex_state = 39, .external_lex_state = 2}, + [2551] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [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}, + [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}, + [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}, + [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}, + [2592] = {.lex_state = 39, .external_lex_state = 6}, + [2593] = {.lex_state = 39, .external_lex_state = 2}, + [2594] = {.lex_state = 39, .external_lex_state = 2}, + [2595] = {.lex_state = 39, .external_lex_state = 6}, + [2596] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [2621] = {.lex_state = 39, .external_lex_state = 7}, + [2622] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [2629] = {.lex_state = 39, .external_lex_state = 8}, + [2630] = {.lex_state = 39, .external_lex_state = 6}, + [2631] = {.lex_state = 39, .external_lex_state = 6}, + [2632] = {.lex_state = 39, .external_lex_state = 7}, + [2633] = {.lex_state = 39, .external_lex_state = 7}, + [2634] = {.lex_state = 39, .external_lex_state = 7}, + [2635] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [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}, + [2655] = {.lex_state = 39, .external_lex_state = 7}, + [2656] = {.lex_state = 39, .external_lex_state = 7}, + [2657] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [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}, + [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}, + [2671] = {.lex_state = 39, .external_lex_state = 7}, + [2672] = {.lex_state = 39, .external_lex_state = 8}, + [2673] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [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 = 10}, - [2712] = {.lex_state = 39, .external_lex_state = 8}, - [2713] = {.lex_state = 39, .external_lex_state = 8}, - [2714] = {.lex_state = 39, .external_lex_state = 12}, - [2715] = {.lex_state = 39, .external_lex_state = 12}, - [2716] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [2716] = {.lex_state = 39, .external_lex_state = 8}, [2717] = {.lex_state = 39, .external_lex_state = 8}, - [2718] = {.lex_state = 39, .external_lex_state = 9}, - [2719] = {.lex_state = 3, .external_lex_state = 10}, - [2720] = {.lex_state = 3, .external_lex_state = 10}, - [2721] = {.lex_state = 39, .external_lex_state = 12}, + [2718] = {.lex_state = 3, .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}, [2722] = {.lex_state = 39, .external_lex_state = 8}, - [2723] = {.lex_state = 39, .external_lex_state = 8}, + [2723] = {.lex_state = 3, .external_lex_state = 7}, [2724] = {.lex_state = 39, .external_lex_state = 8}, [2725] = {.lex_state = 39, .external_lex_state = 8}, - [2726] = {.lex_state = 39, .external_lex_state = 9}, - [2727] = {.lex_state = 39, .external_lex_state = 12}, - [2728] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 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 = 10}, - [2734] = {.lex_state = 3, .external_lex_state = 10}, - [2735] = {.lex_state = 3, .external_lex_state = 10}, + [2733] = {.lex_state = 3, .external_lex_state = 7}, + [2734] = {.lex_state = 3, .external_lex_state = 7}, + [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 = 8}, - [2739] = {.lex_state = 39, .external_lex_state = 8}, - [2740] = {.lex_state = 39, .external_lex_state = 12}, - [2741] = {.lex_state = 39, .external_lex_state = 8}, - [2742] = {.lex_state = 3, .external_lex_state = 10}, - [2743] = {.lex_state = 39, .external_lex_state = 12}, - [2744] = {.lex_state = 39, .external_lex_state = 8}, - [2745] = {.lex_state = 3, .external_lex_state = 10}, - [2746] = {.lex_state = 3, .external_lex_state = 10}, - [2747] = {.lex_state = 3, .external_lex_state = 10}, - [2748] = {.lex_state = 39, .external_lex_state = 10}, - [2749] = {.lex_state = 39, .external_lex_state = 9}, - [2750] = {.lex_state = 39, .external_lex_state = 12}, - [2751] = {.lex_state = 39, .external_lex_state = 11}, - [2752] = {.lex_state = 39, .external_lex_state = 10}, - [2753] = {.lex_state = 39, .external_lex_state = 11}, - [2754] = {.lex_state = 39, .external_lex_state = 12}, - [2755] = {.lex_state = 39, .external_lex_state = 12}, - [2756] = {.lex_state = 39, .external_lex_state = 10}, - [2757] = {.lex_state = 39, .external_lex_state = 11}, - [2758] = {.lex_state = 39, .external_lex_state = 10}, - [2759] = {.lex_state = 39, .external_lex_state = 12}, - [2760] = {.lex_state = 39, .external_lex_state = 9}, - [2761] = {.lex_state = 39, .external_lex_state = 11}, - [2762] = {.lex_state = 39, .external_lex_state = 10}, - [2763] = {.lex_state = 39, .external_lex_state = 12}, - [2764] = {.lex_state = 39, .external_lex_state = 11}, - [2765] = {.lex_state = 39, .external_lex_state = 12}, - [2766] = {.lex_state = 39, .external_lex_state = 11}, - [2767] = {.lex_state = 39, .external_lex_state = 11}, - [2768] = {.lex_state = 39, .external_lex_state = 12}, - [2769] = {.lex_state = 39, .external_lex_state = 9}, - [2770] = {.lex_state = 39, .external_lex_state = 11}, - [2771] = {.lex_state = 39, .external_lex_state = 10}, - [2772] = {.lex_state = 39, .external_lex_state = 10}, - [2773] = {.lex_state = 39, .external_lex_state = 12}, - [2774] = {.lex_state = 39, .external_lex_state = 10}, - [2775] = {.lex_state = 39, .external_lex_state = 11}, - [2776] = {.lex_state = 39, .external_lex_state = 12}, - [2777] = {.lex_state = 39, .external_lex_state = 11}, - [2778] = {.lex_state = 39, .external_lex_state = 11}, - [2779] = {.lex_state = 39, .external_lex_state = 10}, - [2780] = {.lex_state = 39, .external_lex_state = 11}, - [2781] = {.lex_state = 39, .external_lex_state = 10}, - [2782] = {.lex_state = 39, .external_lex_state = 11}, - [2783] = {.lex_state = 39, .external_lex_state = 11}, - [2784] = {.lex_state = 39, .external_lex_state = 11}, - [2785] = {.lex_state = 39, .external_lex_state = 10}, - [2786] = {.lex_state = 39, .external_lex_state = 10}, - [2787] = {.lex_state = 39, .external_lex_state = 12}, - [2788] = {.lex_state = 39, .external_lex_state = 12}, - [2789] = {.lex_state = 39, .external_lex_state = 10}, - [2790] = {.lex_state = 39, .external_lex_state = 10}, - [2791] = {.lex_state = 39, .external_lex_state = 12}, - [2792] = {.lex_state = 39, .external_lex_state = 10}, - [2793] = {.lex_state = 39, .external_lex_state = 10}, - [2794] = {.lex_state = 39, .external_lex_state = 12}, - [2795] = {.lex_state = 39, .external_lex_state = 10}, - [2796] = {.lex_state = 39, .external_lex_state = 11}, - [2797] = {.lex_state = 39, .external_lex_state = 12}, - [2798] = {.lex_state = 39, .external_lex_state = 11}, - [2799] = {.lex_state = 39, .external_lex_state = 9}, - [2800] = {.lex_state = 39, .external_lex_state = 9}, - [2801] = {.lex_state = 39, .external_lex_state = 9}, - [2802] = {.lex_state = 39, .external_lex_state = 12}, - [2803] = {.lex_state = 39, .external_lex_state = 11}, - [2804] = {.lex_state = 39, .external_lex_state = 9}, - [2805] = {.lex_state = 39, .external_lex_state = 12}, - [2806] = {.lex_state = 39, .external_lex_state = 9}, + [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}, + [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}, + [2750] = {.lex_state = 3, .external_lex_state = 7}, + [2751] = {.lex_state = 3, .external_lex_state = 7}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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 = 11}, - [2809] = {.lex_state = 3, .external_lex_state = 10}, - [2810] = {.lex_state = 39, .external_lex_state = 11}, - [2811] = {.lex_state = 39, .external_lex_state = 11}, - [2812] = {.lex_state = 39, .external_lex_state = 9}, - [2813] = {.lex_state = 39, .external_lex_state = 12}, - [2814] = {.lex_state = 39, .external_lex_state = 10}, + [2808] = {.lex_state = 39, .external_lex_state = 4}, + [2809] = {.lex_state = 3, .external_lex_state = 7}, + [2810] = {.lex_state = 3, .external_lex_state = 7}, + [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 = 12}, - [2817] = {.lex_state = 39, .external_lex_state = 9}, - [2818] = {.lex_state = 39, .external_lex_state = 11}, - [2819] = {.lex_state = 39, .external_lex_state = 11}, - [2820] = {.lex_state = 39, .external_lex_state = 9}, - [2821] = {.lex_state = 39, .external_lex_state = 10}, - [2822] = {.lex_state = 39, .external_lex_state = 10}, - [2823] = {.lex_state = 39, .external_lex_state = 11}, - [2824] = {.lex_state = 39, .external_lex_state = 9}, - [2825] = {.lex_state = 39, .external_lex_state = 11}, - [2826] = {.lex_state = 39, .external_lex_state = 11}, - [2827] = {.lex_state = 39, .external_lex_state = 12}, + [2816] = {.lex_state = 39, .external_lex_state = 9}, + [2817] = {.lex_state = 39, .external_lex_state = 4}, + [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 = 11}, - [2830] = {.lex_state = 39, .external_lex_state = 10}, - [2831] = {.lex_state = 39, .external_lex_state = 10}, - [2832] = {.lex_state = 39, .external_lex_state = 11}, - [2833] = {.lex_state = 39, .external_lex_state = 9}, - [2834] = {.lex_state = 39, .external_lex_state = 12}, - [2835] = {.lex_state = 39, .external_lex_state = 10}, - [2836] = {.lex_state = 39, .external_lex_state = 12}, - [2837] = {.lex_state = 39, .external_lex_state = 9}, - [2838] = {.lex_state = 39, .external_lex_state = 11}, - [2839] = {.lex_state = 39, .external_lex_state = 11}, - [2840] = {.lex_state = 39, .external_lex_state = 12}, - [2841] = {.lex_state = 39, .external_lex_state = 9}, - [2842] = {.lex_state = 39, .external_lex_state = 10}, - [2843] = {.lex_state = 39, .external_lex_state = 10}, - [2844] = {.lex_state = 39, .external_lex_state = 11}, - [2845] = {.lex_state = 39, .external_lex_state = 11}, - [2846] = {.lex_state = 39, .external_lex_state = 10}, - [2847] = {.lex_state = 39, .external_lex_state = 11}, - [2848] = {.lex_state = 39, .external_lex_state = 12}, - [2849] = {.lex_state = 39, .external_lex_state = 10}, - [2850] = {.lex_state = 39, .external_lex_state = 9}, - [2851] = {.lex_state = 39, .external_lex_state = 12}, - [2852] = {.lex_state = 39, .external_lex_state = 10}, - [2853] = {.lex_state = 39, .external_lex_state = 12}, - [2854] = {.lex_state = 39, .external_lex_state = 12}, - [2855] = {.lex_state = 39, .external_lex_state = 11}, - [2856] = {.lex_state = 39, .external_lex_state = 12}, - [2857] = {.lex_state = 3, .external_lex_state = 10}, - [2858] = {.lex_state = 39, .external_lex_state = 11}, - [2859] = {.lex_state = 39, .external_lex_state = 9}, - [2860] = {.lex_state = 3, .external_lex_state = 10}, - [2861] = {.lex_state = 39, .external_lex_state = 11}, - [2862] = {.lex_state = 39, .external_lex_state = 12}, - [2863] = {.lex_state = 39, .external_lex_state = 10}, - [2864] = {.lex_state = 39, .external_lex_state = 11}, - [2865] = {.lex_state = 39, .external_lex_state = 11}, - [2866] = {.lex_state = 39, .external_lex_state = 10}, - [2867] = {.lex_state = 39, .external_lex_state = 11}, - [2868] = {.lex_state = 39, .external_lex_state = 11}, - [2869] = {.lex_state = 3, .external_lex_state = 10}, - [2870] = {.lex_state = 39, .external_lex_state = 9}, - [2871] = {.lex_state = 39, .external_lex_state = 12}, - [2872] = {.lex_state = 39, .external_lex_state = 11}, - [2873] = {.lex_state = 39, .external_lex_state = 11}, - [2874] = {.lex_state = 39, .external_lex_state = 11}, - [2875] = {.lex_state = 39, .external_lex_state = 11}, - [2876] = {.lex_state = 39, .external_lex_state = 9}, - [2877] = {.lex_state = 39, .external_lex_state = 9}, - [2878] = {.lex_state = 39, .external_lex_state = 10}, - [2879] = {.lex_state = 39, .external_lex_state = 10}, - [2880] = {.lex_state = 39, .external_lex_state = 11}, - [2881] = {.lex_state = 39, .external_lex_state = 9}, - [2882] = {.lex_state = 39, .external_lex_state = 9}, - [2883] = {.lex_state = 39, .external_lex_state = 12}, - [2884] = {.lex_state = 39, .external_lex_state = 11}, - [2885] = {.lex_state = 39, .external_lex_state = 11}, - [2886] = {.lex_state = 39, .external_lex_state = 11}, - [2887] = {.lex_state = 39, .external_lex_state = 10}, - [2888] = {.lex_state = 39, .external_lex_state = 12}, - [2889] = {.lex_state = 39, .external_lex_state = 10}, - [2890] = {.lex_state = 39, .external_lex_state = 9}, - [2891] = {.lex_state = 39, .external_lex_state = 11}, - [2892] = {.lex_state = 39, .external_lex_state = 10}, - [2893] = {.lex_state = 39, .external_lex_state = 12}, - [2894] = {.lex_state = 39, .external_lex_state = 10}, - [2895] = {.lex_state = 39, .external_lex_state = 10}, - [2896] = {.lex_state = 39, .external_lex_state = 11}, - [2897] = {.lex_state = 39, .external_lex_state = 12}, - [2898] = {.lex_state = 39, .external_lex_state = 11}, - [2899] = {.lex_state = 39, .external_lex_state = 11}, - [2900] = {.lex_state = 39, .external_lex_state = 10}, + [2829] = {.lex_state = 39, .external_lex_state = 2}, + [2830] = {.lex_state = 39, .external_lex_state = 9}, + [2831] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [2839] = {.lex_state = 39, .external_lex_state = 8}, + [2840] = {.lex_state = 39, .external_lex_state = 9}, + [2841] = {.lex_state = 39, .external_lex_state = 2}, + [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}, [2901] = {.lex_state = 39, .external_lex_state = 8}, - [2902] = {.lex_state = 39, .external_lex_state = 10}, - [2903] = {.lex_state = 39, .external_lex_state = 12}, - [2904] = {.lex_state = 39, .external_lex_state = 10}, - [2905] = {.lex_state = 39, .external_lex_state = 10}, - [2906] = {.lex_state = 39, .external_lex_state = 10}, - [2907] = {.lex_state = 39, .external_lex_state = 10}, - [2908] = {.lex_state = 39, .external_lex_state = 12}, - [2909] = {.lex_state = 39, .external_lex_state = 10}, - [2910] = {.lex_state = 3, .external_lex_state = 10}, - [2911] = {.lex_state = 39, .external_lex_state = 10}, - [2912] = {.lex_state = 39, .external_lex_state = 11}, - [2913] = {.lex_state = 39, .external_lex_state = 10}, - [2914] = {.lex_state = 39, .external_lex_state = 10}, - [2915] = {.lex_state = 3, .external_lex_state = 10}, - [2916] = {.lex_state = 39, .external_lex_state = 12}, - [2917] = {.lex_state = 39, .external_lex_state = 8}, - [2918] = {.lex_state = 39, .external_lex_state = 9}, + [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}, + [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}, + [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 = 9}, - [2921] = {.lex_state = 39, .external_lex_state = 9}, - [2922] = {.lex_state = 39, .external_lex_state = 2}, - [2923] = {.lex_state = 39, .external_lex_state = 10}, - [2924] = {.lex_state = 39, .external_lex_state = 9}, + [2920] = {.lex_state = 39, .external_lex_state = 2}, + [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}, [2925] = {.lex_state = 39, .external_lex_state = 9}, - [2926] = {.lex_state = 39, .external_lex_state = 10}, - [2927] = {.lex_state = 39, .external_lex_state = 10}, - [2928] = {.lex_state = 39, .external_lex_state = 9}, - [2929] = {.lex_state = 39, .external_lex_state = 9}, - [2930] = {.lex_state = 39, .external_lex_state = 10}, - [2931] = {.lex_state = 39, .external_lex_state = 10}, - [2932] = {.lex_state = 39, .external_lex_state = 10}, - [2933] = {.lex_state = 39, .external_lex_state = 9}, - [2934] = {.lex_state = 39, .external_lex_state = 9}, - [2935] = {.lex_state = 39, .external_lex_state = 9}, - [2936] = {.lex_state = 39, .external_lex_state = 9}, - [2937] = {.lex_state = 39, .external_lex_state = 11}, - [2938] = {.lex_state = 39, .external_lex_state = 10}, - [2939] = {.lex_state = 39, .external_lex_state = 10}, - [2940] = {.lex_state = 39, .external_lex_state = 10}, - [2941] = {.lex_state = 39, .external_lex_state = 12}, - [2942] = {.lex_state = 39, .external_lex_state = 10}, - [2943] = {.lex_state = 39, .external_lex_state = 10}, - [2944] = {.lex_state = 39, .external_lex_state = 9}, - [2945] = {.lex_state = 39, .external_lex_state = 9}, - [2946] = {.lex_state = 39, .external_lex_state = 11}, - [2947] = {.lex_state = 39, .external_lex_state = 8}, + [2926] = {.lex_state = 39, .external_lex_state = 9}, + [2927] = {.lex_state = 39, .external_lex_state = 8}, + [2928] = {.lex_state = 39, .external_lex_state = 8}, + [2929] = {.lex_state = 39, .external_lex_state = 2}, + [2930] = {.lex_state = 39, .external_lex_state = 9}, + [2931] = {.lex_state = 39, .external_lex_state = 4}, + [2932] = {.lex_state = 39, .external_lex_state = 8}, + [2933] = {.lex_state = 39, .external_lex_state = 8}, + [2934] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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 = 9}, - [2950] = {.lex_state = 39, .external_lex_state = 10}, - [2951] = {.lex_state = 39, .external_lex_state = 10}, - [2952] = {.lex_state = 39, .external_lex_state = 9}, - [2953] = {.lex_state = 39, .external_lex_state = 9}, - [2954] = {.lex_state = 39, .external_lex_state = 11}, - [2955] = {.lex_state = 39, .external_lex_state = 9}, - [2956] = {.lex_state = 39, .external_lex_state = 9}, - [2957] = {.lex_state = 39, .external_lex_state = 9}, - [2958] = {.lex_state = 39, .external_lex_state = 9}, - [2959] = {.lex_state = 39, .external_lex_state = 9}, - [2960] = {.lex_state = 39, .external_lex_state = 9}, + [2949] = {.lex_state = 39, .external_lex_state = 8}, + [2950] = {.lex_state = 39, .external_lex_state = 8}, + [2951] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 39, .external_lex_state = 9}, - [2963] = {.lex_state = 39, .external_lex_state = 10}, - [2964] = {.lex_state = 39, .external_lex_state = 2}, - [2965] = {.lex_state = 39, .external_lex_state = 9}, - [2966] = {.lex_state = 39, .external_lex_state = 11}, - [2967] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 10}, - [2970] = {.lex_state = 39, .external_lex_state = 10}, - [2971] = {.lex_state = 39, .external_lex_state = 10}, - [2972] = {.lex_state = 39, .external_lex_state = 9}, - [2973] = {.lex_state = 39, .external_lex_state = 9}, - [2974] = {.lex_state = 39, .external_lex_state = 9}, - [2975] = {.lex_state = 39, .external_lex_state = 2}, - [2976] = {.lex_state = 39, .external_lex_state = 9}, - [2977] = {.lex_state = 39, .external_lex_state = 9}, - [2978] = {.lex_state = 39, .external_lex_state = 9}, - [2979] = {.lex_state = 39, .external_lex_state = 9}, - [2980] = {.lex_state = 39, .external_lex_state = 9}, - [2981] = {.lex_state = 39, .external_lex_state = 10}, - [2982] = {.lex_state = 39, .external_lex_state = 9}, - [2983] = {.lex_state = 39, .external_lex_state = 9}, - [2984] = {.lex_state = 39, .external_lex_state = 9}, - [2985] = {.lex_state = 39, .external_lex_state = 9}, - [2986] = {.lex_state = 39, .external_lex_state = 9}, - [2987] = {.lex_state = 39, .external_lex_state = 10}, - [2988] = {.lex_state = 39, .external_lex_state = 10}, - [2989] = {.lex_state = 39, .external_lex_state = 11}, - [2990] = {.lex_state = 39, .external_lex_state = 9}, - [2991] = {.lex_state = 39, .external_lex_state = 12}, - [2992] = {.lex_state = 39, .external_lex_state = 9}, - [2993] = {.lex_state = 39, .external_lex_state = 9}, - [2994] = {.lex_state = 39, .external_lex_state = 9}, - [2995] = {.lex_state = 39, .external_lex_state = 9}, - [2996] = {.lex_state = 39, .external_lex_state = 9}, - [2997] = {.lex_state = 39, .external_lex_state = 10}, - [2998] = {.lex_state = 39, .external_lex_state = 10}, - [2999] = {.lex_state = 39, .external_lex_state = 11}, - [3000] = {.lex_state = 39, .external_lex_state = 10}, - [3001] = {.lex_state = 39, .external_lex_state = 9}, - [3002] = {.lex_state = 68, .external_lex_state = 9}, - [3003] = {.lex_state = 39, .external_lex_state = 10}, - [3004] = {.lex_state = 39, .external_lex_state = 10}, - [3005] = {.lex_state = 39, .external_lex_state = 8}, - [3006] = {.lex_state = 39, .external_lex_state = 10}, - [3007] = {.lex_state = 39, .external_lex_state = 10}, - [3008] = {.lex_state = 39, .external_lex_state = 9}, - [3009] = {.lex_state = 39, .external_lex_state = 9}, - [3010] = {.lex_state = 39, .external_lex_state = 12}, - [3011] = {.lex_state = 39, .external_lex_state = 12}, - [3012] = {.lex_state = 39, .external_lex_state = 8}, - [3013] = {.lex_state = 39, .external_lex_state = 12}, - [3014] = {.lex_state = 39, .external_lex_state = 10}, - [3015] = {.lex_state = 39, .external_lex_state = 12}, - [3016] = {.lex_state = 39, .external_lex_state = 9}, - [3017] = {.lex_state = 39, .external_lex_state = 9}, - [3018] = {.lex_state = 39, .external_lex_state = 9}, - [3019] = {.lex_state = 68, .external_lex_state = 9}, - [3020] = {.lex_state = 39, .external_lex_state = 10}, - [3021] = {.lex_state = 39, .external_lex_state = 10}, - [3022] = {.lex_state = 39, .external_lex_state = 10}, - [3023] = {.lex_state = 39, .external_lex_state = 9}, - [3024] = {.lex_state = 39, .external_lex_state = 9}, - [3025] = {.lex_state = 39, .external_lex_state = 11}, - [3026] = {.lex_state = 39, .external_lex_state = 10}, - [3027] = {.lex_state = 39, .external_lex_state = 12}, - [3028] = {.lex_state = 39, .external_lex_state = 10}, - [3029] = {.lex_state = 39, .external_lex_state = 9}, - [3030] = {.lex_state = 39, .external_lex_state = 10}, - [3031] = {.lex_state = 68, .external_lex_state = 9}, - [3032] = {.lex_state = 39, .external_lex_state = 9}, - [3033] = {.lex_state = 39, .external_lex_state = 10}, - [3034] = {.lex_state = 39, .external_lex_state = 11}, - [3035] = {.lex_state = 39, .external_lex_state = 10}, - [3036] = {.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}, + [2982] = {.lex_state = 39, .external_lex_state = 2}, + [2983] = {.lex_state = 39, .external_lex_state = 2}, + [2984] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [3011] = {.lex_state = 39, .external_lex_state = 9}, + [3012] = {.lex_state = 39, .external_lex_state = 9}, + [3013] = {.lex_state = 39, .external_lex_state = 9}, + [3014] = {.lex_state = 39, .external_lex_state = 9}, + [3015] = {.lex_state = 39, .external_lex_state = 9}, + [3016] = {.lex_state = 39, .external_lex_state = 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}, + [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}, + [3036] = {.lex_state = 3, .external_lex_state = 7}, [3037] = {.lex_state = 39, .external_lex_state = 9}, - [3038] = {.lex_state = 39, .external_lex_state = 11}, - [3039] = {.lex_state = 39, .external_lex_state = 12}, + [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 = 10}, - [3043] = {.lex_state = 39, .external_lex_state = 10}, - [3044] = {.lex_state = 39, .external_lex_state = 9}, + [3042] = {.lex_state = 39, .external_lex_state = 4}, + [3043] = {.lex_state = 39, .external_lex_state = 4}, + [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 = 11}, - [3048] = {.lex_state = 39, .external_lex_state = 10}, - [3049] = {.lex_state = 39, .external_lex_state = 9}, - [3050] = {.lex_state = 39, .external_lex_state = 9}, - [3051] = {.lex_state = 39, .external_lex_state = 9}, - [3052] = {.lex_state = 39, .external_lex_state = 10}, - [3053] = {.lex_state = 39, .external_lex_state = 10}, - [3054] = {.lex_state = 39, .external_lex_state = 9}, - [3055] = {.lex_state = 39, .external_lex_state = 10}, - [3056] = {.lex_state = 68, .external_lex_state = 9}, - [3057] = {.lex_state = 39, .external_lex_state = 9}, - [3058] = {.lex_state = 39, .external_lex_state = 10}, - [3059] = {.lex_state = 39, .external_lex_state = 9}, - [3060] = {.lex_state = 39, .external_lex_state = 9}, - [3061] = {.lex_state = 39, .external_lex_state = 11}, - [3062] = {.lex_state = 39, .external_lex_state = 9}, - [3063] = {.lex_state = 39, .external_lex_state = 9}, - [3064] = {.lex_state = 39, .external_lex_state = 12}, - [3065] = {.lex_state = 39, .external_lex_state = 9}, - [3066] = {.lex_state = 39, .external_lex_state = 9}, - [3067] = {.lex_state = 39, .external_lex_state = 9}, - [3068] = {.lex_state = 39, .external_lex_state = 11}, - [3069] = {.lex_state = 39, .external_lex_state = 11}, - [3070] = {.lex_state = 39, .external_lex_state = 10}, - [3071] = {.lex_state = 39, .external_lex_state = 9}, - [3072] = {.lex_state = 39, .external_lex_state = 10}, - [3073] = {.lex_state = 39, .external_lex_state = 12}, - [3074] = {.lex_state = 39, .external_lex_state = 8}, - [3075] = {.lex_state = 39, .external_lex_state = 10}, - [3076] = {.lex_state = 39, .external_lex_state = 10}, - [3077] = {.lex_state = 68, .external_lex_state = 9}, - [3078] = {.lex_state = 39, .external_lex_state = 12}, - [3079] = {.lex_state = 39, .external_lex_state = 9}, - [3080] = {.lex_state = 39, .external_lex_state = 12}, - [3081] = {.lex_state = 39, .external_lex_state = 10}, - [3082] = {.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}, + [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 = 8}, - [3085] = {.lex_state = 39, .external_lex_state = 12}, - [3086] = {.lex_state = 39, .external_lex_state = 8}, - [3087] = {.lex_state = 39, .external_lex_state = 9}, - [3088] = {.lex_state = 39, .external_lex_state = 10}, - [3089] = {.lex_state = 39, .external_lex_state = 9}, - [3090] = {.lex_state = 39, .external_lex_state = 10}, - [3091] = {.lex_state = 39, .external_lex_state = 9}, - [3092] = {.lex_state = 39, .external_lex_state = 11}, - [3093] = {.lex_state = 39, .external_lex_state = 9}, - [3094] = {.lex_state = 39, .external_lex_state = 9}, - [3095] = {.lex_state = 39, .external_lex_state = 9}, - [3096] = {.lex_state = 39, .external_lex_state = 9}, - [3097] = {.lex_state = 39, .external_lex_state = 9}, - [3098] = {.lex_state = 68, .external_lex_state = 9}, - [3099] = {.lex_state = 39, .external_lex_state = 8}, - [3100] = {.lex_state = 39, .external_lex_state = 9}, - [3101] = {.lex_state = 39, .external_lex_state = 9}, - [3102] = {.lex_state = 39, .external_lex_state = 10}, - [3103] = {.lex_state = 39, .external_lex_state = 9}, - [3104] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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 = 12}, + [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 = 10}, - [3110] = {.lex_state = 39, .external_lex_state = 11}, - [3111] = {.lex_state = 39, .external_lex_state = 10}, - [3112] = {.lex_state = 39, .external_lex_state = 9}, - [3113] = {.lex_state = 39, .external_lex_state = 9}, - [3114] = {.lex_state = 39, .external_lex_state = 11}, - [3115] = {.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 = 9}, - [3118] = {.lex_state = 39, .external_lex_state = 9}, - [3119] = {.lex_state = 68, .external_lex_state = 9}, - [3120] = {.lex_state = 39, .external_lex_state = 8}, - [3121] = {.lex_state = 39, .external_lex_state = 10}, - [3122] = {.lex_state = 39, .external_lex_state = 11}, - [3123] = {.lex_state = 39, .external_lex_state = 10}, - [3124] = {.lex_state = 39, .external_lex_state = 10}, - [3125] = {.lex_state = 39, .external_lex_state = 10}, + [3117] = {.lex_state = 39, .external_lex_state = 4}, + [3118] = {.lex_state = 39, .external_lex_state = 4}, + [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}, [3126] = {.lex_state = 39, .external_lex_state = 9}, - [3127] = {.lex_state = 39, .external_lex_state = 12}, + [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 = 10}, - [3132] = {.lex_state = 39, .external_lex_state = 10}, - [3133] = {.lex_state = 39, .external_lex_state = 10}, - [3134] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 10}, + [3136] = {.lex_state = 39, .external_lex_state = 9}, [3137] = {.lex_state = 39, .external_lex_state = 9}, - [3138] = {.lex_state = 39, .external_lex_state = 10}, - [3139] = {.lex_state = 39, .external_lex_state = 11}, - [3140] = {.lex_state = 39, .external_lex_state = 10}, - [3141] = {.lex_state = 39, .external_lex_state = 10}, - [3142] = {.lex_state = 39, .external_lex_state = 12}, - [3143] = {.lex_state = 39, .external_lex_state = 11}, - [3144] = {.lex_state = 39, .external_lex_state = 11}, - [3145] = {.lex_state = 39, .external_lex_state = 10}, + [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}, - [3147] = {.lex_state = 39, .external_lex_state = 10}, - [3148] = {.lex_state = 39, .external_lex_state = 8}, - [3149] = {.lex_state = 39, .external_lex_state = 10}, - [3150] = {.lex_state = 39, .external_lex_state = 10}, - [3151] = {.lex_state = 39, .external_lex_state = 9}, - [3152] = {.lex_state = 39, .external_lex_state = 10}, - [3153] = {.lex_state = 39, .external_lex_state = 10}, - [3154] = {.lex_state = 39, .external_lex_state = 9}, - [3155] = {.lex_state = 39, .external_lex_state = 12}, - [3156] = {.lex_state = 39, .external_lex_state = 8}, - [3157] = {.lex_state = 39, .external_lex_state = 11}, - [3158] = {.lex_state = 39, .external_lex_state = 9}, - [3159] = {.lex_state = 39, .external_lex_state = 9}, - [3160] = {.lex_state = 39, .external_lex_state = 10}, - [3161] = {.lex_state = 39, .external_lex_state = 9}, - [3162] = {.lex_state = 39, .external_lex_state = 10}, - [3163] = {.lex_state = 39, .external_lex_state = 9}, - [3164] = {.lex_state = 39, .external_lex_state = 10}, - [3165] = {.lex_state = 39, .external_lex_state = 9}, - [3166] = {.lex_state = 39, .external_lex_state = 12}, - [3167] = {.lex_state = 39, .external_lex_state = 9}, - [3168] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 9}, - [3171] = {.lex_state = 39, .external_lex_state = 9}, - [3172] = {.lex_state = 39, .external_lex_state = 9}, - [3173] = {.lex_state = 39, .external_lex_state = 8}, - [3174] = {.lex_state = 39, .external_lex_state = 9}, - [3175] = {.lex_state = 39, .external_lex_state = 9}, - [3176] = {.lex_state = 39, .external_lex_state = 11}, - [3177] = {.lex_state = 39, .external_lex_state = 9}, - [3178] = {.lex_state = 39, .external_lex_state = 9}, - [3179] = {.lex_state = 39, .external_lex_state = 9}, - [3180] = {.lex_state = 39, .external_lex_state = 9}, - [3181] = {.lex_state = 39, .external_lex_state = 9}, - [3182] = {.lex_state = 39, .external_lex_state = 9}, - [3183] = {.lex_state = 39, .external_lex_state = 9}, - [3184] = {.lex_state = 39, .external_lex_state = 9}, - [3185] = {.lex_state = 39, .external_lex_state = 10}, - [3186] = {.lex_state = 39, .external_lex_state = 9}, - [3187] = {.lex_state = 39, .external_lex_state = 8}, - [3188] = {.lex_state = 39, .external_lex_state = 9}, - [3189] = {.lex_state = 39, .external_lex_state = 10}, - [3190] = {.lex_state = 39, .external_lex_state = 11}, - [3191] = {.lex_state = 68, .external_lex_state = 9}, - [3192] = {.lex_state = 39, .external_lex_state = 9}, - [3193] = {.lex_state = 39, .external_lex_state = 9}, - [3194] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [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}, + [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 = 9}, + [3199] = {.lex_state = 39, .external_lex_state = 4}, [3200] = {.lex_state = 39, .external_lex_state = 9}, [3201] = {.lex_state = 39, .external_lex_state = 9}, - [3202] = {.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 = 9}, - [3205] = {.lex_state = 39, .external_lex_state = 9}, - [3206] = {.lex_state = 39, .external_lex_state = 11}, + [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 = 9}, - [3209] = {.lex_state = 39, .external_lex_state = 10}, - [3210] = {.lex_state = 39, .external_lex_state = 10}, + [3208] = {.lex_state = 39, .external_lex_state = 7}, + [3209] = {.lex_state = 39, .external_lex_state = 7}, + [3210] = {.lex_state = 39, .external_lex_state = 9}, [3211] = {.lex_state = 39, .external_lex_state = 9}, - [3212] = {.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 = 12}, + [3214] = {.lex_state = 39, .external_lex_state = 4}, [3215] = {.lex_state = 39, .external_lex_state = 9}, [3216] = {.lex_state = 39, .external_lex_state = 9}, - [3217] = {.lex_state = 39, .external_lex_state = 10}, - [3218] = {.lex_state = 39, .external_lex_state = 8}, - [3219] = {.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}, - [3221] = {.lex_state = 39, .external_lex_state = 12}, - [3222] = {.lex_state = 39, .external_lex_state = 9}, - [3223] = {.lex_state = 39, .external_lex_state = 9}, - [3224] = {.lex_state = 39, .external_lex_state = 9}, - [3225] = {.lex_state = 39, .external_lex_state = 9}, - [3226] = {.lex_state = 39, .external_lex_state = 9}, - [3227] = {.lex_state = 39, .external_lex_state = 9}, - [3228] = {.lex_state = 39, .external_lex_state = 9}, + [3221] = {.lex_state = 39, .external_lex_state = 4}, + [3222] = {.lex_state = 39, .external_lex_state = 2}, + [3223] = {.lex_state = 39, .external_lex_state = 4}, + [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}, [3229] = {.lex_state = 39, .external_lex_state = 9}, - [3230] = {.lex_state = 39, .external_lex_state = 11}, - [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 = 11}, - [3235] = {.lex_state = 39, .external_lex_state = 10}, - [3236] = {.lex_state = 39, .external_lex_state = 9}, - [3237] = {.lex_state = 23, .external_lex_state = 9}, - [3238] = {.lex_state = 39, .external_lex_state = 10}, - [3239] = {.lex_state = 39, .external_lex_state = 11}, - [3240] = {.lex_state = 39, .external_lex_state = 11}, - [3241] = {.lex_state = 68, .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 = 8}, - [3246] = {.lex_state = 39, .external_lex_state = 11}, - [3247] = {.lex_state = 39, .external_lex_state = 10}, - [3248] = {.lex_state = 39, .external_lex_state = 10}, - [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 = 9}, - [3256] = {.lex_state = 39, .external_lex_state = 11}, - [3257] = {.lex_state = 39, .external_lex_state = 10}, - [3258] = {.lex_state = 39, .external_lex_state = 10}, - [3259] = {.lex_state = 39, .external_lex_state = 10}, - [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 = 12}, - [3265] = {.lex_state = 39, .external_lex_state = 8}, - [3266] = {.lex_state = 39, .external_lex_state = 9}, - [3267] = {.lex_state = 39, .external_lex_state = 8}, - [3268] = {.lex_state = 39, .external_lex_state = 8}, - [3269] = {.lex_state = 39, .external_lex_state = 10}, - [3270] = {.lex_state = 39, .external_lex_state = 10}, - [3271] = {.lex_state = 39, .external_lex_state = 8}, - [3272] = {.lex_state = 39, .external_lex_state = 10}, - [3273] = {.lex_state = 39, .external_lex_state = 10}, - [3274] = {.lex_state = 39, .external_lex_state = 10}, - [3275] = {.lex_state = 39, .external_lex_state = 9}, - [3276] = {.lex_state = 39, .external_lex_state = 9}, - [3277] = {.lex_state = 39, .external_lex_state = 9}, - [3278] = {.lex_state = 39, .external_lex_state = 9}, - [3279] = {.lex_state = 39, .external_lex_state = 10}, - [3280] = {.lex_state = 39, .external_lex_state = 9}, - [3281] = {.lex_state = 39, .external_lex_state = 9}, - [3282] = {.lex_state = 39, .external_lex_state = 9}, - [3283] = {.lex_state = 39, .external_lex_state = 9}, - [3284] = {.lex_state = 39, .external_lex_state = 9}, - [3285] = {.lex_state = 39, .external_lex_state = 9}, - [3286] = {.lex_state = 39, .external_lex_state = 9}, - [3287] = {.lex_state = 39, .external_lex_state = 9}, - [3288] = {.lex_state = 39, .external_lex_state = 9}, - [3289] = {.lex_state = 39, .external_lex_state = 9}, - [3290] = {.lex_state = 39, .external_lex_state = 9}, - [3291] = {.lex_state = 39, .external_lex_state = 9}, - [3292] = {.lex_state = 39, .external_lex_state = 9}, - [3293] = {.lex_state = 39, .external_lex_state = 9}, - [3294] = {.lex_state = 39, .external_lex_state = 9}, - [3295] = {.lex_state = 39, .external_lex_state = 9}, - [3296] = {.lex_state = 39, .external_lex_state = 9}, - [3297] = {.lex_state = 39, .external_lex_state = 9}, - [3298] = {.lex_state = 39, .external_lex_state = 9}, - [3299] = {.lex_state = 39, .external_lex_state = 9}, - [3300] = {.lex_state = 39, .external_lex_state = 9}, - [3301] = {.lex_state = 39, .external_lex_state = 9}, - [3302] = {.lex_state = 39, .external_lex_state = 9}, - [3303] = {.lex_state = 39, .external_lex_state = 9}, - [3304] = {.lex_state = 39, .external_lex_state = 9}, - [3305] = {.lex_state = 39, .external_lex_state = 9}, - [3306] = {.lex_state = 39, .external_lex_state = 9}, - [3307] = {.lex_state = 39, .external_lex_state = 9}, - [3308] = {.lex_state = 39, .external_lex_state = 9}, - [3309] = {.lex_state = 39, .external_lex_state = 9}, - [3310] = {.lex_state = 39, .external_lex_state = 9}, - [3311] = {.lex_state = 39, .external_lex_state = 9}, - [3312] = {.lex_state = 39, .external_lex_state = 9}, - [3313] = {.lex_state = 39, .external_lex_state = 9}, - [3314] = {.lex_state = 39, .external_lex_state = 9}, - [3315] = {.lex_state = 39, .external_lex_state = 9}, - [3316] = {.lex_state = 39, .external_lex_state = 9}, - [3317] = {.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}, + [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}, + [3293] = {.lex_state = 39, .external_lex_state = 4}, + [3294] = {.lex_state = 39, .external_lex_state = 8}, + [3295] = {.lex_state = 39, .external_lex_state = 2}, + [3296] = {.lex_state = 39, .external_lex_state = 2}, + [3297] = {.lex_state = 39, .external_lex_state = 2}, + [3298] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [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}, + [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}, + [3333] = {.lex_state = 39, .external_lex_state = 2}, + [3334] = {.lex_state = 39, .external_lex_state = 2}, + [3335] = {.lex_state = 39, .external_lex_state = 4}, + [3336] = {.lex_state = 39, .external_lex_state = 4}, + [3337] = {.lex_state = 39, .external_lex_state = 3}, + [3338] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [3361] = {.lex_state = 39, .external_lex_state = 5}, + [3362] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [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}, + [3374] = {.lex_state = 39, .external_lex_state = 2}, + [3375] = {.lex_state = 39, .external_lex_state = 5}, + [3376] = {.lex_state = 39, .external_lex_state = 5}, + [3377] = {.lex_state = 39, .external_lex_state = 5}, + [3378] = {.lex_state = 39, .external_lex_state = 4}, + [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}, + [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}, + [3389] = {.lex_state = 39, .external_lex_state = 2}, + [3390] = {.lex_state = 39, .external_lex_state = 9}, + [3391] = {.lex_state = 39, .external_lex_state = 2}, + [3392] = {.lex_state = 39, .external_lex_state = 5}, + [3393] = {.lex_state = 39, .external_lex_state = 2}, + [3394] = {.lex_state = 39, .external_lex_state = 2}, + [3395] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [3417] = {.lex_state = 39, .external_lex_state = 5}, + [3418] = {.lex_state = 39, .external_lex_state = 7}, + [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}, + [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}, + [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}, + [3489] = {.lex_state = 39, .external_lex_state = 12}, + [3490] = {.lex_state = 39, .external_lex_state = 11}, + [3491] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [3496] = {.lex_state = 39, .external_lex_state = 11}, + [3497] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [3503] = {.lex_state = 39, .external_lex_state = 11}, + [3504] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [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}, + [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}, + [3524] = {.lex_state = 39, .external_lex_state = 11}, + [3525] = {.lex_state = 39, .external_lex_state = 12}, + [3526] = {.lex_state = 39, .external_lex_state = 11}, + [3527] = {.lex_state = 39, .external_lex_state = 11}, + [3528] = {.lex_state = 39, .external_lex_state = 11}, + [3529] = {.lex_state = 39, .external_lex_state = 11}, + [3530] = {.lex_state = 39, .external_lex_state = 12}, + [3531] = {.lex_state = 39, .external_lex_state = 11}, + [3532] = {.lex_state = 39, .external_lex_state = 12}, + [3533] = {.lex_state = 39, .external_lex_state = 11}, + [3534] = {.lex_state = 39, .external_lex_state = 11}, + [3535] = {.lex_state = 39, .external_lex_state = 11}, + [3536] = {.lex_state = 39, .external_lex_state = 12}, + [3537] = {.lex_state = 39, .external_lex_state = 12}, + [3538] = {.lex_state = 39, .external_lex_state = 11}, + [3539] = {.lex_state = 39, .external_lex_state = 12}, + [3540] = {.lex_state = 39, .external_lex_state = 11}, + [3541] = {.lex_state = 39, .external_lex_state = 12}, + [3542] = {.lex_state = 39, .external_lex_state = 11}, + [3543] = {.lex_state = 39, .external_lex_state = 11}, + [3544] = {.lex_state = 39, .external_lex_state = 11}, + [3545] = {.lex_state = 39, .external_lex_state = 12}, + [3546] = {.lex_state = 39, .external_lex_state = 11}, + [3547] = {.lex_state = 39, .external_lex_state = 11}, + [3548] = {.lex_state = 39, .external_lex_state = 12}, + [3549] = {.lex_state = 39, .external_lex_state = 11}, + [3550] = {.lex_state = 39, .external_lex_state = 12}, + [3551] = {.lex_state = 39, .external_lex_state = 12}, + [3552] = {.lex_state = 39, .external_lex_state = 11}, + [3553] = {.lex_state = 39, .external_lex_state = 12}, + [3554] = {.lex_state = 39, .external_lex_state = 12}, + [3555] = {.lex_state = 39, .external_lex_state = 11}, + [3556] = {.lex_state = 39, .external_lex_state = 12}, + [3557] = {.lex_state = 39, .external_lex_state = 11}, + [3558] = {.lex_state = 39, .external_lex_state = 12}, + [3559] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [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}, + [3571] = {.lex_state = 39, .external_lex_state = 12}, + [3572] = {.lex_state = 39, .external_lex_state = 12}, + [3573] = {.lex_state = 39, .external_lex_state = 11}, + [3574] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [3592] = {.lex_state = 39, .external_lex_state = 12}, + [3593] = {.lex_state = 39, .external_lex_state = 11}, + [3594] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [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}, + [3624] = {.lex_state = 39, .external_lex_state = 11}, + [3625] = {.lex_state = 39, .external_lex_state = 6}, + [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}, + [3631] = {.lex_state = 39, .external_lex_state = 12}, + [3632] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [3637] = {.lex_state = 39, .external_lex_state = 12}, + [3638] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [3648] = {.lex_state = 39, .external_lex_state = 12}, + [3649] = {.lex_state = 39, .external_lex_state = 12}, + [3650] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [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}, + [3662] = {.lex_state = 39, .external_lex_state = 12}, + [3663] = {.lex_state = 39, .external_lex_state = 11}, + [3664] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [3709] = {.lex_state = 39, .external_lex_state = 11}, + [3710] = {.lex_state = 39, .external_lex_state = 11}, + [3711] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [3717] = {.lex_state = 39, .external_lex_state = 13}, + [3718] = {.lex_state = 39, .external_lex_state = 6}, + [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}, + [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}, + [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}, + [3743] = {.lex_state = 39, .external_lex_state = 13}, + [3744] = {.lex_state = 39, .external_lex_state = 11}, + [3745] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [3767] = {.lex_state = 39, .external_lex_state = 13}, + [3768] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [3776] = {.lex_state = 39, .external_lex_state = 11}, + [3777] = {.lex_state = 3, .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}, + [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}, + [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}, + [3809] = {.lex_state = 39, .external_lex_state = 13}, + [3810] = {.lex_state = 39, .external_lex_state = 13}, + [3811] = {.lex_state = 3, .external_lex_state = 12}, + [3812] = {.lex_state = 39, .external_lex_state = 13}, + [3813] = {.lex_state = 39, .external_lex_state = 13}, + [3814] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [3820] = {.lex_state = 39, .external_lex_state = 11}, + [3821] = {.lex_state = 3, .external_lex_state = 12}, + [3822] = {.lex_state = 3, .external_lex_state = 12}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [3878] = {.lex_state = 39, .external_lex_state = 11}, + [3879] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [3902] = {.lex_state = 39, .external_lex_state = 10}, + [3903] = {.lex_state = 39, .external_lex_state = 13}, + [3904] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [3918] = {.lex_state = 39, .external_lex_state = 13}, + [3919] = {.lex_state = 39, .external_lex_state = 5}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [3982] = {.lex_state = 39, .external_lex_state = 10}, + [3983] = {.lex_state = 39, .external_lex_state = 2}, + [3984] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [3992] = {.lex_state = 39, .external_lex_state = 10}, + [3993] = {.lex_state = 39, .external_lex_state = 10}, + [3994] = {.lex_state = 39, .external_lex_state = 2}, + [3995] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [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}, + [4013] = {.lex_state = 39, .external_lex_state = 2}, + [4014] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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}, + [4072] = {.lex_state = 39, .external_lex_state = 5}, + [4073] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [4086] = {.lex_state = 39, .external_lex_state = 5}, + [4087] = {.lex_state = 39, .external_lex_state = 13}, + [4088] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [4183] = {.lex_state = 3, .external_lex_state = 12}, + [4184] = {.lex_state = 3, .external_lex_state = 12}, + [4185] = {.lex_state = 39, .external_lex_state = 14}, + [4186] = {.lex_state = 3, .external_lex_state = 12}, + [4187] = {.lex_state = 39, .external_lex_state = 11}, + [4188] = {.lex_state = 39, .external_lex_state = 14}, + [4189] = {.lex_state = 3, .external_lex_state = 12}, + [4190] = {.lex_state = 39, .external_lex_state = 14}, + [4191] = {.lex_state = 39, .external_lex_state = 10}, + [4192] = {.lex_state = 3, .external_lex_state = 12}, + [4193] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [4218] = {.lex_state = 39, .external_lex_state = 14}, + [4219] = {.lex_state = 3, .external_lex_state = 7}, + [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}, + [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}, + [4242] = {.lex_state = 39, .external_lex_state = 14}, + [4243] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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}, + [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}, + [4300] = {.lex_state = 39, .external_lex_state = 10}, + [4301] = {.lex_state = 39, .external_lex_state = 14}, + [4302] = {.lex_state = 39, .external_lex_state = 14}, + [4303] = {.lex_state = 39, .external_lex_state = 14}, + [4304] = {.lex_state = 39, .external_lex_state = 14}, + [4305] = {.lex_state = 39, .external_lex_state = 10}, + [4306] = {.lex_state = 39, .external_lex_state = 10}, + [4307] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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}, + [4335] = {.lex_state = 39, .external_lex_state = 10}, + [4336] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [4483] = {.lex_state = 39, .external_lex_state = 7}, + [4484] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [4605] = {.lex_state = 39, .external_lex_state = 2}, + [4606] = {.lex_state = 39, .external_lex_state = 2}, + [4607] = {.lex_state = 39, .external_lex_state = 2}, + [4608] = {.lex_state = 39, .external_lex_state = 2}, + [4609] = {.lex_state = 39, .external_lex_state = 2}, + [4610] = {.lex_state = 39, .external_lex_state = 2}, + [4611] = {.lex_state = 39, .external_lex_state = 2}, + [4612] = {.lex_state = 39, .external_lex_state = 2}, + [4613] = {.lex_state = 39, .external_lex_state = 2}, + [4614] = {.lex_state = 39, .external_lex_state = 2}, + [4615] = {.lex_state = 39, .external_lex_state = 2}, + [4616] = {.lex_state = 39, .external_lex_state = 2}, + [4617] = {.lex_state = 39, .external_lex_state = 2}, + [4618] = {.lex_state = 39, .external_lex_state = 2}, + [4619] = {.lex_state = 39, .external_lex_state = 2}, + [4620] = {.lex_state = 39, .external_lex_state = 2}, + [4621] = {.lex_state = 39, .external_lex_state = 2}, + [4622] = {.lex_state = 39, .external_lex_state = 2}, + [4623] = {.lex_state = 39, .external_lex_state = 2}, + [4624] = {.lex_state = 39, .external_lex_state = 2}, + [4625] = {.lex_state = 39, .external_lex_state = 2}, + [4626] = {.lex_state = 39, .external_lex_state = 2}, + [4627] = {.lex_state = 39, .external_lex_state = 2}, + [4628] = {.lex_state = 39, .external_lex_state = 2}, + [4629] = {.lex_state = 39, .external_lex_state = 2}, + [4630] = {.lex_state = 39, .external_lex_state = 2}, + [4631] = {.lex_state = 39, .external_lex_state = 2}, + [4632] = {.lex_state = 39, .external_lex_state = 2}, + [4633] = {.lex_state = 39, .external_lex_state = 2}, + [4634] = {.lex_state = 39, .external_lex_state = 2}, + [4635] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [4640] = {.lex_state = 39, .external_lex_state = 2}, + [4641] = {.lex_state = 39, .external_lex_state = 2}, + [4642] = {.lex_state = 39, .external_lex_state = 2}, + [4643] = {.lex_state = 39, .external_lex_state = 2}, + [4644] = {.lex_state = 39, .external_lex_state = 2}, + [4645] = {.lex_state = 39, .external_lex_state = 2}, + [4646] = {.lex_state = 39, .external_lex_state = 2}, + [4647] = {.lex_state = 39, .external_lex_state = 2}, + [4648] = {.lex_state = 39, .external_lex_state = 2}, + [4649] = {.lex_state = 39, .external_lex_state = 2}, + [4650] = {.lex_state = 39, .external_lex_state = 2}, + [4651] = {.lex_state = 39, .external_lex_state = 2}, + [4652] = {.lex_state = 39, .external_lex_state = 2}, + [4653] = {.lex_state = 39, .external_lex_state = 2}, + [4654] = {.lex_state = 39, .external_lex_state = 2}, + [4655] = {.lex_state = 39, .external_lex_state = 2}, + [4656] = {.lex_state = 39, .external_lex_state = 2}, + [4657] = {.lex_state = 39, .external_lex_state = 2}, + [4658] = {.lex_state = 39, .external_lex_state = 2}, + [4659] = {.lex_state = 39, .external_lex_state = 2}, + [4660] = {.lex_state = 39, .external_lex_state = 2}, + [4661] = {.lex_state = 39, .external_lex_state = 2}, + [4662] = {.lex_state = 39, .external_lex_state = 2}, + [4663] = {.lex_state = 39, .external_lex_state = 2}, + [4664] = {.lex_state = 39, .external_lex_state = 2}, + [4665] = {.lex_state = 39, .external_lex_state = 2}, + [4666] = {.lex_state = 39, .external_lex_state = 2}, + [4667] = {.lex_state = 39, .external_lex_state = 2}, + [4668] = {.lex_state = 39, .external_lex_state = 2}, + [4669] = {.lex_state = 39, .external_lex_state = 2}, + [4670] = {.lex_state = 39, .external_lex_state = 2}, + [4671] = {.lex_state = 39, .external_lex_state = 2}, + [4672] = {.lex_state = 39, .external_lex_state = 2}, + [4673] = {.lex_state = 39, .external_lex_state = 2}, + [4674] = {.lex_state = 39, .external_lex_state = 2}, + [4675] = {.lex_state = 39, .external_lex_state = 2}, + [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}, + [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}, + [4774] = {.lex_state = 39, .external_lex_state = 11}, + [4775] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [4780] = {.lex_state = 39, .external_lex_state = 12}, + [4781] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [4934] = {.lex_state = 39, .external_lex_state = 2}, + [4935] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [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}, + [4954] = {.lex_state = 39, .external_lex_state = 2}, + [4955] = {.lex_state = 39, .external_lex_state = 12}, + [4956] = {.lex_state = 39, .external_lex_state = 2}, + [4957] = {.lex_state = 39, .external_lex_state = 14}, + [4958] = {.lex_state = 39, .external_lex_state = 2}, + [4959] = {.lex_state = 39, .external_lex_state = 2}, + [4960] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [5095] = {.lex_state = 39, .external_lex_state = 11}, + [5096] = {.lex_state = 39, .external_lex_state = 11}, + [5097] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [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}, + [5109] = {.lex_state = 39, .external_lex_state = 12}, + [5110] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [5132] = {.lex_state = 39, .external_lex_state = 13}, + [5133] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [5138] = {.lex_state = 39, .external_lex_state = 12}, + [5139] = {.lex_state = 39, .external_lex_state = 12}, + [5140] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [5145] = {.lex_state = 39, .external_lex_state = 11}, + [5146] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [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}, + [5156] = {.lex_state = 39, .external_lex_state = 12}, + [5157] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [5162] = {.lex_state = 39, .external_lex_state = 11}, + [5163] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [5171] = {.lex_state = 39, .external_lex_state = 11}, + [5172] = {.lex_state = 39, .external_lex_state = 11}, + [5173] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [5179] = {.lex_state = 39, .external_lex_state = 11}, + [5180] = {.lex_state = 39, .external_lex_state = 11}, + [5181] = {.lex_state = 39, .external_lex_state = 11}, + [5182] = {.lex_state = 39, .external_lex_state = 11}, + [5183] = {.lex_state = 39, .external_lex_state = 11}, + [5184] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [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}, + [5201] = {.lex_state = 39, .external_lex_state = 11}, + [5202] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [5208] = {.lex_state = 39, .external_lex_state = 11}, + [5209] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [5250] = {.lex_state = 39, .external_lex_state = 11}, + [5251] = {.lex_state = 39, .external_lex_state = 11}, + [5252] = {.lex_state = 39, .external_lex_state = 10}, + [5253] = {.lex_state = 39, .external_lex_state = 11}, + [5254] = {.lex_state = 21, .external_lex_state = 11}, + [5255] = {.lex_state = 39, .external_lex_state = 11}, + [5256] = {.lex_state = 21, .external_lex_state = 11}, + [5257] = {.lex_state = 39, .external_lex_state = 11}, + [5258] = {.lex_state = 22, .external_lex_state = 15}, + [5259] = {.lex_state = 39, .external_lex_state = 11}, + [5260] = {.lex_state = 39, .external_lex_state = 11}, + [5261] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [5266] = {.lex_state = 39, .external_lex_state = 11}, + [5267] = {.lex_state = 39, .external_lex_state = 11}, + [5268] = {.lex_state = 39, .external_lex_state = 12}, + [5269] = {.lex_state = 39, .external_lex_state = 11}, + [5270] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [5275] = {.lex_state = 39, .external_lex_state = 11}, + [5276] = {.lex_state = 39, .external_lex_state = 11}, + [5277] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [5380] = {.lex_state = 39, .external_lex_state = 11}, + [5381] = {.lex_state = 39, .external_lex_state = 14}, + [5382] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [5389] = {.lex_state = 39, .external_lex_state = 14}, + [5390] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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}, + [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}, + [5444] = {.lex_state = 39, .external_lex_state = 14}, + [5445] = {.lex_state = 39, .external_lex_state = 14}, + [5446] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [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}, + [5518] = {.lex_state = 39, .external_lex_state = 13}, + [5519] = {.lex_state = 39, .external_lex_state = 13}, + [5520] = {.lex_state = 39, .external_lex_state = 13}, + [5521] = {.lex_state = 39, .external_lex_state = 13}, + [5522] = {.lex_state = 39, .external_lex_state = 12}, + [5523] = {.lex_state = 39, .external_lex_state = 12}, + [5524] = {.lex_state = 39, .external_lex_state = 12}, + [5525] = {.lex_state = 39, .external_lex_state = 13}, + [5526] = {.lex_state = 39, .external_lex_state = 12}, + [5527] = {.lex_state = 39, .external_lex_state = 12}, + [5528] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [5533] = {.lex_state = 39, .external_lex_state = 12}, + [5534] = {.lex_state = 39, .external_lex_state = 11}, + [5535] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [5540] = {.lex_state = 39, .external_lex_state = 13}, + [5541] = {.lex_state = 39, .external_lex_state = 12}, + [5542] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [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}, + [5554] = {.lex_state = 39, .external_lex_state = 13}, + [5555] = {.lex_state = 39, .external_lex_state = 12}, + [5556] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [5614] = {.lex_state = 39, .external_lex_state = 13}, + [5615] = {.lex_state = 39, .external_lex_state = 14}, + [5616] = {.lex_state = 39, .external_lex_state = 12}, + [5617] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [5630] = {.lex_state = 39, .external_lex_state = 13}, + [5631] = {.lex_state = 39, .external_lex_state = 11}, + [5632] = {.lex_state = 39, .external_lex_state = 12}, + [5633] = {.lex_state = 39, .external_lex_state = 11}, + [5634] = {.lex_state = 39, .external_lex_state = 12}, + [5635] = {.lex_state = 39, .external_lex_state = 11}, + [5636] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [5646] = {.lex_state = 39, .external_lex_state = 13}, + [5647] = {.lex_state = 39, .external_lex_state = 11}, + [5648] = {.lex_state = 39, .external_lex_state = 11}, + [5649] = {.lex_state = 39, .external_lex_state = 14}, + [5650] = {.lex_state = 39, .external_lex_state = 11}, + [5651] = {.lex_state = 39, .external_lex_state = 11}, + [5652] = {.lex_state = 39, .external_lex_state = 13}, + [5653] = {.lex_state = 39, .external_lex_state = 14}, + [5654] = {.lex_state = 39, .external_lex_state = 11}, + [5655] = {.lex_state = 39, .external_lex_state = 11}, + [5656] = {.lex_state = 39, .external_lex_state = 11}, + [5657] = {.lex_state = 39, .external_lex_state = 12}, + [5658] = {.lex_state = 39, .external_lex_state = 11}, + [5659] = {.lex_state = 39, .external_lex_state = 14}, + [5660] = {.lex_state = 39, .external_lex_state = 12}, + [5661] = {.lex_state = 39, .external_lex_state = 11}, + [5662] = {.lex_state = 39, .external_lex_state = 13}, + [5663] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [5722] = {.lex_state = 39, .external_lex_state = 12}, + [5723] = {.lex_state = 39, .external_lex_state = 12}, + [5724] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [5740] = {.lex_state = 39, .external_lex_state = 12}, + [5741] = {.lex_state = 39, .external_lex_state = 12}, + [5742] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [5765] = {.lex_state = 39, .external_lex_state = 12}, + [5766] = {.lex_state = 39, .external_lex_state = 12}, + [5767] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [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}, + [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}, + [5804] = {.lex_state = 39, .external_lex_state = 11}, + [5805] = {.lex_state = 39, .external_lex_state = 12}, + [5806] = {.lex_state = 39, .external_lex_state = 11}, + [5807] = {.lex_state = 39, .external_lex_state = 11}, + [5808] = {.lex_state = 39, .external_lex_state = 11}, + [5809] = {.lex_state = 39, .external_lex_state = 11}, + [5810] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [5828] = {.lex_state = 39, .external_lex_state = 11}, + [5829] = {.lex_state = 39, .external_lex_state = 11}, + [5830] = {.lex_state = 39, .external_lex_state = 14}, + [5831] = {.lex_state = 39, .external_lex_state = 12}, + [5832] = {.lex_state = 39, .external_lex_state = 11}, + [5833] = {.lex_state = 39, .external_lex_state = 11}, + [5834] = {.lex_state = 39, .external_lex_state = 10}, + [5835] = {.lex_state = 39, .external_lex_state = 11}, + [5836] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [5841] = {.lex_state = 39, .external_lex_state = 12}, + [5842] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [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}, + [5852] = {.lex_state = 39, .external_lex_state = 12}, + [5853] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [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}, + [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}, + [5888] = {.lex_state = 39, .external_lex_state = 11}, + [5889] = {.lex_state = 39, .external_lex_state = 11}, + [5890] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [5895] = {.lex_state = 39, .external_lex_state = 11}, + [5896] = {.lex_state = 39, .external_lex_state = 11}, + [5897] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [5909] = {.lex_state = 39, .external_lex_state = 11}, + [5910] = {.lex_state = 39, .external_lex_state = 11}, + [5911] = {.lex_state = 39, .external_lex_state = 11}, + [5912] = {.lex_state = 39, .external_lex_state = 11}, + [5913] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [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}, + [5931] = {.lex_state = 39, .external_lex_state = 11}, + [5932] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [5944] = {.lex_state = 39, .external_lex_state = 11}, + [5945] = {.lex_state = 68, .external_lex_state = 11}, + [5946] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [5957] = {.lex_state = 39, .external_lex_state = 11}, + [5958] = {.lex_state = 39, .external_lex_state = 11}, + [5959] = {.lex_state = 39, .external_lex_state = 11}, + [5960] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [5965] = {.lex_state = 39, .external_lex_state = 11}, + [5966] = {.lex_state = 39, .external_lex_state = 11}, + [5967] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [5972] = {.lex_state = 39, .external_lex_state = 11}, + [5973] = {.lex_state = 39, .external_lex_state = 12}, + [5974] = {.lex_state = 39, .external_lex_state = 11}, + [5975] = {.lex_state = 39, .external_lex_state = 11}, + [5976] = {.lex_state = 39, .external_lex_state = 11}, + [5977] = {.lex_state = 39, .external_lex_state = 11}, + [5978] = {.lex_state = 39, .external_lex_state = 11}, + [5979] = {.lex_state = 39, .external_lex_state = 11}, + [5980] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [5987] = {.lex_state = 39, .external_lex_state = 11}, + [5988] = {.lex_state = 39, .external_lex_state = 11}, + [5989] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [5995] = {.lex_state = 39, .external_lex_state = 11}, + [5996] = {.lex_state = 39, .external_lex_state = 11}, + [5997] = {.lex_state = 39, .external_lex_state = 12}, + [5998] = {.lex_state = 39, .external_lex_state = 11}, + [5999] = {.lex_state = 39, .external_lex_state = 11}, + [6000] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [6007] = {.lex_state = 39, .external_lex_state = 11}, + [6008] = {.lex_state = 39, .external_lex_state = 11}, + [6009] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [6015] = {.lex_state = 39, .external_lex_state = 13}, + [6016] = {.lex_state = 39, .external_lex_state = 12}, + [6017] = {.lex_state = 39, .external_lex_state = 12}, + [6018] = {.lex_state = 39, .external_lex_state = 12}, + [6019] = {.lex_state = 39, .external_lex_state = 12}, + [6020] = {.lex_state = 39, .external_lex_state = 12}, + [6021] = {.lex_state = 39, .external_lex_state = 13}, + [6022] = {.lex_state = 39, .external_lex_state = 11}, + [6023] = {.lex_state = 39, .external_lex_state = 11}, + [6024] = {.lex_state = 39, .external_lex_state = 11}, + [6025] = {.lex_state = 39, .external_lex_state = 11}, + [6026] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [6033] = {.lex_state = 39, .external_lex_state = 12}, + [6034] = {.lex_state = 39, .external_lex_state = 11}, + [6035] = {.lex_state = 39, .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}, + [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}, + [6045] = {.lex_state = 39, .external_lex_state = 11}, + [6046] = {.lex_state = 39, .external_lex_state = 11}, + [6047] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [6063] = {.lex_state = 39, .external_lex_state = 11}, + [6064] = {.lex_state = 39, .external_lex_state = 11}, + [6065] = {.lex_state = 39, .external_lex_state = 11}, + [6066] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [6072] = {.lex_state = 39, .external_lex_state = 11}, + [6073] = {.lex_state = 39, .external_lex_state = 11}, + [6074] = {.lex_state = 39, .external_lex_state = 11}, + [6075] = {.lex_state = 39, .external_lex_state = 11}, + [6076] = {.lex_state = 39, .external_lex_state = 11}, + [6077] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [6083] = {.lex_state = 39, .external_lex_state = 11}, + [6084] = {.lex_state = 39, .external_lex_state = 11}, + [6085] = {.lex_state = 39, .external_lex_state = 13}, + [6086] = {.lex_state = 39, .external_lex_state = 11}, + [6087] = {.lex_state = 39, .external_lex_state = 11}, + [6088] = {.lex_state = 39, .external_lex_state = 13}, + [6089] = {.lex_state = 39, .external_lex_state = 11}, + [6090] = {.lex_state = 39, .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}, + [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}, + [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}, + [6108] = {.lex_state = 39, .external_lex_state = 11}, + [6109] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [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}, + [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}, + [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}, + [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}, + [6139] = {.lex_state = 39, .external_lex_state = 11}, + [6140] = {.lex_state = 39, .external_lex_state = 12}, + [6141] = {.lex_state = 68, .external_lex_state = 11}, + [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}, + [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}, + [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}, + [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}, + [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}, + [6180] = {.lex_state = 39, .external_lex_state = 12}, + [6181] = {.lex_state = 39, .external_lex_state = 11}, + [6182] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [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}, + [6194] = {.lex_state = 39, .external_lex_state = 13}, + [6195] = {.lex_state = 39, .external_lex_state = 11}, + [6196] = {.lex_state = 39, .external_lex_state = 14}, + [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}, + [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}, + [6209] = {.lex_state = 39, .external_lex_state = 12}, + [6210] = {.lex_state = 39, .external_lex_state = 13}, + [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}, + [6215] = {.lex_state = 39, .external_lex_state = 11}, + [6216] = {.lex_state = 39, .external_lex_state = 11}, + [6217] = {.lex_state = 39, .external_lex_state = 11}, + [6218] = {.lex_state = 68, .external_lex_state = 11}, + [6219] = {.lex_state = 39, .external_lex_state = 11}, + [6220] = {.lex_state = 39, .external_lex_state = 11}, + [6221] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [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}, + [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}, + [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}, + [6262] = {.lex_state = 39, .external_lex_state = 12}, + [6263] = {.lex_state = 68, .external_lex_state = 11}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [6305] = {.lex_state = 39, .external_lex_state = 11}, + [6306] = {.lex_state = 39, .external_lex_state = 11}, + [6307] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [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}, + [6330] = {.lex_state = 39, .external_lex_state = 11}, + [6331] = {.lex_state = 39, .external_lex_state = 12}, + [6332] = {.lex_state = 39, .external_lex_state = 10}, + [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}, + [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}, + [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}, + [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}, + [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}, + [6368] = {.lex_state = 39, .external_lex_state = 11}, + [6369] = {.lex_state = 39, .external_lex_state = 11}, + [6370] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [6376] = {.lex_state = 39, .external_lex_state = 11}, + [6377] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [6382] = {.lex_state = 39, .external_lex_state = 11}, + [6383] = {.lex_state = 39, .external_lex_state = 11}, + [6384] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [6389] = {.lex_state = 39, .external_lex_state = 11}, + [6390] = {.lex_state = 39, .external_lex_state = 11}, + [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}, + [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}, + [6405] = {.lex_state = 39, .external_lex_state = 11}, + [6406] = {.lex_state = 39, .external_lex_state = 11}, }; enum { @@ -11299,13 +17582,12 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = anon_sym_RBRACE, }; -static const bool ts_external_scanner_states[14][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[16][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__newline] = true, [ts_external_token__indent] = true, [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, - [ts_external_token_escape_interpolation] = true, [ts_external_token_string_end] = true, [ts_external_token_comment] = true, [ts_external_token_RBRACK] = true, @@ -11317,51 +17599,62 @@ static const bool ts_external_scanner_states[14][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_comment] = true, }, [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__indent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, [5] = { + [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, }, [6] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, }, [7] = { [ts_external_token_string_start] = true, [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACE] = true, }, [8] = { - [ts_external_token__newline] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, }, [9] = { + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, }, [10] = { + [ts_external_token__newline] = true, [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, }, [11] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, }, [12] = { [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACE] = true, }, [13] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [14] = { + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [15] = { [ts_external_token__string_content] = true, [ts_external_token_escape_interpolation] = true, [ts_external_token_string_end] = true, @@ -11380,6 +17673,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), + [anon_sym_rule] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), [anon_sym_elif] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), @@ -11402,9 +17697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_type] = ACTIONS(1), [anon_sym_schema] = ACTIONS(1), [anon_sym_mixin] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), [anon_sym_protocol] = ACTIONS(1), - [anon_sym_rule] = ACTIONS(1), [anon_sym_check] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_QMARK_DOT] = ACTIONS(1), @@ -11450,8 +17743,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_int] = ACTIONS(1), [anon_sym_float] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), - [sym_raw_string_start] = ACTIONS(1), - [sym_escape_interpolation] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym__not_escape_sequence] = ACTIONS(1), [sym_integer] = ACTIONS(1), @@ -11483,82 +17774,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(3188), - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_schema_statement] = STATE(36), - [sym_mixin_statement] = STATE(36), - [sym_protocol_statement] = STATE(36), - [sym_rule_statement] = STATE(36), - [sym_check_statement] = STATE(36), - [sym_decorated_definition] = STATE(36), - [sym_decorator] = STATE(2287), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2438), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2287), + [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), [ts_builtin_sym_end] = ACTIONS(7), [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_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(21), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(31), - [anon_sym_mixin] = ACTIONS(33), - [anon_sym_protocol] = ACTIONS(35), - [anon_sym_rule] = ACTIONS(37), + [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_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), @@ -11578,89 +17870,1492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [2] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3007), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), + [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), + [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_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(75), + [anon_sym_and] = ACTIONS(59), + [anon_sym_or] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(63), + [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_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), + [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__dedent] = ACTIONS(63), + [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_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_if] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(63), + [anon_sym_rule] = ACTIONS(59), + [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_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(101), + [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_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(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), + [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(63), + [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_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_else] = ACTIONS(115), + [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_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_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), + [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__dedent] = ACTIONS(63), + [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(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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), + [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_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_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), + [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(63), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(153), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(63), + [sym_string_start] = ACTIONS(179), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(153), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(189), + [sym_string_start] = ACTIONS(111), + }, + [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), + [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_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(75), + [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_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(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), + [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(189), + [sym__dedent] = ACTIONS(189), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(63), + [sym_string_start] = ACTIONS(179), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(189), + [sym_string_start] = ACTIONS(179), + }, + [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), + [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_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_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), + [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(189), + [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), + [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_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_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), + [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(189), + [sym__dedent] = ACTIONS(189), + [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(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(41), + [anon_sym_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), @@ -11669,86 +19364,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__newline] = ACTIONS(223), + [sym__indent] = ACTIONS(225), [sym_string_start] = ACTIONS(55), }, - [3] = { - [sym__statement] = STATE(40), - [sym__simple_statements] = STATE(40), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(40), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(40), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(40), - [sym_mixin_statement] = STATE(40), - [sym_protocol_statement] = STATE(40), - [sym_rule_statement] = STATE(40), - [sym_check_statement] = STATE(40), - [sym_decorated_definition] = STATE(40), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1444), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(40), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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), + [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(227), + [sym__indent] = ACTIONS(229), + [sym_string_start] = ACTIONS(55), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(153), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(189), + [sym_string_start] = ACTIONS(179), + }, + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -11764,86 +19756,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [4] = { - [sym__statement] = STATE(40), - [sym__simple_statements] = STATE(40), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(40), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(40), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(40), - [sym_mixin_statement] = STATE(40), - [sym_protocol_statement] = STATE(40), - [sym_rule_statement] = STATE(40), - [sym_check_statement] = STATE(40), - [sym_decorated_definition] = STATE(40), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1752), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(40), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -11859,86 +19852,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [5] = { - [sym__statement] = STATE(40), - [sym__simple_statements] = STATE(40), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(40), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(40), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(40), - [sym_mixin_statement] = STATE(40), - [sym_protocol_statement] = STATE(40), - [sym_rule_statement] = STATE(40), - [sym_check_statement] = STATE(40), - [sym_decorated_definition] = STATE(40), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1750), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(40), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -11954,86 +19948,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [6] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3270), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12049,86 +20044,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [7] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3125), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12144,86 +20140,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [8] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3274), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12239,86 +20236,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [9] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3279), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12334,86 +20332,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [10] = { - [sym__statement] = STATE(40), - [sym__simple_statements] = STATE(40), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(40), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(40), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(40), - [sym_mixin_statement] = STATE(40), - [sym_protocol_statement] = STATE(40), - [sym_rule_statement] = STATE(40), - [sym_check_statement] = STATE(40), - [sym_decorated_definition] = STATE(40), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1701), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(40), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12429,86 +20428,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [11] = { - [sym__statement] = STATE(40), - [sym__simple_statements] = STATE(40), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(40), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(40), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(40), - [sym_mixin_statement] = STATE(40), - [sym_protocol_statement] = STATE(40), - [sym_rule_statement] = STATE(40), - [sym_check_statement] = STATE(40), - [sym_decorated_definition] = STATE(40), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1230), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(40), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12524,86 +20524,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [12] = { - [sym__statement] = STATE(40), - [sym__simple_statements] = STATE(40), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(40), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(40), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(40), - [sym_mixin_statement] = STATE(40), - [sym_protocol_statement] = STATE(40), - [sym_rule_statement] = STATE(40), - [sym_check_statement] = STATE(40), - [sym_decorated_definition] = STATE(40), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1698), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(40), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12619,86 +20620,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [13] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3136), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12714,86 +20716,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [14] = { - [sym__statement] = STATE(40), - [sym__simple_statements] = STATE(40), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(40), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(40), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(40), - [sym_mixin_statement] = STATE(40), - [sym_protocol_statement] = STATE(40), - [sym_rule_statement] = STATE(40), - [sym_check_statement] = STATE(40), - [sym_decorated_definition] = STATE(40), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1693), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(40), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12809,86 +20812,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [15] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3132), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12904,86 +20908,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [16] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3003), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -12999,86 +21004,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [17] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3058), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13094,86 +21100,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [18] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3053), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13189,86 +21196,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [19] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3111), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13284,86 +21292,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [20] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3258), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13379,86 +21388,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [21] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1715), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13474,86 +21484,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [22] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1704), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13569,86 +21580,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [23] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1223), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13664,86 +21676,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [24] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3028), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13759,86 +21772,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [25] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1713), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13854,86 +21868,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [26] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1700), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -13949,86 +21964,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [27] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3020), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14044,86 +22060,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [28] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3147), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14139,86 +22156,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [29] = { - [sym__statement] = STATE(40), - [sym__simple_statements] = STATE(40), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(40), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(40), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(40), - [sym_mixin_statement] = STATE(40), - [sym_protocol_statement] = STATE(40), - [sym_rule_statement] = STATE(40), - [sym_check_statement] = STATE(40), - [sym_decorated_definition] = STATE(40), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1751), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(40), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14234,86 +22252,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [30] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1433), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14329,86 +22348,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [31] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3081), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14424,86 +22444,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [32] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3153), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14519,86 +22540,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [33] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1678), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14614,86 +22636,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [34] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(3273), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14709,86 +22732,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [35] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2290), - [sym_block] = STATE(1733), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14804,86 +22828,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [36] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2287), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2438), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2287), - [ts_builtin_sym_end] = ACTIONS(77), + [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_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_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(21), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(31), - [anon_sym_mixin] = ACTIONS(33), - [anon_sym_protocol] = ACTIONS(35), - [anon_sym_rule] = ACTIONS(37), - [anon_sym_check] = ACTIONS(39), + [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), + [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), @@ -14899,84 +22924,87 @@ 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_string_start] = ACTIONS(55), }, - [37] = { - [sym__statement] = STATE(41), - [sym__simple_statements] = STATE(41), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(41), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(41), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(41), - [sym_mixin_statement] = STATE(41), - [sym_protocol_statement] = STATE(41), - [sym_rule_statement] = STATE(41), - [sym_check_statement] = STATE(41), - [sym_decorated_definition] = STATE(41), - [sym_decorator] = STATE(2290), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(41), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -14992,85 +23020,87 @@ 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(79), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [38] = { - [sym__statement] = STATE(41), - [sym__simple_statements] = STATE(41), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(41), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(41), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(41), - [sym_mixin_statement] = STATE(41), - [sym_protocol_statement] = STATE(41), - [sym_rule_statement] = STATE(41), - [sym_check_statement] = STATE(41), - [sym_decorated_definition] = STATE(41), - [sym_decorator] = STATE(2290), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(41), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -15086,179 +23116,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(81), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [39] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2287), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2438), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2287), - [ts_builtin_sym_end] = ACTIONS(83), - [sym_identifier] = ACTIONS(85), - [anon_sym_import] = ACTIONS(88), - [anon_sym_DOT] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(94), - [anon_sym_if] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_lambda] = ACTIONS(106), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_all] = ACTIONS(112), - [anon_sym_any] = ACTIONS(112), - [anon_sym_filter] = ACTIONS(112), - [anon_sym_map] = ACTIONS(112), - [anon_sym_type] = ACTIONS(115), - [anon_sym_schema] = ACTIONS(118), - [anon_sym_mixin] = ACTIONS(121), - [anon_sym_protocol] = ACTIONS(124), - [anon_sym_rule] = ACTIONS(127), - [anon_sym_check] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(133), - [anon_sym_QMARK_DOT] = ACTIONS(136), - [anon_sym_not] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(142), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(142), - [anon_sym_TILDE] = ACTIONS(142), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(148), - [sym_false] = ACTIONS(148), - [sym_none] = ACTIONS(148), - [sym_undefined] = ACTIONS(148), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(154), - }, - [40] = { - [sym__statement] = STATE(41), - [sym__simple_statements] = STATE(41), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(41), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(41), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(41), - [sym_mixin_statement] = STATE(41), - [sym_protocol_statement] = STATE(41), - [sym_rule_statement] = STATE(41), - [sym_check_statement] = STATE(41), - [sym_decorated_definition] = STATE(41), - [sym_decorator] = STATE(2290), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(41), - [aux_sym_decorated_definition_repeat1] = STATE(2290), + [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(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), + [anon_sym_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), + [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), @@ -15274,389 +23212,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(157), - [sym_string_start] = ACTIONS(55), - }, - [41] = { - [sym__statement] = STATE(41), - [sym__simple_statements] = STATE(41), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_if_statement] = STATE(41), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_schema_index_signature] = STATE(41), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_schema_statement] = STATE(41), - [sym_mixin_statement] = STATE(41), - [sym_protocol_statement] = STATE(41), - [sym_rule_statement] = STATE(41), - [sym_check_statement] = STATE(41), - [sym_decorated_definition] = STATE(41), - [sym_decorator] = STATE(2290), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2409), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [aux_sym_module_repeat1] = STATE(41), - [aux_sym_decorated_definition_repeat1] = STATE(2290), - [sym_identifier] = ACTIONS(85), - [anon_sym_import] = ACTIONS(88), - [anon_sym_DOT] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(94), - [anon_sym_if] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(100), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_lambda] = ACTIONS(106), - [anon_sym_LBRACE] = ACTIONS(109), - [anon_sym_all] = ACTIONS(112), - [anon_sym_any] = ACTIONS(112), - [anon_sym_filter] = ACTIONS(112), - [anon_sym_map] = ACTIONS(112), - [anon_sym_type] = ACTIONS(115), - [anon_sym_schema] = ACTIONS(165), - [anon_sym_mixin] = ACTIONS(168), - [anon_sym_protocol] = ACTIONS(171), - [anon_sym_rule] = ACTIONS(174), - [anon_sym_check] = ACTIONS(177), - [anon_sym_AT] = ACTIONS(133), - [anon_sym_QMARK_DOT] = ACTIONS(136), - [anon_sym_not] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(142), - [anon_sym_DQUOTE] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(142), - [anon_sym_TILDE] = ACTIONS(142), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(151), - [sym_true] = ACTIONS(148), - [sym_false] = ACTIONS(148), - [sym_none] = ACTIONS(148), - [sym_undefined] = ACTIONS(148), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(83), - [sym_string_start] = ACTIONS(154), - }, - [42] = { - [sym__simple_statements] = STATE(3014), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(182), - [sym__indent] = ACTIONS(184), - [sym_string_start] = ACTIONS(55), - }, - [43] = { - [sym__simple_statements] = STATE(1811), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2488), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(186), - [sym__indent] = ACTIONS(188), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [44] = { - [sym_schema_expr] = STATE(934), - [sym_schema_instantiation] = STATE(934), - [sym_lambda_expr] = STATE(934), - [sym_quant_expr] = STATE(934), - [sym_quant_op] = STATE(3096), - [sym_dotted_name] = STATE(2517), - [sym_expression] = STATE(1172), - [sym_as_expression] = STATE(932), - [sym_selector_expression] = STATE(907), - [sym_primary_expression] = STATE(704), - [sym_paren_expression] = STATE(934), - [sym_braces_expression] = STATE(934), - [sym_not_operator] = STATE(932), - [sym_boolean_operator] = STATE(932), - [sym_long_expression] = STATE(932), - [sym_string_literal_expr] = STATE(934), - [sym_config_expr] = STATE(934), - [sym_binary_operator] = STATE(929), - [sym_unary_operator] = STATE(934), - [sym_sequence_operation] = STATE(932), - [sym_in_operation] = STATE(920), - [sym_not_in_operation] = STATE(920), - [sym_comparison_operator] = STATE(932), - [sym_select_suffix] = STATE(934), - [sym_attribute] = STATE(934), - [sym_optional_attribute] = STATE(934), - [sym_optional_attribute_declaration] = STATE(934), - [sym_optional_item] = STATE(934), - [sym_null_coalesce] = STATE(934), - [sym_subscript] = STATE(929), - [sym_call] = STATE(905), - [sym_list] = STATE(913), - [sym_dictionary] = STATE(913), - [sym_list_comprehension] = STATE(913), - [sym_dictionary_comprehension] = STATE(913), - [sym_conditional_expression] = STATE(932), - [sym_string] = STATE(934), - [aux_sym_check_statement_repeat1] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(190), - [sym_identifier] = ACTIONS(192), - [anon_sym_import] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(197), - [anon_sym_assert] = ACTIONS(195), - [anon_sym_if] = ACTIONS(195), - [anon_sym_LPAREN] = ACTIONS(200), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(206), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_all] = ACTIONS(212), - [anon_sym_any] = ACTIONS(212), - [anon_sym_filter] = ACTIONS(212), - [anon_sym_map] = ACTIONS(212), - [anon_sym_type] = ACTIONS(195), - [anon_sym_schema] = ACTIONS(195), - [anon_sym_mixin] = ACTIONS(195), - [anon_sym_protocol] = ACTIONS(195), - [anon_sym_rule] = ACTIONS(195), - [anon_sym_check] = ACTIONS(195), - [anon_sym_AT] = ACTIONS(190), - [anon_sym_QMARK_DOT] = ACTIONS(215), - [anon_sym_not] = ACTIONS(218), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_TILDE] = ACTIONS(221), - [sym_integer] = ACTIONS(227), - [sym_float] = ACTIONS(230), - [sym_true] = ACTIONS(227), - [sym_false] = ACTIONS(227), - [sym_none] = ACTIONS(227), - [sym_undefined] = ACTIONS(227), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(233), - }, - [45] = { - [sym__simple_statements] = STATE(1669), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2518), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -15671,68 +23308,88 @@ 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(236), - [sym__indent] = ACTIONS(238), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [46] = { - [sym__simple_statements] = STATE(1714), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2488), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -15747,68 +23404,88 @@ 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(240), - [sym__indent] = ACTIONS(242), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(55), }, - [47] = { - [sym__simple_statements] = STATE(3104), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -15823,68 +23500,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(244), - [sym__indent] = ACTIONS(246), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [48] = { - [sym__simple_statements] = STATE(3075), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -15899,68 +23596,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(248), - [sym__indent] = ACTIONS(250), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [49] = { - [sym__simple_statements] = STATE(1188), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2488), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -15975,144 +23692,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(252), - [sym__indent] = ACTIONS(254), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [50] = { - [sym_schema_expr] = STATE(937), - [sym_schema_instantiation] = STATE(937), - [sym_lambda_expr] = STATE(937), - [sym_quant_expr] = STATE(937), - [sym_quant_op] = STATE(3024), - [sym_dotted_name] = STATE(2499), - [sym_expression] = STATE(1173), - [sym_as_expression] = STATE(939), - [sym_selector_expression] = STATE(908), - [sym_primary_expression] = STATE(630), - [sym_paren_expression] = STATE(937), - [sym_braces_expression] = STATE(937), - [sym_not_operator] = STATE(939), - [sym_boolean_operator] = STATE(939), - [sym_long_expression] = STATE(939), - [sym_string_literal_expr] = STATE(937), - [sym_config_expr] = STATE(937), - [sym_binary_operator] = STATE(940), - [sym_unary_operator] = STATE(937), - [sym_sequence_operation] = STATE(939), - [sym_in_operation] = STATE(910), - [sym_not_in_operation] = STATE(910), - [sym_comparison_operator] = STATE(939), - [sym_select_suffix] = STATE(937), - [sym_attribute] = STATE(937), - [sym_optional_attribute] = STATE(937), - [sym_optional_attribute_declaration] = STATE(937), - [sym_optional_item] = STATE(937), - [sym_null_coalesce] = STATE(937), - [sym_subscript] = STATE(940), - [sym_call] = STATE(881), - [sym_list] = STATE(942), - [sym_dictionary] = STATE(942), - [sym_list_comprehension] = STATE(942), - [sym_dictionary_comprehension] = STATE(942), - [sym_conditional_expression] = STATE(939), - [sym_string] = STATE(937), - [aux_sym_check_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(256), - [anon_sym_import] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_assert] = ACTIONS(195), - [anon_sym_if] = ACTIONS(195), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(265), - [anon_sym_lambda] = ACTIONS(268), - [anon_sym_LBRACE] = ACTIONS(271), - [anon_sym_all] = ACTIONS(212), - [anon_sym_any] = ACTIONS(212), - [anon_sym_filter] = ACTIONS(212), - [anon_sym_map] = ACTIONS(212), - [anon_sym_type] = ACTIONS(195), - [anon_sym_schema] = ACTIONS(195), - [anon_sym_mixin] = ACTIONS(195), - [anon_sym_protocol] = ACTIONS(195), - [anon_sym_rule] = ACTIONS(195), - [anon_sym_check] = ACTIONS(195), - [anon_sym_AT] = ACTIONS(190), - [anon_sym_QMARK_DOT] = ACTIONS(274), - [anon_sym_not] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(283), - [anon_sym_DASH] = ACTIONS(280), - [anon_sym_TILDE] = ACTIONS(280), - [sym_integer] = ACTIONS(286), - [sym_float] = ACTIONS(289), - [sym_true] = ACTIONS(286), - [sym_false] = ACTIONS(286), - [sym_none] = ACTIONS(286), - [sym_undefined] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(190), - [sym_string_start] = ACTIONS(292), - }, - [51] = { - [sym__simple_statements] = STATE(3272), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16127,68 +23788,88 @@ 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(295), - [sym__indent] = ACTIONS(297), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [52] = { - [sym__simple_statements] = STATE(3026), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16203,68 +23884,88 @@ 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(299), - [sym__indent] = ACTIONS(301), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [53] = { - [sym__simple_statements] = STATE(1708), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2488), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16279,68 +23980,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(303), - [sym__indent] = ACTIONS(305), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [54] = { - [sym__simple_statements] = STATE(3052), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16355,68 +24076,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(307), - [sym__indent] = ACTIONS(309), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [55] = { - [sym__simple_statements] = STATE(1694), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2518), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16431,68 +24172,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(311), - [sym__indent] = ACTIONS(313), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [56] = { - [sym__simple_statements] = STATE(3238), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16507,68 +24268,88 @@ 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(315), - [sym__indent] = ACTIONS(317), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [57] = { - [sym__simple_statements] = STATE(1662), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2518), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16583,68 +24364,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(319), - [sym__indent] = ACTIONS(321), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [58] = { - [sym__simple_statements] = STATE(3004), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16659,68 +24460,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(323), - [sym__indent] = ACTIONS(325), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [59] = { - [sym__simple_statements] = STATE(1703), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2488), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16735,68 +24556,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(327), - [sym__indent] = ACTIONS(329), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [60] = { - [sym__simple_statements] = STATE(3145), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16811,68 +24652,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(331), - [sym__indent] = ACTIONS(333), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [61] = { - [sym__simple_statements] = STATE(1448), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2488), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16887,68 +24748,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(335), - [sym__indent] = ACTIONS(337), + [sym__dedent] = ACTIONS(247), [sym_string_start] = ACTIONS(55), }, - [62] = { - [sym__simple_statements] = STATE(3149), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -16963,68 +24844,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(339), - [sym__indent] = ACTIONS(341), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [63] = { - [sym__simple_statements] = STATE(3133), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -17039,68 +24940,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__indent] = ACTIONS(345), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [64] = { - [sym__simple_statements] = STATE(3150), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -17115,220 +25036,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(347), - [sym__indent] = ACTIONS(349), + [sym__dedent] = ACTIONS(245), [sym_string_start] = ACTIONS(55), }, - [65] = { - [sym_schema_expr] = STATE(937), - [sym_schema_instantiation] = STATE(937), - [sym_lambda_expr] = STATE(937), - [sym_quant_expr] = STATE(937), - [sym_quant_op] = STATE(3024), - [sym_dotted_name] = STATE(2499), - [sym_expression] = STATE(1173), - [sym_as_expression] = STATE(939), - [sym_selector_expression] = STATE(908), - [sym_primary_expression] = STATE(630), - [sym_paren_expression] = STATE(937), - [sym_braces_expression] = STATE(937), - [sym_not_operator] = STATE(939), - [sym_boolean_operator] = STATE(939), - [sym_long_expression] = STATE(939), - [sym_string_literal_expr] = STATE(937), - [sym_config_expr] = STATE(937), - [sym_binary_operator] = STATE(940), - [sym_unary_operator] = STATE(937), - [sym_sequence_operation] = STATE(939), - [sym_in_operation] = STATE(910), - [sym_not_in_operation] = STATE(910), - [sym_comparison_operator] = STATE(939), - [sym_select_suffix] = STATE(937), - [sym_attribute] = STATE(937), - [sym_optional_attribute] = STATE(937), - [sym_optional_attribute_declaration] = STATE(937), - [sym_optional_item] = STATE(937), - [sym_null_coalesce] = STATE(937), - [sym_subscript] = STATE(940), - [sym_call] = STATE(881), - [sym_list] = STATE(942), - [sym_dictionary] = STATE(942), - [sym_list_comprehension] = STATE(942), - [sym_dictionary_comprehension] = STATE(942), - [sym_conditional_expression] = STATE(939), - [sym_string] = STATE(937), - [aux_sym_check_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(351), - [anon_sym_import] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(351), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_if] = ACTIONS(351), - [anon_sym_LPAREN] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_all] = ACTIONS(351), - [anon_sym_any] = ACTIONS(351), - [anon_sym_filter] = ACTIONS(351), - [anon_sym_map] = ACTIONS(351), - [anon_sym_type] = ACTIONS(351), - [anon_sym_schema] = ACTIONS(351), - [anon_sym_mixin] = ACTIONS(351), - [anon_sym_protocol] = ACTIONS(351), - [anon_sym_rule] = ACTIONS(351), - [anon_sym_check] = ACTIONS(351), - [anon_sym_AT] = ACTIONS(353), - [anon_sym_QMARK_DOT] = ACTIONS(353), - [anon_sym_not] = ACTIONS(351), - [anon_sym_PLUS] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(353), - [anon_sym_TILDE] = ACTIONS(353), - [sym_integer] = ACTIONS(351), - [sym_float] = ACTIONS(353), - [sym_true] = ACTIONS(351), - [sym_false] = ACTIONS(351), - [sym_none] = ACTIONS(351), - [sym_undefined] = ACTIONS(351), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(353), - [sym_string_start] = ACTIONS(353), - }, - [66] = { - [sym__simple_statements] = STATE(3022), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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(355), - [sym__indent] = ACTIONS(357), - [sym_string_start] = ACTIONS(55), + [sym__newline] = ACTIONS(63), + [sym__indent] = ACTIONS(63), + [sym_string_start] = ACTIONS(275), }, - [67] = { - [sym__simple_statements] = STATE(1833), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2518), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -17343,296 +25226,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__dedent] = ACTIONS(277), [sym_string_start] = ACTIONS(55), }, - [68] = { - [sym__simple_statements] = STATE(1440), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2518), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), - [sym_string_start] = ACTIONS(55), + [sym__dedent] = ACTIONS(348), + [sym_string_start] = ACTIONS(350), }, - [69] = { - [sym__simple_statements] = STATE(1798), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2518), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), - [sym_string_start] = ACTIONS(55), + [sym_string_start] = ACTIONS(350), }, - [70] = { - [sym__simple_statements] = STATE(1795), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2518), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), - [sym_string_start] = ACTIONS(55), + [sym__newline] = ACTIONS(63), + [sym__indent] = ACTIONS(63), + [sym_string_start] = ACTIONS(275), }, - [71] = { - [sym__simple_statements] = STATE(3235), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -17647,144 +25606,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__dedent] = ACTIONS(382), [sym_string_start] = ACTIONS(55), }, - [72] = { - [sym__simple_statements] = STATE(3269), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), - [sym_string_start] = ACTIONS(55), + [sym_string_start] = ACTIONS(408), }, - [73] = { - [sym__simple_statements] = STATE(3076), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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), + [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), @@ -17799,144 +25796,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), + [sym__dedent] = ACTIONS(410), [sym_string_start] = ACTIONS(55), }, - [74] = { - [sym__simple_statements] = STATE(1827), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2488), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(387), - [sym__indent] = ACTIONS(389), - [sym_string_start] = ACTIONS(55), + [sym_string_start] = ACTIONS(434), }, - [75] = { - [sym__simple_statements] = STATE(1824), - [sym_import_statement] = STATE(3187), - [sym_assert_statement] = STATE(3187), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3187), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2488), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3187), - [sym_augmented_assignment] = STATE(3187), - [sym_unification] = STATE(3187), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), + [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_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), + [anon_sym_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_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), @@ -17951,9281 +25987,26705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(391), - [sym__indent] = ACTIONS(393), [sym_string_start] = ACTIONS(55), }, - [76] = { - [sym__simple_statements] = STATE(3217), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(395), - [sym__indent] = ACTIONS(397), - [sym_string_start] = ACTIONS(55), + [sym__newline] = ACTIONS(189), + [sym__indent] = ACTIONS(189), + [sym_string_start] = ACTIONS(275), }, - [77] = { - [sym__simple_statements] = STATE(1191), - [sym_import_statement] = STATE(3194), - [sym_assert_statement] = STATE(3194), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3194), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2518), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3194), - [sym_augmented_assignment] = STATE(3194), - [sym_unification] = STATE(3194), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(399), - [sym__indent] = ACTIONS(401), - [sym_string_start] = ACTIONS(55), + [sym_string_start] = ACTIONS(434), }, - [78] = { - [sym_schema_expr] = STATE(934), - [sym_schema_instantiation] = STATE(934), - [sym_lambda_expr] = STATE(934), - [sym_quant_expr] = STATE(934), - [sym_quant_op] = STATE(3096), - [sym_dotted_name] = STATE(2517), - [sym_expression] = STATE(1172), - [sym_as_expression] = STATE(932), - [sym_selector_expression] = STATE(907), - [sym_primary_expression] = STATE(704), - [sym_paren_expression] = STATE(934), - [sym_braces_expression] = STATE(934), - [sym_not_operator] = STATE(932), - [sym_boolean_operator] = STATE(932), - [sym_long_expression] = STATE(932), - [sym_string_literal_expr] = STATE(934), - [sym_config_expr] = STATE(934), - [sym_binary_operator] = STATE(929), - [sym_unary_operator] = STATE(934), - [sym_sequence_operation] = STATE(932), - [sym_in_operation] = STATE(920), - [sym_not_in_operation] = STATE(920), - [sym_comparison_operator] = STATE(932), - [sym_select_suffix] = STATE(934), - [sym_attribute] = STATE(934), - [sym_optional_attribute] = STATE(934), - [sym_optional_attribute_declaration] = STATE(934), - [sym_optional_item] = STATE(934), - [sym_null_coalesce] = STATE(934), - [sym_subscript] = STATE(929), - [sym_call] = STATE(905), - [sym_list] = STATE(913), - [sym_dictionary] = STATE(913), - [sym_list_comprehension] = STATE(913), - [sym_dictionary_comprehension] = STATE(913), - [sym_conditional_expression] = STATE(932), - [sym_string] = STATE(934), - [aux_sym_check_statement_repeat1] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(353), - [sym_identifier] = ACTIONS(351), - [anon_sym_import] = ACTIONS(351), - [anon_sym_DOT] = ACTIONS(351), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_if] = ACTIONS(351), - [anon_sym_LPAREN] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_all] = ACTIONS(351), - [anon_sym_any] = ACTIONS(351), - [anon_sym_filter] = ACTIONS(351), - [anon_sym_map] = ACTIONS(351), - [anon_sym_type] = ACTIONS(351), - [anon_sym_schema] = ACTIONS(351), - [anon_sym_mixin] = ACTIONS(351), - [anon_sym_protocol] = ACTIONS(351), - [anon_sym_rule] = ACTIONS(351), - [anon_sym_check] = ACTIONS(351), - [anon_sym_AT] = ACTIONS(353), - [anon_sym_QMARK_DOT] = ACTIONS(353), - [anon_sym_not] = ACTIONS(351), - [anon_sym_PLUS] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(353), - [anon_sym_TILDE] = ACTIONS(353), - [sym_integer] = ACTIONS(351), - [sym_float] = ACTIONS(353), - [sym_true] = ACTIONS(351), - [sym_false] = ACTIONS(351), - [sym_none] = ACTIONS(351), - [sym_undefined] = ACTIONS(351), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(353), + [sym_string_start] = ACTIONS(472), }, - [79] = { - [sym__simple_statements] = STATE(3055), - [sym_import_statement] = STATE(3245), - [sym_assert_statement] = STATE(3245), - [sym_schema_expr] = STATE(1974), - [sym_schema_instantiation] = STATE(1974), - [sym_lambda_expr] = STATE(1974), - [sym_quant_expr] = STATE(1974), - [sym_quant_op] = STATE(3186), - [sym_type_alias_statement] = STATE(3245), - [sym_dotted_name] = STATE(2182), - [sym_expression] = STATE(2513), - [sym_as_expression] = STATE(1973), - [sym_selector_expression] = STATE(1642), - [sym_primary_expression] = STATE(1494), - [sym_paren_expression] = STATE(1974), - [sym_braces_expression] = STATE(1974), - [sym_not_operator] = STATE(1973), - [sym_boolean_operator] = STATE(1973), - [sym_long_expression] = STATE(1973), - [sym_string_literal_expr] = STATE(1974), - [sym_config_expr] = STATE(1974), - [sym_binary_operator] = STATE(1970), - [sym_unary_operator] = STATE(1974), - [sym_sequence_operation] = STATE(1973), - [sym_in_operation] = STATE(1969), - [sym_not_in_operation] = STATE(1969), - [sym_comparison_operator] = STATE(1973), - [sym_assignment] = STATE(3245), - [sym_augmented_assignment] = STATE(3245), - [sym_unification] = STATE(3245), - [sym_select_suffix] = STATE(1974), - [sym_attribute] = STATE(1974), - [sym_optional_attribute] = STATE(1974), - [sym_optional_attribute_declaration] = STATE(1974), - [sym_optional_item] = STATE(1974), - [sym_null_coalesce] = STATE(1974), - [sym_subscript] = STATE(1970), - [sym_call] = STATE(1495), - [sym_list] = STATE(1967), - [sym_dictionary] = STATE(1967), - [sym_list_comprehension] = STATE(1967), - [sym_dictionary_comprehension] = STATE(1967), - [sym_conditional_expression] = STATE(1973), - [sym_string] = STATE(1974), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [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_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(403), - [sym__indent] = ACTIONS(405), - [sym_string_start] = ACTIONS(55), - }, - [80] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2746), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(3021), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2672), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), - }, - [81] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2742), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2305), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(3124), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2656), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(445), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), - }, - [82] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2720), - [sym_dotted_name] = STATE(2307), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1961), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1961), - [sym_config_entries] = STATE(3248), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2634), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1961), - [sym_identifier] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(455), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(459), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(449), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(471), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(475), - }, - [83] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2720), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2316), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(3248), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2634), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), - }, - [84] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2733), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2317), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(3131), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2622), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), - }, - [85] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2747), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2306), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(2997), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2640), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), - }, - [86] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2745), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2298), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(3006), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2673), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(489), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(491), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), - }, - [87] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2709), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2311), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(3185), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2661), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), - }, - [88] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2711), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2314), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(3164), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2671), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), - }, - [89] = { - [sym_schema_expr] = STATE(1339), - [sym_schema_instantiation] = STATE(1339), - [sym_lambda_expr] = STATE(1339), - [sym_quant_expr] = STATE(1339), - [sym_quant_op] = STATE(3180), - [sym_dictionary_splat] = STATE(2734), - [sym_dotted_name] = STATE(2320), - [sym_expression] = STATE(2301), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1236), - [sym_primary_expression] = STATE(1229), - [sym_paren_expression] = STATE(1663), - [sym_braces_expression] = STATE(1339), - [sym_not_operator] = STATE(1348), - [sym_boolean_operator] = STATE(1348), - [sym_long_expression] = STATE(1348), - [sym_string_literal_expr] = STATE(1339), - [sym_config_expr] = STATE(1663), - [sym_config_entries] = STATE(3102), - [sym_config_entry] = STATE(2735), - [sym_test] = STATE(2749), - [sym_if_entry] = STATE(2869), - [sym_binary_operator] = STATE(1355), - [sym_unary_operator] = STATE(1339), - [sym_sequence_operation] = STATE(1348), - [sym_in_operation] = STATE(1359), - [sym_not_in_operation] = STATE(1359), - [sym_comparison_operator] = STATE(1348), - [sym_select_suffix] = STATE(1339), - [sym_attribute] = STATE(1339), - [sym_optional_attribute] = STATE(1339), - [sym_optional_attribute_declaration] = STATE(1339), - [sym_optional_item] = STATE(1339), - [sym_null_coalesce] = STATE(1339), - [sym_subscript] = STATE(1355), - [sym_call] = STATE(1227), - [sym_list] = STATE(1360), - [sym_dictionary] = STATE(1360), - [sym_pair] = STATE(2677), - [sym_list_comprehension] = STATE(1360), - [sym_dictionary_comprehension] = STATE(1360), - [sym_conditional_expression] = STATE(1348), - [sym_string] = STATE(1663), - [sym_identifier] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_lambda] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(425), - [anon_sym_QMARK_DOT] = ACTIONS(409), - [anon_sym_not] = ACTIONS(427), - [anon_sym_PLUS] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(431), - [anon_sym_LF] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [sym_integer] = ACTIONS(435), - [sym_float] = ACTIONS(435), - [sym_true] = ACTIONS(437), - [sym_false] = ACTIONS(437), - [sym_none] = ACTIONS(437), - [sym_undefined] = ACTIONS(437), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(439), + [sym_string_start] = ACTIONS(408), }, [90] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2289), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_basic_type] = STATE(3144), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3143), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(513), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(521), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(529), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_str] = ACTIONS(541), - [anon_sym_int] = ACTIONS(541), - [anon_sym_float] = ACTIONS(541), - [anon_sym_bool] = ACTIONS(541), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), + [sym__newline] = ACTIONS(189), + [sym__indent] = ACTIONS(189), + [sym_string_start] = ACTIONS(275), }, [91] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2289), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_basic_type] = STATE(3230), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3143), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(551), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(529), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_str] = ACTIONS(541), - [anon_sym_int] = ACTIONS(541), - [anon_sym_float] = ACTIONS(541), - [anon_sym_bool] = ACTIONS(541), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), + [sym_string_start] = ACTIONS(504), }, [92] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(528), }, [93] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2879), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2879), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(575), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(552), }, [94] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [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), + [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), }, [95] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [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), + [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), }, [96] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2793), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2672), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(528), }, [97] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(102), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(587), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(472), }, [98] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [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(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2795), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2795), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_lambda] = ACTIONS(490), + [anon_sym_DASH_GT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(492), + [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_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_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), + [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(475), + [sym_string_start] = ACTIONS(504), }, [100] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(552), }, [101] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2895), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2622), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(652), }, [102] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(528), }, [103] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(603), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym_string_start] = ACTIONS(55), }, [104] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2792), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2640), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_lambda] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(492), + [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(674), + [anon_sym_not] = ACTIONS(494), + [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_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(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), + [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(475), + [sym_string_start] = ACTIONS(504), }, [105] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym_string_start] = ACTIONS(700), }, [106] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2785), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2671), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(434), }, [107] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(732), }, [108] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2830), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2634), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(576), }, [109] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(528), }, [110] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2790), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2656), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(189), + [sym_string_start] = ACTIONS(700), }, [111] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2821), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2673), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(652), }, [112] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2792), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2792), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_lambda] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(492), + [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_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_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), + [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(475), + [sym_string_start] = ACTIONS(504), }, [113] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_as] = ACTIONS(191), + [anon_sym_if] = ACTIONS(191), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(219), + [anon_sym_lambda] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [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(43), + [anon_sym_not] = ACTIONS(670), + [anon_sym_and] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [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_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), + [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(475), + [sym__newline] = ACTIONS(189), + [sym_string_start] = ACTIONS(55), }, [114] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2795), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2677), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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(475), + [sym_string_start] = ACTIONS(434), }, [115] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), + [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(674), + [anon_sym_not] = ACTIONS(618), + [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_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), + [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(475), + [sym_string_start] = ACTIONS(504), }, [116] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(635), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(732), }, [117] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2793), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2793), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(504), }, [118] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2879), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2661), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(575), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym__dedent] = ACTIONS(63), + [sym_string_start] = ACTIONS(85), }, [119] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2830), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2830), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym_string_start] = ACTIONS(111), }, [120] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(637), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym_string_start] = ACTIONS(111), }, [121] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_lambda] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_all] = ACTIONS(659), - [anon_sym_any] = ACTIONS(659), - [anon_sym_filter] = ACTIONS(659), - [anon_sym_map] = ACTIONS(659), - [anon_sym_STAR_STAR] = ACTIONS(662), - [anon_sym_QMARK_DOT] = ACTIONS(665), - [anon_sym_not] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [sym_integer] = ACTIONS(677), - [sym_float] = ACTIONS(680), - [sym_true] = ACTIONS(677), - [sym_false] = ACTIONS(677), - [sym_none] = ACTIONS(677), - [sym_undefined] = ACTIONS(677), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(683), + [sym__newline] = ACTIONS(63), + [sym__dedent] = ACTIONS(63), + [sym_string_start] = ACTIONS(85), }, [122] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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(782), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(219), + [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_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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(790), + [sym__indent] = ACTIONS(792), + [sym_string_start] = ACTIONS(55), }, [123] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(688), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym_string_start] = ACTIONS(111), }, [124] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2067), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2369), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2067), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [aux_sym_dict_expr_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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(798), + [anon_sym_and] = ACTIONS(59), + [anon_sym_or] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(63), + [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_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym__dedent] = ACTIONS(63), + [sym_string_start] = ACTIONS(85), }, [125] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2895), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2895), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(802), + [sym__indent] = ACTIONS(804), + [sym_string_start] = ACTIONS(55), }, [126] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2284), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3047), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(694), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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(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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), + [sym__dedent] = ACTIONS(63), + [sym_string_start] = ACTIONS(179), }, [127] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2292), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(2999), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), + [sym_string_start] = ACTIONS(153), }, [128] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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(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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(153), }, [129] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2285), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3246), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(700), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(702), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), + [sym__dedent] = ACTIONS(63), + [sym_string_start] = ACTIONS(179), }, [130] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2286), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3110), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(704), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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(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_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_string_start] = ACTIONS(547), + [sym__newline] = ACTIONS(189), + [sym_string_start] = ACTIONS(111), }, [131] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(189), + [sym__dedent] = ACTIONS(189), + [sym_string_start] = ACTIONS(85), }, [132] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__dedent] = ACTIONS(189), + [sym_string_start] = ACTIONS(179), }, [133] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(153), }, [134] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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(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_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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(189), + [sym_string_start] = ACTIONS(111), }, [135] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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(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_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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(189), + [sym__dedent] = ACTIONS(189), + [sym_string_start] = ACTIONS(85), }, [136] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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(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_string_start] = ACTIONS(475), + [sym__dedent] = ACTIONS(189), + [sym_string_start] = ACTIONS(179), }, [137] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym_string_start] = ACTIONS(153), }, [138] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3122), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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(547), + [sym_string_start] = ACTIONS(434), }, [139] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym__indent] = ACTIONS(63), + [sym_string_start] = ACTIONS(275), }, [140] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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_string_start] = ACTIONS(475), + [sym__newline] = ACTIONS(63), + [sym__indent] = ACTIONS(63), + [sym_string_start] = ACTIONS(275), }, [141] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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_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(475), + [sym__newline] = ACTIONS(856), + [sym__indent] = ACTIONS(858), + [sym_string_start] = ACTIONS(55), }, [142] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2294), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3038), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(860), + [sym__indent] = ACTIONS(862), + [sym_string_start] = ACTIONS(55), }, [143] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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(475), + [sym_string_start] = ACTIONS(907), }, [144] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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_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(475), + [sym__newline] = ACTIONS(910), + [sym__indent] = ACTIONS(912), + [sym_string_start] = ACTIONS(55), }, [145] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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_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(475), + [sym__newline] = ACTIONS(914), + [sym__indent] = ACTIONS(916), + [sym_string_start] = ACTIONS(275), }, [146] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2285), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3246), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(700), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(918), + [sym__indent] = ACTIONS(920), + [sym_string_start] = ACTIONS(55), }, [147] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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_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(475), + [sym__newline] = ACTIONS(922), + [sym__indent] = ACTIONS(924), + [sym_string_start] = ACTIONS(55), }, [148] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2289), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3143), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(523), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(926), + [sym__indent] = ACTIONS(928), + [sym_string_start] = ACTIONS(55), }, [149] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2282), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3157), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(930), + [sym__indent] = ACTIONS(932), + [sym_string_start] = ACTIONS(55), }, [150] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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_string_start] = ACTIONS(475), + [sym__dedent] = ACTIONS(864), + [sym_string_start] = ACTIONS(970), }, [151] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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_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(475), + [sym__newline] = ACTIONS(973), + [sym__indent] = ACTIONS(975), + [sym_string_start] = ACTIONS(55), }, [152] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_list_splat] = STATE(2844), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2291), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym__collection_elements] = STATE(3190), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(977), + [sym__indent] = ACTIONS(979), + [sym_string_start] = ACTIONS(55), }, [153] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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_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(475), + [sym__newline] = ACTIONS(981), + [sym__indent] = ACTIONS(983), + [sym_string_start] = ACTIONS(55), }, [154] = { - [sym_dict_expr] = STATE(962), - [aux_sym_dotted_name_repeat1] = STATE(2064), - [aux_sym_comparison_operator_repeat1] = STATE(1115), - [ts_builtin_sym_end] = ACTIONS(748), - [sym_identifier] = ACTIONS(750), - [anon_sym_import] = ACTIONS(750), - [anon_sym_DOT] = ACTIONS(750), - [anon_sym_as] = ACTIONS(750), - [anon_sym_assert] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(750), - [anon_sym_all] = ACTIONS(750), - [anon_sym_any] = ACTIONS(750), - [anon_sym_filter] = ACTIONS(750), - [anon_sym_map] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(750), - [anon_sym_schema] = ACTIONS(750), - [anon_sym_mixin] = ACTIONS(750), - [anon_sym_protocol] = ACTIONS(750), - [anon_sym_rule] = ACTIONS(750), - [anon_sym_check] = ACTIONS(750), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(750), - [anon_sym_and] = ACTIONS(750), - [anon_sym_or] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(750), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_is] = ACTIONS(750), - [sym_isMutableFlag] = ACTIONS(752), - [anon_sym_QMARK_COLON] = ACTIONS(754), - [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(750), - [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_none] = ACTIONS(750), - [sym_undefined] = ACTIONS(750), + [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), + [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_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_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(748), + [sym__newline] = ACTIONS(985), + [sym__indent] = ACTIONS(987), + [sym_string_start] = ACTIONS(55), }, [155] = { - [sym_dict_expr] = STATE(951), - [aux_sym_dotted_name_repeat1] = STATE(2064), - [aux_sym_comparison_operator_repeat1] = STATE(869), - [sym_identifier] = ACTIONS(750), - [anon_sym_import] = ACTIONS(750), - [anon_sym_DOT] = ACTIONS(750), - [anon_sym_as] = ACTIONS(750), - [anon_sym_assert] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(750), - [anon_sym_all] = ACTIONS(750), - [anon_sym_any] = ACTIONS(750), - [anon_sym_filter] = ACTIONS(750), - [anon_sym_map] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(750), - [anon_sym_schema] = ACTIONS(750), - [anon_sym_mixin] = ACTIONS(750), - [anon_sym_protocol] = ACTIONS(750), - [anon_sym_rule] = ACTIONS(750), - [anon_sym_check] = ACTIONS(750), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(750), - [anon_sym_and] = ACTIONS(750), - [anon_sym_or] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(750), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_is] = ACTIONS(750), - [sym_isMutableFlag] = ACTIONS(756), - [anon_sym_QMARK_COLON] = ACTIONS(758), - [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(750), - [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_none] = ACTIONS(750), - [sym_undefined] = ACTIONS(750), + [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), + [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_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_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(748), - [sym_string_start] = ACTIONS(748), + [sym__newline] = ACTIONS(989), + [sym__indent] = ACTIONS(991), + [sym_string_start] = ACTIONS(55), }, [156] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(762), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(993), + [sym__indent] = ACTIONS(995), + [sym_string_start] = ACTIONS(55), }, [157] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(997), + [sym__indent] = ACTIONS(999), + [sym_string_start] = ACTIONS(55), }, [158] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(766), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1001), + [sym__indent] = ACTIONS(1003), + [sym_string_start] = ACTIONS(275), }, [159] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2356), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2763), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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_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_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(796), + [sym__newline] = ACTIONS(1005), + [sym__indent] = ACTIONS(1007), + [sym_string_start] = ACTIONS(55), }, [160] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2347), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2834), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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_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_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(796), + [sym__newline] = ACTIONS(1009), + [sym__indent] = ACTIONS(1011), + [sym_string_start] = ACTIONS(55), }, [161] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2338), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_COLON] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(802), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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_string_start] = ACTIONS(547), + [sym__dedent] = ACTIONS(1015), + [sym_string_start] = ACTIONS(1015), }, [162] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2363), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2802), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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_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_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(796), + [sym__newline] = ACTIONS(1017), + [sym__indent] = ACTIONS(1019), + [sym_string_start] = ACTIONS(55), }, [163] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1021), + [sym__indent] = ACTIONS(1023), + [sym_string_start] = ACTIONS(55), }, [164] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(812), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1025), + [sym__indent] = ACTIONS(1027), + [sym_string_start] = ACTIONS(55), }, [165] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(814), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1029), + [sym__indent] = ACTIONS(1031), + [sym_string_start] = ACTIONS(55), }, [166] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(816), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1033), + [sym__indent] = ACTIONS(1035), + [sym_string_start] = ACTIONS(55), }, [167] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(818), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1037), + [sym__indent] = ACTIONS(1039), + [sym_string_start] = ACTIONS(55), }, [168] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(820), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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(547), + [sym_string_start] = ACTIONS(434), }, [169] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2329), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2776), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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_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_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(796), + [sym__newline] = ACTIONS(1041), + [sym__indent] = ACTIONS(1043), + [sym_string_start] = ACTIONS(55), }, [170] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1045), + [sym__indent] = ACTIONS(1047), + [sym_string_start] = ACTIONS(55), }, [171] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1049), + [sym__indent] = ACTIONS(1051), + [sym_string_start] = ACTIONS(55), }, [172] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), - }, - [173] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(832), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), - }, - [174] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), - }, - [175] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), + [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), + [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_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_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(1053), + [sym__indent] = ACTIONS(1055), + [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), + [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_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_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(1057), + [sym__indent] = ACTIONS(1059), + [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), + [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_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_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(1061), + [sym__indent] = ACTIONS(1063), + [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), + [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_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_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(1065), + [sym__indent] = ACTIONS(1067), + [sym_string_start] = ACTIONS(55), }, [176] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2327), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2893), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(840), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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_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_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(796), + [sym__newline] = ACTIONS(1069), + [sym__indent] = ACTIONS(1071), + [sym_string_start] = ACTIONS(55), }, [177] = { - [sym_dict_expr] = STATE(951), - [aux_sym_dotted_name_repeat1] = STATE(2064), - [aux_sym_comparison_operator_repeat1] = STATE(2272), - [sym_identifier] = ACTIONS(750), - [anon_sym_import] = ACTIONS(750), - [anon_sym_DOT] = ACTIONS(750), - [anon_sym_as] = ACTIONS(750), - [anon_sym_assert] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(750), - [anon_sym_all] = ACTIONS(750), - [anon_sym_any] = ACTIONS(750), - [anon_sym_filter] = ACTIONS(750), - [anon_sym_map] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(750), - [anon_sym_schema] = ACTIONS(750), - [anon_sym_mixin] = ACTIONS(750), - [anon_sym_protocol] = ACTIONS(750), - [anon_sym_rule] = ACTIONS(750), - [anon_sym_check] = ACTIONS(750), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(750), - [anon_sym_and] = ACTIONS(750), - [anon_sym_or] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(750), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_is] = ACTIONS(750), - [sym_isMutableFlag] = ACTIONS(756), - [anon_sym_QMARK_COLON] = ACTIONS(758), - [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(750), - [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_none] = ACTIONS(750), - [sym_undefined] = ACTIONS(750), + [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), + [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_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_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(748), - [sym_string_start] = ACTIONS(748), + [sym__newline] = ACTIONS(1073), + [sym__indent] = ACTIONS(1075), + [sym_string_start] = ACTIONS(55), }, [178] = { - [sym_dict_expr] = STATE(962), - [aux_sym_dotted_name_repeat1] = STATE(2064), - [aux_sym_comparison_operator_repeat1] = STATE(2272), - [ts_builtin_sym_end] = ACTIONS(748), - [sym_identifier] = ACTIONS(750), - [anon_sym_import] = ACTIONS(750), - [anon_sym_DOT] = ACTIONS(750), - [anon_sym_as] = ACTIONS(750), - [anon_sym_assert] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(750), - [anon_sym_all] = ACTIONS(750), - [anon_sym_any] = ACTIONS(750), - [anon_sym_filter] = ACTIONS(750), - [anon_sym_map] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(750), - [anon_sym_schema] = ACTIONS(750), - [anon_sym_mixin] = ACTIONS(750), - [anon_sym_protocol] = ACTIONS(750), - [anon_sym_rule] = ACTIONS(750), - [anon_sym_check] = ACTIONS(750), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(750), - [anon_sym_and] = ACTIONS(750), - [anon_sym_or] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(750), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_is] = ACTIONS(750), - [sym_isMutableFlag] = ACTIONS(752), - [anon_sym_QMARK_COLON] = ACTIONS(754), - [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(750), - [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_none] = ACTIONS(750), - [sym_undefined] = ACTIONS(750), + [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), + [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_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_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(748), + [sym__newline] = ACTIONS(1077), + [sym__indent] = ACTIONS(1079), + [sym_string_start] = ACTIONS(55), }, [179] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2359), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2791), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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_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_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(796), + [sym__newline] = ACTIONS(1081), + [sym__indent] = ACTIONS(1083), + [sym_string_start] = ACTIONS(55), }, [180] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(846), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1085), + [sym__indent] = ACTIONS(1087), + [sym_string_start] = ACTIONS(55), }, [181] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(848), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1089), + [sym__indent] = ACTIONS(1091), + [sym_string_start] = ACTIONS(55), }, [182] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(850), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1093), + [sym__indent] = ACTIONS(1095), + [sym_string_start] = ACTIONS(55), }, [183] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(852), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(547), + [sym_string_start] = ACTIONS(1015), }, [184] = { - [sym_schema_expr] = STATE(1264), - [sym_schema_instantiation] = STATE(1264), - [sym_lambda_expr] = STATE(1264), - [sym_quant_expr] = STATE(1264), - [sym_quant_op] = STATE(3261), - [sym_dictionary_splat] = STATE(2923), - [sym_dotted_name] = STATE(2507), - [sym_expression] = STATE(2376), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1427), - [sym_primary_expression] = STATE(1354), - [sym_paren_expression] = STATE(1264), - [sym_braces_expression] = STATE(1264), - [sym_not_operator] = STATE(1266), - [sym_boolean_operator] = STATE(1266), - [sym_long_expression] = STATE(1266), - [sym_string_literal_expr] = STATE(1264), - [sym_config_expr] = STATE(1264), - [sym_binary_operator] = STATE(1271), - [sym_unary_operator] = STATE(1264), - [sym_sequence_operation] = STATE(1266), - [sym_in_operation] = STATE(1272), - [sym_not_in_operation] = STATE(1272), - [sym_comparison_operator] = STATE(1266), - [sym_select_suffix] = STATE(1264), - [sym_attribute] = STATE(1264), - [sym_optional_attribute] = STATE(1264), - [sym_optional_attribute_declaration] = STATE(1264), - [sym_optional_item] = STATE(1264), - [sym_null_coalesce] = STATE(1264), - [sym_subscript] = STATE(1271), - [sym_call] = STATE(1414), - [sym_list] = STATE(1631), - [sym_dictionary] = STATE(1631), - [sym_pair] = STATE(2923), - [sym_list_comprehension] = STATE(1631), - [sym_dictionary_comprehension] = STATE(1631), - [sym_conditional_expression] = STATE(1266), - [sym_string] = STATE(1264), - [sym_identifier] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_lambda] = ACTIONS(457), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(569), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [sym_integer] = ACTIONS(473), - [sym_float] = ACTIONS(571), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_none] = ACTIONS(473), - [sym_undefined] = ACTIONS(473), + [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), + [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_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_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(475), + [sym__newline] = ACTIONS(1097), + [sym__indent] = ACTIONS(1099), + [sym_string_start] = ACTIONS(55), }, [185] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(854), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1101), + [sym__indent] = ACTIONS(1103), + [sym_string_start] = ACTIONS(55), }, [186] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2330), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2755), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(856), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(796), + [sym_string_start] = ACTIONS(408), }, [187] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(860), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1111), + [sym__indent] = ACTIONS(1113), + [sym_string_start] = ACTIONS(55), }, [188] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2334), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2856), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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_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_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(796), + [sym__newline] = ACTIONS(1115), + [sym__indent] = ACTIONS(1117), + [sym_string_start] = ACTIONS(55), }, [189] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(866), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1119), + [sym__indent] = ACTIONS(1121), + [sym_string_start] = ACTIONS(55), }, [190] = { - [sym_dict_expr] = STATE(962), - [aux_sym_dotted_name_repeat1] = STATE(2064), - [aux_sym_comparison_operator_repeat1] = STATE(875), - [ts_builtin_sym_end] = ACTIONS(748), - [sym_identifier] = ACTIONS(750), - [anon_sym_import] = ACTIONS(750), - [anon_sym_DOT] = ACTIONS(750), - [anon_sym_as] = ACTIONS(750), - [anon_sym_assert] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(750), - [anon_sym_all] = ACTIONS(750), - [anon_sym_any] = ACTIONS(750), - [anon_sym_filter] = ACTIONS(750), - [anon_sym_map] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(750), - [anon_sym_schema] = ACTIONS(750), - [anon_sym_mixin] = ACTIONS(750), - [anon_sym_protocol] = ACTIONS(750), - [anon_sym_rule] = ACTIONS(750), - [anon_sym_check] = ACTIONS(750), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(750), - [anon_sym_and] = ACTIONS(750), - [anon_sym_or] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(750), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_is] = ACTIONS(750), - [sym_isMutableFlag] = ACTIONS(752), - [anon_sym_QMARK_COLON] = ACTIONS(754), - [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(750), - [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_none] = ACTIONS(750), - [sym_undefined] = ACTIONS(750), + [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), + [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_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_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(748), + [sym__newline] = ACTIONS(1123), + [sym__indent] = ACTIONS(1125), + [sym_string_start] = ACTIONS(55), }, [191] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(868), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1127), + [sym__indent] = ACTIONS(1129), + [sym_string_start] = ACTIONS(55), }, [192] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2355), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(870), - [anon_sym_COLON] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(870), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1131), + [sym__indent] = ACTIONS(1133), + [sym_string_start] = ACTIONS(55), }, [193] = { - [sym_schema_expr] = STATE(2008), - [sym_schema_instantiation] = STATE(2008), - [sym_lambda_expr] = STATE(2008), - [sym_quant_expr] = STATE(2008), - [sym_quant_op] = STATE(3226), - [sym_dotted_name] = STATE(2529), - [sym_expression] = STATE(2345), - [sym_as_expression] = STATE(1998), - [sym_selector_expression] = STATE(1889), - [sym_primary_expression] = STATE(1789), - [sym_paren_expression] = STATE(2008), - [sym_braces_expression] = STATE(2008), - [sym_not_operator] = STATE(1998), - [sym_boolean_operator] = STATE(1998), - [sym_long_expression] = STATE(1998), - [sym_string_literal_expr] = STATE(2008), - [sym_config_expr] = STATE(2008), - [sym_binary_operator] = STATE(2002), - [sym_unary_operator] = STATE(2008), - [sym_sequence_operation] = STATE(1998), - [sym_in_operation] = STATE(2003), - [sym_not_in_operation] = STATE(2003), - [sym_comparison_operator] = STATE(1998), - [sym_select_suffix] = STATE(2008), - [sym_attribute] = STATE(2008), - [sym_optional_attribute] = STATE(2008), - [sym_optional_attribute_declaration] = STATE(2008), - [sym_optional_item] = STATE(2008), - [sym_null_coalesce] = STATE(2008), - [sym_subscript] = STATE(2002), - [sym_call] = STATE(1791), - [sym_keyword_argument] = STATE(2816), - [sym_list] = STATE(2004), - [sym_dictionary] = STATE(2004), - [sym_list_comprehension] = STATE(2004), - [sym_dictionary_comprehension] = STATE(2004), - [sym_conditional_expression] = STATE(1998), - [sym_string] = STATE(2008), - [sym_identifier] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(774), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_lambda] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(784), - [anon_sym_not] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [sym_integer] = ACTIONS(792), - [sym_float] = ACTIONS(794), - [sym_true] = ACTIONS(792), - [sym_false] = ACTIONS(792), - [sym_none] = ACTIONS(792), - [sym_undefined] = ACTIONS(792), + [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), + [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_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_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(796), + [sym__newline] = ACTIONS(1135), + [sym__indent] = ACTIONS(1137), + [sym_string_start] = ACTIONS(55), }, [194] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(878), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1139), + [sym__indent] = ACTIONS(1141), + [sym_string_start] = ACTIONS(55), }, [195] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1143), + [sym__indent] = ACTIONS(1145), + [sym_string_start] = ACTIONS(55), }, [196] = { - [sym_dict_expr] = STATE(951), - [aux_sym_dotted_name_repeat1] = STATE(2064), - [aux_sym_comparison_operator_repeat1] = STATE(1103), - [sym_identifier] = ACTIONS(750), - [anon_sym_import] = ACTIONS(750), - [anon_sym_DOT] = ACTIONS(750), - [anon_sym_as] = ACTIONS(750), - [anon_sym_assert] = ACTIONS(750), - [anon_sym_if] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_else] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_lambda] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_in] = ACTIONS(750), - [anon_sym_all] = ACTIONS(750), - [anon_sym_any] = ACTIONS(750), - [anon_sym_filter] = ACTIONS(750), - [anon_sym_map] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(750), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_type] = ACTIONS(750), - [anon_sym_schema] = ACTIONS(750), - [anon_sym_mixin] = ACTIONS(750), - [anon_sym_protocol] = ACTIONS(750), - [anon_sym_rule] = ACTIONS(750), - [anon_sym_check] = ACTIONS(750), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_QMARK_DOT] = ACTIONS(748), - [anon_sym_not] = ACTIONS(750), - [anon_sym_and] = ACTIONS(750), - [anon_sym_or] = ACTIONS(750), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(750), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(748), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_is] = ACTIONS(750), - [sym_isMutableFlag] = ACTIONS(756), - [anon_sym_QMARK_COLON] = ACTIONS(758), - [anon_sym_QMARK_LBRACK] = ACTIONS(748), - [sym_integer] = ACTIONS(750), - [sym_float] = ACTIONS(748), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_none] = ACTIONS(750), - [sym_undefined] = ACTIONS(750), + [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), + [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_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_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(748), - [sym_string_start] = ACTIONS(748), + [sym__newline] = ACTIONS(1147), + [sym__indent] = ACTIONS(1149), + [sym_string_start] = ACTIONS(55), }, [197] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(882), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1151), + [sym__indent] = ACTIONS(1153), + [sym_string_start] = ACTIONS(55), }, [198] = { - [sym_schema_expr] = STATE(1747), - [sym_schema_instantiation] = STATE(1747), - [sym_lambda_expr] = STATE(1747), - [sym_quant_expr] = STATE(1747), - [sym_quant_op] = STATE(3198), - [sym_dotted_name] = STATE(2464), - [sym_expression] = STATE(2370), - [sym_as_expression] = STATE(1743), - [sym_selector_expression] = STATE(1601), - [sym_primary_expression] = STATE(1488), - [sym_paren_expression] = STATE(1747), - [sym_braces_expression] = STATE(1747), - [sym_not_operator] = STATE(1743), - [sym_boolean_operator] = STATE(1743), - [sym_long_expression] = STATE(1743), - [sym_string_literal_expr] = STATE(1747), - [sym_config_expr] = STATE(1747), - [sym_binary_operator] = STATE(1732), - [sym_unary_operator] = STATE(1747), - [sym_sequence_operation] = STATE(1743), - [sym_in_operation] = STATE(1737), - [sym_not_in_operation] = STATE(1737), - [sym_comparison_operator] = STATE(1743), - [sym_select_suffix] = STATE(1747), - [sym_attribute] = STATE(1747), - [sym_optional_attribute] = STATE(1747), - [sym_optional_attribute_declaration] = STATE(1747), - [sym_optional_item] = STATE(1747), - [sym_null_coalesce] = STATE(1747), - [sym_subscript] = STATE(1732), - [sym_slice] = STATE(2946), - [sym_call] = STATE(1435), - [sym_list] = STATE(1735), - [sym_dictionary] = STATE(1735), - [sym_list_comprehension] = STATE(1735), - [sym_dictionary_comprehension] = STATE(1735), - [sym_conditional_expression] = STATE(1743), - [sym_string] = STATE(1747), - [sym_identifier] = ACTIONS(692), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_RBRACK] = ACTIONS(884), - [anon_sym_lambda] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_QMARK_DOT] = ACTIONS(533), - [anon_sym_not] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [sym_integer] = ACTIONS(543), - [sym_float] = ACTIONS(545), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_none] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), + [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), + [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_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_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(547), + [sym__newline] = ACTIONS(1155), + [sym__indent] = ACTIONS(1157), + [sym_string_start] = ACTIONS(55), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 26, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(894), 1, - anon_sym_not, - ACTIONS(898), 1, - anon_sym_, - ACTIONS(900), 1, - anon_sym_DQUOTE, - STATE(217), 1, - aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_call, - STATE(1549), 1, - sym_primary_expression, - STATE(1590), 1, - sym_expression, - STATE(1753), 1, - sym_selector_expression, - STATE(2463), 1, - sym_dotted_name, - STATE(3186), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(13), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(896), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1956), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [117] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(906), 1, - anon_sym_LPAREN, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(918), 1, - anon_sym_, - ACTIONS(920), 1, - anon_sym_DQUOTE, - ACTIONS(924), 1, - sym_string_start, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(568), 1, - sym_primary_expression, - STATE(732), 1, - sym_expression, - STATE(879), 1, - sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2479), 1, - sym_dotted_name, - STATE(3096), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(904), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(916), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(976), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(922), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(932), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(934), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_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(768), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, - anon_sym_LPAREN, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(926), 1, - anon_sym_RPAREN, - STATE(1789), 1, - sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2426), 1, - sym_expression, - STATE(2529), 1, - sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(788), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2004), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1998), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_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] = 26, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(894), 1, - anon_sym_not, - ACTIONS(898), 1, - anon_sym_, - ACTIONS(900), 1, - anon_sym_DQUOTE, - STATE(217), 1, - aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_call, - STATE(1549), 1, - sym_primary_expression, - STATE(1590), 1, - sym_expression, - STATE(1753), 1, - sym_selector_expression, - STATE(2463), 1, - sym_dotted_name, - STATE(3186), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(13), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(896), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1956), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [472] = 26, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(455), 1, - anon_sym_LBRACK, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(459), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(934), 1, - anon_sym_, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(1178), 1, - sym_expression, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, - sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(932), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [589] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, - anon_sym_LPAREN, - ACTIONS(519), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, - sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2464), 1, - sym_dotted_name, - STATE(2803), 1, - sym_slice, - STATE(3198), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1735), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [710] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(940), 1, - anon_sym_LPAREN, - ACTIONS(942), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(946), 1, - anon_sym_LBRACE, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(952), 1, - anon_sym_, - ACTIONS(954), 1, - anon_sym_DQUOTE, - ACTIONS(958), 1, - sym_string_start, - STATE(289), 1, - aux_sym_long_expression_repeat1, - STATE(1551), 1, - sym_primary_expression, - STATE(1561), 1, - sym_call, - STATE(1621), 1, - sym_expression, - STATE(1842), 1, - sym_selector_expression, - STATE(2527), 1, - sym_dotted_name, - STATE(3130), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(938), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(950), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1913), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1861), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_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] = 28, - ACTIONS(768), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, - anon_sym_LPAREN, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(960), 1, - anon_sym_RPAREN, - STATE(1789), 1, - sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2426), 1, - sym_expression, - STATE(2529), 1, - sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(788), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2004), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1998), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [948] = 26, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(455), 1, - anon_sym_LBRACK, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(459), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, - anon_sym_not, - ACTIONS(966), 1, - anon_sym_, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(1178), 1, - sym_expression, - STATE(1335), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1475), 1, - sym_selector_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, + [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), + [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), + [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), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5268), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5277), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5289), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5325), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5305), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5321), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5274), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5338), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5298), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5265), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [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), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5336), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5341), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5284), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5290), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [anon_sym_lambda] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1237), + [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), + [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_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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5332), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [sym_list] = STATE(3701), + [sym_dictionary] = STATE(3701), + [sym_pair] = STATE(5292), + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(408), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(528), + }, + [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), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(63), + [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_DQUOTE] = ACTIONS(496), + [anon_sym_PLUS_EQ] = ACTIONS(63), + [anon_sym_then] = ACTIONS(59), + [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), + }, + [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), + [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(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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(552), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(552), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(552), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(408), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(189), + [sym__indent] = ACTIONS(189), + [sym_string_start] = ACTIONS(275), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(528), + }, + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(598), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(434), + }, + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(576), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(63), + [sym_string_start] = ACTIONS(55), + }, + [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), + [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(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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(528), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(552), + }, + [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), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_lambda] = ACTIONS(490), + [anon_sym_DASH_GT] = ACTIONS(63), + [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_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), + [sym_comment] = ACTIONS(3), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(504), + }, + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(63), + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(408), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(189), + [sym_string_start] = ACTIONS(700), + }, + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(408), + }, + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(652), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(434), + }, + [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), + [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), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(576), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(528), + }, + [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), + [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_LPAREN] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(219), + [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(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_and] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [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_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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(504), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(504), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(504), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1497), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(504), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(504), + }, + [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), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(552), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(732), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(552), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, + [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), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(1588), + [sym__dedent] = ACTIONS(1588), + [sym_string_start] = ACTIONS(1588), + }, +}; + +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, + sym_identifier, + ACTIONS(1389), 1, + anon_sym_not, + ACTIONS(1892), 1, + 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_QMARK_DOT, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(465), 3, + ACTIONS(1898), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(728), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27233,7 +52693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27250,75 +52710,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1065] = 28, - ACTIONS(768), 1, + [117] = 26, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(113), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1912), 1, + anon_sym_, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(968), 1, - anon_sym_RPAREN, - STATE(1789), 1, + STATE(693), 1, + aux_sym_long_expression_repeat1, + STATE(1127), 1, sym_primary_expression, - STATE(1791), 1, + STATE(1513), 1, + sym_expression, + STATE(1533), 1, sym_call, - STATE(1889), 1, + STATE(2098), 1, sym_selector_expression, - STATE(2426), 1, - sym_expression, - STATE(2529), 1, + STATE(5107), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2155), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27326,7 +52784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27343,75 +52801,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1186] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [234] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(692), 1, + 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(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(1916), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1601), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2300), 1, + STATE(4910), 1, sym_expression, - STATE(2464), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2796), 1, - sym_slice, - STATE(3198), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27419,7 +52877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27436,73 +52894,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1307] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(906), 1, + [355] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(908), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(912), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(920), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(924), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(970), 1, - anon_sym_, - STATE(200), 1, - aux_sym_long_expression_repeat1, - STATE(568), 1, + 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(755), 1, - sym_expression, - STATE(879), 1, - sym_selector_expression, - STATE(905), 1, + STATE(3719), 1, sym_call, - STATE(2479), 1, + STATE(3727), 1, + sym_selector_expression, + STATE(4819), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5446), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(904), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(916), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27510,7 +52970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27527,73 +52987,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1424] = 26, - ACTIONS(415), 1, - anon_sym_LPAREN, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, + [476] = 26, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(421), 1, - anon_sym_LBRACE, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, + ACTIONS(700), 1, sym_string_start, - ACTIONS(972), 1, + ACTIONS(1379), 1, sym_identifier, - ACTIONS(974), 1, + ACTIONS(1383), 1, + anon_sym_not, + ACTIONS(1918), 1, + anon_sym_LPAREN, + ACTIONS(1920), 1, + anon_sym_LBRACK, + ACTIONS(1922), 1, + anon_sym_LBRACE, + ACTIONS(1926), 1, anon_sym_, - STATE(264), 1, + ACTIONS(1928), 1, + anon_sym_DQUOTE, + STATE(457), 1, aux_sym_long_expression_repeat1, - STATE(1204), 1, - sym_expression, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + STATE(2879), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2993), 1, + sym_call, + STATE(3005), 1, sym_selector_expression, - STATE(2454), 1, + STATE(4386), 1, + sym_expression, + STATE(5067), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(429), 3, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1924), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3176), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 6, + ACTIONS(696), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27601,7 +53061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27618,73 +53078,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1541] = 26, - ACTIONS(780), 1, + [593] = 26, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(796), 1, + ACTIONS(700), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(1379), 1, sym_identifier, - ACTIONS(978), 1, + ACTIONS(1383), 1, + anon_sym_not, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(980), 1, + ACTIONS(1920), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(1922), 1, anon_sym_LBRACE, - ACTIONS(986), 1, - anon_sym_, - ACTIONS(988), 1, + ACTIONS(1928), 1, anon_sym_DQUOTE, - STATE(215), 1, + ACTIONS(1930), 1, + anon_sym_, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1789), 1, + STATE(2879), 1, sym_primary_expression, - STATE(1791), 1, + STATE(2993), 1, sym_call, - STATE(1792), 1, - sym_expression, - STATE(1889), 1, + STATE(3005), 1, sym_selector_expression, - STATE(2529), 1, + STATE(4288), 1, + sym_expression, + STATE(5067), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(770), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(984), 3, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1924), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3176), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 6, + ACTIONS(696), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27692,7 +53152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27709,73 +53169,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1658] = 26, - ACTIONS(906), 1, - anon_sym_LPAREN, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, + [710] = 26, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(920), 1, - anon_sym_DQUOTE, - ACTIONS(924), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(990), 1, + ACTIONS(1385), 1, sym_identifier, - ACTIONS(992), 1, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(1892), 1, + anon_sym_LPAREN, + ACTIONS(1894), 1, + anon_sym_LBRACK, + ACTIONS(1896), 1, + anon_sym_LBRACE, + ACTIONS(1900), 1, anon_sym_, - STATE(223), 1, + ACTIONS(1902), 1, + anon_sym_DQUOTE, + STATE(487), 1, aux_sym_long_expression_repeat1, - STATE(704), 1, + STATE(4056), 1, sym_primary_expression, - STATE(755), 1, - sym_expression, - STATE(905), 1, + STATE(4082), 1, sym_call, - STATE(907), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2517), 1, + STATE(4957), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3096), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(904), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - ACTIONS(916), 3, + STATE(4297), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1898), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 6, + ACTIONS(728), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27783,7 +53243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27800,73 +53260,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1775] = 26, - ACTIONS(780), 1, + [827] = 26, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(796), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(978), 1, + ACTIONS(814), 1, + sym_identifier, + ACTIONS(820), 1, + anon_sym_not, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(980), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(988), 1, - anon_sym_DQUOTE, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, - anon_sym_not, - ACTIONS(1000), 1, + ACTIONS(1940), 1, anon_sym_, - STATE(298), 1, + ACTIONS(1942), 1, + anon_sym_DQUOTE, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1667), 1, + STATE(1411), 1, sym_primary_expression, - STATE(1776), 1, - sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2468), 1, + STATE(2027), 1, + sym_call, + STATE(3297), 1, + sym_expression, + STATE(5035), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(770), 2, + ACTIONS(213), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2002), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(984), 3, + ACTIONS(1938), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 6, + ACTIONS(149), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27874,7 +53334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27891,73 +53351,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1892] = 26, - ACTIONS(780), 1, + [944] = 26, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(796), 1, + ACTIONS(700), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(1379), 1, sym_identifier, - ACTIONS(978), 1, + ACTIONS(1383), 1, + anon_sym_not, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(980), 1, + ACTIONS(1920), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(1922), 1, anon_sym_LBRACE, - ACTIONS(988), 1, - anon_sym_DQUOTE, - ACTIONS(1002), 1, + ACTIONS(1926), 1, anon_sym_, - STATE(298), 1, + ACTIONS(1928), 1, + anon_sym_DQUOTE, + STATE(457), 1, aux_sym_long_expression_repeat1, - STATE(1776), 1, - sym_expression, - STATE(1789), 1, + STATE(2879), 1, sym_primary_expression, - STATE(1791), 1, + STATE(2993), 1, sym_call, - STATE(1889), 1, + STATE(3005), 1, sym_selector_expression, - STATE(2529), 1, + STATE(4386), 1, + sym_expression, + STATE(5067), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(770), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(984), 3, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1924), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3176), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 6, + ACTIONS(696), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27965,7 +53425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -27982,73 +53442,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2009] = 26, - ACTIONS(780), 1, + [1061] = 26, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(796), 1, + ACTIONS(700), 1, sym_string_start, - ACTIONS(978), 1, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1383), 1, + anon_sym_not, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(980), 1, + ACTIONS(1920), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(1922), 1, anon_sym_LBRACE, - ACTIONS(988), 1, - anon_sym_DQUOTE, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, - anon_sym_not, - ACTIONS(1004), 1, + ACTIONS(1926), 1, anon_sym_, - STATE(214), 1, + ACTIONS(1928), 1, + anon_sym_DQUOTE, + STATE(457), 1, aux_sym_long_expression_repeat1, - STATE(1667), 1, + STATE(2879), 1, sym_primary_expression, - STATE(1791), 1, + STATE(2993), 1, sym_call, - STATE(1792), 1, - sym_expression, - STATE(1885), 1, + STATE(3005), 1, sym_selector_expression, - STATE(2468), 1, + STATE(4386), 1, + sym_expression, + STATE(5067), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(770), 2, + ACTIONS(736), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(984), 3, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1924), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(3176), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 6, + ACTIONS(696), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28056,7 +53516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28073,73 +53533,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2126] = 26, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(888), 1, + [1178] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(894), 1, - anon_sym_not, - ACTIONS(900), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1006), 1, - anon_sym_, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_call, - STATE(1549), 1, + 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(1602), 1, - sym_expression, - STATE(1753), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, sym_selector_expression, - STATE(2463), 1, + STATE(4791), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5512), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(896), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28147,7 +53609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28164,73 +53626,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2243] = 26, - ACTIONS(780), 1, + [1299] = 26, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(796), 1, + ACTIONS(652), 1, sym_string_start, - ACTIONS(978), 1, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1377), 1, + anon_sym_not, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(980), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(988), 1, - anon_sym_DQUOTE, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, - anon_sym_not, - ACTIONS(1004), 1, + ACTIONS(1952), 1, anon_sym_, - STATE(214), 1, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + STATE(465), 1, aux_sym_long_expression_repeat1, - STATE(1667), 1, + STATE(2840), 1, sym_primary_expression, - STATE(1791), 1, + STATE(3027), 1, sym_call, - STATE(1792), 1, - sym_expression, - STATE(1885), 1, + STATE(3028), 1, sym_selector_expression, - STATE(2468), 1, + STATE(4340), 1, + sym_expression, + STATE(5014), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5965), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(770), 2, + ACTIONS(740), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2002), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(984), 3, + ACTIONS(1950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 6, + ACTIONS(648), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28238,7 +53700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28255,166 +53717,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2360] = 26, - ACTIONS(415), 1, + [1416] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(417), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(419), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(421), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(974), 1, - anon_sym_, - STATE(264), 1, - aux_sym_long_expression_repeat1, - STATE(1204), 1, - sym_expression, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(3180), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(409), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(429), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 6, - sym_integer, + ACTIONS(730), 1, sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [2477] = 28, - ACTIONS(768), 1, - sym_identifier, - ACTIONS(770), 1, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(774), 1, - anon_sym_LPAREN, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1008), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(1956), 1, anon_sym_RPAREN, - STATE(1789), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1791), 1, + STATE(4082), 1, sym_call, - STATE(1889), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2426), 1, + STATE(4910), 1, sym_expression, - STATE(2529), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2941), 1, + STATE(5764), 1, sym_keyword_argument, - STATE(3226), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28422,7 +53793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28439,73 +53810,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2598] = 26, - ACTIONS(1010), 1, + [1537] = 26, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(1371), 1, sym_identifier, - ACTIONS(1014), 1, + ACTIONS(1377), 1, + anon_sym_not, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1016), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1020), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1026), 1, - anon_sym_, - ACTIONS(1028), 1, + ACTIONS(1954), 1, anon_sym_DQUOTE, - ACTIONS(1032), 1, - sym_string_start, - STATE(238), 1, + ACTIONS(1958), 1, + anon_sym_, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1057), 1, + STATE(2840), 1, sym_primary_expression, - STATE(1058), 1, - sym_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(3027), 1, sym_call, - STATE(2457), 1, + STATE(3028), 1, + sym_selector_expression, + STATE(4400), 1, + sym_expression, + STATE(5014), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5965), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1012), 2, + ACTIONS(740), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1123), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1024), 3, + ACTIONS(1950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 6, + ACTIONS(648), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28513,7 +53884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28530,75 +53901,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2715] = 28, - ACTIONS(768), 1, + [1654] = 26, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(1371), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(1377), 1, + anon_sym_not, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1952), 1, + anon_sym_, + ACTIONS(1954), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1034), 1, - anon_sym_RPAREN, - STATE(1789), 1, + STATE(465), 1, + aux_sym_long_expression_repeat1, + STATE(2840), 1, sym_primary_expression, - STATE(1791), 1, + STATE(3027), 1, sym_call, - STATE(1889), 1, + STATE(3028), 1, sym_selector_expression, - STATE(2426), 1, + STATE(4340), 1, sym_expression, - STATE(2529), 1, + STATE(5014), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5965), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(740), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(648), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28606,7 +53975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28623,73 +53992,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2836] = 26, - ACTIONS(906), 1, - anon_sym_LPAREN, - ACTIONS(908), 1, - anon_sym_LBRACK, - ACTIONS(910), 1, + [1771] = 26, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(920), 1, - anon_sym_DQUOTE, - ACTIONS(924), 1, + ACTIONS(652), 1, sym_string_start, - ACTIONS(990), 1, + ACTIONS(1371), 1, sym_identifier, - ACTIONS(992), 1, + ACTIONS(1377), 1, anon_sym_not, - ACTIONS(1036), 1, + ACTIONS(1944), 1, + anon_sym_LPAREN, + ACTIONS(1946), 1, + anon_sym_LBRACK, + ACTIONS(1948), 1, + anon_sym_LBRACE, + ACTIONS(1952), 1, anon_sym_, - STATE(298), 1, + ACTIONS(1954), 1, + anon_sym_DQUOTE, + STATE(465), 1, aux_sym_long_expression_repeat1, - STATE(704), 1, + STATE(2840), 1, sym_primary_expression, - STATE(732), 1, - sym_expression, - STATE(905), 1, + STATE(3027), 1, sym_call, - STATE(907), 1, + STATE(3028), 1, sym_selector_expression, - STATE(2517), 1, + STATE(4340), 1, + sym_expression, + STATE(5014), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5965), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(904), 2, + ACTIONS(740), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - ACTIONS(916), 3, + STATE(3211), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 6, + ACTIONS(648), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28697,7 +54066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28714,75 +54083,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2953] = 28, - ACTIONS(768), 1, + [1888] = 26, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(1311), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1960), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1968), 1, + anon_sym_, + ACTIONS(1970), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1038), 1, - anon_sym_RPAREN, - STATE(1789), 1, + STATE(470), 1, + aux_sym_long_expression_repeat1, + STATE(2538), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(2706), 1, sym_selector_expression, - STATE(2426), 1, + STATE(2707), 1, + sym_call, + STATE(4020), 1, sym_expression, - STATE(2529), 1, + STATE(5068), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5958), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(606), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1966), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2838), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(468), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28790,7 +54157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28807,75 +54174,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3074] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [2005] = 27, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(1309), 1, + anon_sym_not, + STATE(3716), 1, sym_primary_expression, - STATE(1601), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, sym_selector_expression, - STATE(2303), 1, + STATE(4951), 1, sym_expression, - STATE(2464), 1, + STATE(5075), 1, sym_dotted_name, - STATE(2855), 1, - sym_slice, - STATE(3198), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + ACTIONS(1972), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28883,7 +54249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28900,75 +54266,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3195] = 28, - ACTIONS(768), 1, + [2124] = 26, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(1311), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1960), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1970), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1040), 1, - anon_sym_RPAREN, - STATE(1789), 1, + ACTIONS(1974), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2538), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(2706), 1, sym_selector_expression, - STATE(2426), 1, + STATE(2707), 1, + sym_call, + STATE(4098), 1, sym_expression, - STATE(2529), 1, + STATE(5068), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5958), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(606), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1966), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2838), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(468), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28976,7 +54340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -28993,75 +54357,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3316] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [2241] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(692), 1, + 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(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(1976), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1601), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2321), 1, + STATE(4910), 1, sym_expression, - STATE(2464), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3198), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29069,7 +54433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29086,73 +54450,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3437] = 26, - ACTIONS(940), 1, - anon_sym_LPAREN, - ACTIONS(942), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, + [2362] = 26, + ACTIONS(458), 1, anon_sym_lambda, - ACTIONS(946), 1, - anon_sym_LBRACE, - ACTIONS(954), 1, - anon_sym_DQUOTE, - ACTIONS(958), 1, + ACTIONS(472), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(1311), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(1315), 1, anon_sym_not, - ACTIONS(1046), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN, + ACTIONS(1962), 1, + anon_sym_LBRACK, + ACTIONS(1964), 1, + anon_sym_LBRACE, + ACTIONS(1968), 1, anon_sym_, - STATE(297), 1, + ACTIONS(1970), 1, + anon_sym_DQUOTE, + STATE(470), 1, aux_sym_long_expression_repeat1, - STATE(1561), 1, - sym_call, - STATE(1573), 1, + STATE(2538), 1, sym_primary_expression, - STATE(1621), 1, - sym_expression, - STATE(1801), 1, + STATE(2706), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2707), 1, + sym_call, + STATE(4020), 1, + sym_expression, + STATE(5068), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5958), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, + ACTIONS(606), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1853), 2, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(950), 3, + ACTIONS(1966), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(2838), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 6, + ACTIONS(468), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29160,7 +54524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29177,75 +54541,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3554] = 28, - ACTIONS(768), 1, + [2479] = 26, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(1311), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(1315), 1, + anon_sym_not, + ACTIONS(1960), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1968), 1, + anon_sym_, + ACTIONS(1970), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1048), 1, - anon_sym_RPAREN, - STATE(1789), 1, + STATE(470), 1, + aux_sym_long_expression_repeat1, + STATE(2538), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(2706), 1, sym_selector_expression, - STATE(2426), 1, + STATE(2707), 1, + sym_call, + STATE(4020), 1, sym_expression, - STATE(2529), 1, + STATE(5068), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5958), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(606), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1966), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2838), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(468), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29253,7 +54615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29270,73 +54632,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3675] = 26, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(978), 1, + [2596] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(980), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(988), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(996), 1, + 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(998), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1004), 1, - anon_sym_, - STATE(214), 1, - aux_sym_long_expression_repeat1, - STATE(1667), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1791), 1, + STATE(3719), 1, sym_call, - STATE(1792), 1, - sym_expression, - STATE(1885), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2468), 1, + STATE(4790), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5584), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(770), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2002), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(984), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29344,7 +54708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29361,75 +54725,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3792] = 28, - ACTIONS(768), 1, + [2717] = 26, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(772), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(776), 1, + anon_sym_not, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1986), 1, + anon_sym_, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1050), 1, - anon_sym_RPAREN, - STATE(1789), 1, + STATE(490), 1, + aux_sym_long_expression_repeat1, + STATE(780), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(1655), 1, sym_selector_expression, - STATE(2426), 1, + STATE(1659), 1, + sym_call, + STATE(3287), 1, sym_expression, - STATE(2529), 1, + STATE(5130), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(1980), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29437,7 +54799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29454,75 +54816,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3913] = 28, - ACTIONS(768), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [2834] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1052), 1, + 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(1990), 1, anon_sym_RPAREN, - STATE(1789), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1791), 1, + STATE(4082), 1, sym_call, - STATE(1889), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2426), 1, + STATE(4910), 1, sym_expression, - STATE(2529), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2941), 1, + STATE(5764), 1, sym_keyword_argument, - STATE(3226), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29530,7 +54892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29547,73 +54909,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4034] = 26, - ACTIONS(453), 1, + [2955] = 26, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(1054), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1056), 1, + ACTIONS(1369), 1, anon_sym_not, - ACTIONS(1060), 1, + ACTIONS(1992), 1, anon_sym_, - STATE(246), 1, + STATE(480), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1587), 1, + STATE(3761), 1, sym_primary_expression, - STATE(1661), 1, - sym_call, - STATE(1786), 1, + STATE(3981), 1, sym_selector_expression, - STATE(2531), 1, + STATE(4111), 1, + sym_call, + STATE(4875), 1, + sym_expression, + STATE(4995), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(672), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1058), 3, + ACTIONS(620), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(4187), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29621,7 +54983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29638,73 +55000,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4151] = 26, - ACTIONS(525), 1, + [3072] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(547), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1062), 1, + ACTIONS(772), 1, sym_identifier, - ACTIONS(1064), 1, + ACTIONS(776), 1, + anon_sym_not, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1068), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1070), 1, - anon_sym_not, - ACTIONS(1074), 1, + ACTIONS(1986), 1, anon_sym_, - ACTIONS(1076), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - STATE(243), 1, + STATE(490), 1, aux_sym_long_expression_repeat1, - STATE(1432), 1, + STATE(780), 1, sym_primary_expression, - STATE(1435), 1, + STATE(1655), 1, + sym_selector_expression, + STATE(1659), 1, sym_call, - STATE(1473), 1, + STATE(3287), 1, sym_expression, - STATE(1579), 1, - sym_selector_expression, - STATE(2455), 1, + STATE(5130), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(515), 2, + ACTIONS(193), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1732), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1072), 3, + ACTIONS(1984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(1980), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29712,7 +55074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29729,73 +55091,166 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4268] = 26, - ACTIONS(453), 1, + [3189] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + 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, + 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_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, + [3310] = 26, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1054), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, + anon_sym_LBRACK, + ACTIONS(1271), 1, + anon_sym_LBRACE, + ACTIONS(1275), 1, + anon_sym_DQUOTE, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1056), 1, + ACTIONS(1369), 1, anon_sym_not, - ACTIONS(1060), 1, + ACTIONS(1996), 1, anon_sym_, - STATE(246), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1587), 1, + STATE(3761), 1, sym_primary_expression, - STATE(1661), 1, - sym_call, - STATE(1786), 1, + STATE(3981), 1, sym_selector_expression, - STATE(2531), 1, + STATE(4111), 1, + sym_call, + STATE(4872), 1, + sym_expression, + STATE(4995), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(672), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1058), 3, + ACTIONS(620), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(4187), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29803,7 +55258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29820,75 +55275,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4385] = 28, - ACTIONS(768), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [3427] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1078), 1, - anon_sym_RPAREN, - STATE(1789), 1, + 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(1791), 1, + STATE(3719), 1, sym_call, - STATE(1889), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2426), 1, + STATE(4821), 1, sym_expression, - STATE(2529), 1, + STATE(5075), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5583), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29896,7 +55351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -29913,75 +55368,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4506] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [3548] = 26, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(1369), 1, + anon_sym_not, + ACTIONS(1992), 1, + anon_sym_, + STATE(480), 1, + aux_sym_long_expression_repeat1, + STATE(3761), 1, sym_primary_expression, - STATE(1601), 1, + STATE(3981), 1, sym_selector_expression, - STATE(2323), 1, + STATE(4111), 1, + sym_call, + STATE(4875), 1, sym_expression, - STATE(2464), 1, + STATE(4995), 1, sym_dotted_name, - STATE(2764), 1, - sym_slice, - STATE(3198), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(620), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4187), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29989,7 +55442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30006,73 +55459,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4627] = 26, - ACTIONS(1010), 1, + [3665] = 26, + ACTIONS(1998), 1, sym_identifier, - ACTIONS(1014), 1, + ACTIONS(2004), 1, anon_sym_LPAREN, - ACTIONS(1016), 1, + ACTIONS(2007), 1, anon_sym_LBRACK, - ACTIONS(1018), 1, + ACTIONS(2010), 1, anon_sym_lambda, - ACTIONS(1020), 1, + ACTIONS(2013), 1, anon_sym_LBRACE, - ACTIONS(1022), 1, + ACTIONS(2019), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(2025), 1, + anon_sym_, + ACTIONS(2028), 1, anon_sym_DQUOTE, - ACTIONS(1032), 1, + ACTIONS(2034), 1, sym_string_start, - ACTIONS(1080), 1, - anon_sym_, - STATE(298), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1056), 1, - sym_expression, - STATE(1057), 1, - sym_primary_expression, - STATE(1066), 1, + STATE(3446), 1, sym_selector_expression, - STATE(1082), 1, + STATE(3663), 1, sym_call, - STATE(2457), 1, + STATE(4370), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5192), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1012), 2, + ACTIONS(2001), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1123), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1024), 3, + ACTIONS(2022), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(2016), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 6, + ACTIONS(2031), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30080,7 +55533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30097,73 +55550,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4744] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, + [3782] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(888), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(900), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1082), 1, + ACTIONS(1365), 1, + sym_identifier, + ACTIONS(1369), 1, + anon_sym_not, + ACTIONS(1992), 1, anon_sym_, - STATE(309), 1, + STATE(480), 1, aux_sym_long_expression_repeat1, - STATE(1494), 1, + STATE(3761), 1, sym_primary_expression, - STATE(1495), 1, + STATE(3981), 1, + sym_selector_expression, + STATE(4111), 1, sym_call, - STATE(1590), 1, + STATE(4875), 1, sym_expression, - STATE(1642), 1, - sym_selector_expression, - STATE(2552), 1, + STATE(4995), 1, sym_dotted_name, - STATE(3186), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(672), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - ACTIONS(896), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(620), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(4187), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(500), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30171,7 +55624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30188,73 +55641,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4861] = 26, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1088), 1, + [3899] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(1094), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1100), 1, - anon_sym_, - ACTIONS(1102), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1106), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - STATE(310), 1, - aux_sym_long_expression_repeat1, - STATE(507), 1, - sym_expression, - STATE(630), 1, + 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, sym_primary_expression, - STATE(881), 1, + STATE(4082), 1, sym_call, - STATE(908), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2499), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1086), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - ACTIONS(1098), 3, + STATE(4297), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30262,7 +55717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30279,75 +55734,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4978] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [4020] = 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(2039), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(531), 1, - anon_sym_STAR, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(2047), 1, + anon_sym_, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + STATE(687), 1, + aux_sym_long_expression_repeat1, + STATE(3862), 1, sym_primary_expression, - STATE(1601), 1, + STATE(3874), 1, + sym_call, + STATE(4139), 1, sym_selector_expression, - STATE(2390), 1, + STATE(4914), 1, sym_expression, - STATE(2464), 1, + STATE(5116), 1, sym_dotted_name, - STATE(2954), 1, - sym_list_splat, - STATE(3198), 1, + STATE(6288), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4382), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4378), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30355,7 +55808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30372,73 +55825,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5099] = 26, - ACTIONS(780), 1, + [4137] = 26, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(796), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(1385), 1, sym_identifier, - ACTIONS(978), 1, + ACTIONS(1389), 1, + anon_sym_not, + ACTIONS(1892), 1, anon_sym_LPAREN, - ACTIONS(980), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(1896), 1, anon_sym_LBRACE, - ACTIONS(986), 1, - anon_sym_, - ACTIONS(988), 1, + ACTIONS(1902), 1, anon_sym_DQUOTE, - STATE(215), 1, + ACTIONS(2051), 1, + anon_sym_, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1789), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1791), 1, + STATE(4082), 1, sym_call, - STATE(1792), 1, - sym_expression, - STATE(1889), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2529), 1, + STATE(4983), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3226), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(770), 2, + ACTIONS(752), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2002), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(984), 3, + ACTIONS(1898), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 6, + ACTIONS(728), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30446,7 +55899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30463,73 +55916,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5216] = 26, - ACTIONS(525), 1, + [4254] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(547), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1062), 1, + ACTIONS(764), 1, sym_identifier, - ACTIONS(1064), 1, + ACTIONS(770), 1, + anon_sym_not, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1068), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1070), 1, - anon_sym_not, - ACTIONS(1076), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1108), 1, + ACTIONS(2055), 1, anon_sym_, - STATE(298), 1, + STATE(494), 1, aux_sym_long_expression_repeat1, - STATE(1432), 1, + STATE(1426), 1, sym_primary_expression, - STATE(1435), 1, + STATE(1659), 1, sym_call, - STATE(1465), 1, - sym_expression, - STATE(1579), 1, + STATE(1916), 1, sym_selector_expression, - STATE(2455), 1, + STATE(3307), 1, + sym_expression, + STATE(5053), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(515), 2, + ACTIONS(193), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1732), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1072), 3, + ACTIONS(2053), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(2194), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30537,7 +55990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30554,73 +56007,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5333] = 26, - ACTIONS(453), 1, + [4371] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1110), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1114), 1, - anon_sym_, - STATE(267), 1, - aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1544), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1660), 1, - sym_selector_expression, - STATE(1661), 1, + STATE(3719), 1, sym_call, - STATE(2489), 1, + STATE(3727), 1, + sym_selector_expression, + STATE(4813), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5673), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1058), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30628,7 +56083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30645,73 +56100,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5450] = 26, - ACTIONS(525), 1, + [4492] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(547), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(772), 1, sym_identifier, - ACTIONS(1064), 1, + ACTIONS(776), 1, + anon_sym_not, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1068), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1076), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1116), 1, + ACTIONS(2057), 1, anon_sym_, - STATE(298), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1435), 1, - sym_call, - STATE(1465), 1, - sym_expression, - STATE(1488), 1, + STATE(780), 1, sym_primary_expression, - STATE(1601), 1, + STATE(1655), 1, sym_selector_expression, - STATE(2464), 1, + STATE(1659), 1, + sym_call, + STATE(3286), 1, + sym_expression, + STATE(5130), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(515), 2, + ACTIONS(193), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1732), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1072), 3, + ACTIONS(1984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(1980), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30719,7 +56174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30736,73 +56191,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5567] = 26, - ACTIONS(453), 1, + [4609] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1054), 1, - sym_identifier, - ACTIONS(1056), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1118), 1, - anon_sym_, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(1178), 1, - sym_expression, - STATE(1587), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2059), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1661), 1, + STATE(4082), 1, sym_call, - STATE(1786), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2531), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1058), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30810,7 +56267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30827,73 +56284,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5684] = 26, - ACTIONS(1014), 1, + [4730] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1016), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1018), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(1020), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1028), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1032), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1120), 1, - sym_identifier, - ACTIONS(1122), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1124), 1, - anon_sym_, - STATE(292), 1, - aux_sym_long_expression_repeat1, - STATE(1023), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2061), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1058), 1, - sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(4082), 1, sym_call, - STATE(2493), 1, + STATE(4214), 1, + sym_selector_expression, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1012), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1123), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1024), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30901,7 +56360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -30918,73 +56377,165 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5801] = 26, - ACTIONS(453), 1, + [4851] = 27, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + 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(4974), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, + ACTIONS(3), 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, + 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, + [4970] = 26, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(111), 1, sym_string_start, - ACTIONS(553), 1, + ACTIONS(764), 1, sym_identifier, - ACTIONS(1126), 1, + ACTIONS(770), 1, + anon_sym_not, + ACTIONS(1978), 1, + anon_sym_LPAREN, + ACTIONS(1980), 1, + anon_sym_LBRACK, + ACTIONS(1982), 1, + anon_sym_LBRACE, + ACTIONS(1988), 1, + anon_sym_DQUOTE, + ACTIONS(2065), 1, anon_sym_, - STATE(298), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1178), 1, - sym_expression, - STATE(1354), 1, + STATE(1426), 1, sym_primary_expression, - STATE(1414), 1, + STATE(1659), 1, sym_call, - STATE(1427), 1, + STATE(1916), 1, sym_selector_expression, - STATE(2507), 1, + STATE(3335), 1, + sym_expression, + STATE(5053), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(193), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(465), 3, + ACTIONS(2053), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2194), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30992,7 +56543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31009,73 +56560,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5918] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(888), 1, + [5087] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(900), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1082), 1, - anon_sym_, - STATE(309), 1, - aux_sym_long_expression_repeat1, - STATE(1494), 1, + 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(1495), 1, + STATE(3719), 1, sym_call, - STATE(1590), 1, - sym_expression, - STATE(1642), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2552), 1, + STATE(4907), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5767), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(896), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31083,7 +56636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31100,74 +56653,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6035] = 27, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [5208] = 26, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(1385), 1, + sym_identifier, + ACTIONS(1389), 1, + anon_sym_not, + ACTIONS(1892), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(1896), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(1900), 1, + anon_sym_, + ACTIONS(1902), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + STATE(487), 1, + aux_sym_long_expression_repeat1, + STATE(4056), 1, sym_primary_expression, - STATE(1601), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2434), 1, + STATE(4957), 1, sym_expression, - STATE(2464), 1, + STATE(5012), 1, sym_dotted_name, - STATE(3198), 1, + STATE(6132), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(870), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1732), 2, + ACTIONS(752), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(1898), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31175,7 +56727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31192,73 +56744,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6154] = 26, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1064), 1, + [5325] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1068), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1070), 1, - anon_sym_not, - ACTIONS(1074), 1, - anon_sym_, - ACTIONS(1076), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - STATE(243), 1, - aux_sym_long_expression_repeat1, - STATE(1432), 1, + 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, sym_primary_expression, - STATE(1435), 1, + STATE(4082), 1, sym_call, - STATE(1473), 1, - sym_expression, - STATE(1579), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2455), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1732), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1072), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31266,7 +56820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31283,73 +56837,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6271] = 26, - ACTIONS(525), 1, + [5446] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(547), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(1062), 1, + ACTIONS(834), 1, sym_identifier, - ACTIONS(1064), 1, + ACTIONS(840), 1, + anon_sym_not, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1068), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1070), 1, - anon_sym_not, - ACTIONS(1074), 1, + ACTIONS(2075), 1, anon_sym_, - ACTIONS(1076), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - STATE(243), 1, + STATE(509), 1, aux_sym_long_expression_repeat1, - STATE(1432), 1, + STATE(2252), 1, sym_primary_expression, - STATE(1435), 1, + STATE(2365), 1, sym_call, - STATE(1473), 1, - sym_expression, - STATE(1579), 1, + STATE(2402), 1, sym_selector_expression, - STATE(2455), 1, + STATE(3475), 1, + sym_expression, + STATE(5145), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(515), 2, + ACTIONS(442), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1072), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(446), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(2453), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 6, + ACTIONS(430), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31357,7 +56911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31374,75 +56928,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6388] = 28, - ACTIONS(768), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [5563] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1128), 1, + 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(2079), 1, anon_sym_RPAREN, - STATE(1789), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1791), 1, + STATE(4082), 1, sym_call, - STATE(1889), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2426), 1, + STATE(4910), 1, sym_expression, - STATE(2529), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2941), 1, + STATE(5764), 1, sym_keyword_argument, - STATE(3226), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31450,7 +57004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31467,166 +57021,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6509] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(906), 1, + [5684] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(908), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(912), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(920), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(970), 1, - anon_sym_, - STATE(200), 1, - aux_sym_long_expression_repeat1, - STATE(568), 1, - sym_primary_expression, - STATE(755), 1, - sym_expression, - STATE(879), 1, - sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2479), 1, - sym_dotted_name, - STATE(3096), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(904), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(916), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(976), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(922), 6, - sym_integer, + ACTIONS(730), 1, sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(932), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(934), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [6626] = 28, - ACTIONS(768), 1, - sym_identifier, - ACTIONS(770), 1, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(774), 1, - anon_sym_LPAREN, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1130), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2081), 1, anon_sym_RPAREN, - STATE(1789), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1791), 1, + STATE(4082), 1, sym_call, - STATE(1889), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2426), 1, + STATE(4910), 1, sym_expression, - STATE(2529), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2941), 1, + STATE(5764), 1, sym_keyword_argument, - STATE(3226), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31634,7 +57097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31651,73 +57114,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6747] = 26, - ACTIONS(453), 1, + [5805] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1054), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(1056), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1060), 1, - anon_sym_, - STATE(246), 1, - aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1587), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1661), 1, + STATE(3719), 1, sym_call, - STATE(1786), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2531), 1, + STATE(4823), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5536), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1058), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31725,7 +57190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31742,73 +57207,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6864] = 26, - ACTIONS(453), 1, + [5926] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1132), 1, - anon_sym_, - STATE(203), 1, - aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(2537), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(932), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31816,7 +57283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31833,73 +57300,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6981] = 26, - ACTIONS(415), 1, - anon_sym_LPAREN, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, + [6047] = 26, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(421), 1, - anon_sym_LBRACE, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(1134), 1, + ACTIONS(1357), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1138), 1, + ACTIONS(2085), 1, + anon_sym_LPAREN, + ACTIONS(2087), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(2091), 1, anon_sym_, - STATE(293), 1, + ACTIONS(2093), 1, + anon_sym_DQUOTE, + STATE(506), 1, aux_sym_long_expression_repeat1, - STATE(1182), 1, - sym_primary_expression, - STATE(1204), 1, - sym_expression, - STATE(1227), 1, + STATE(2396), 1, sym_call, - STATE(1315), 1, + STATE(2835), 1, + sym_primary_expression, + STATE(3023), 1, sym_selector_expression, - STATE(2452), 1, + STATE(4351), 1, + sym_expression, + STATE(5088), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(429), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(660), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31907,7 +57374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -31924,73 +57391,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7098] = 26, - ACTIONS(453), 1, + [6164] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(928), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(930), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1132), 1, - anon_sym_, - STATE(203), 1, - aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(2537), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(4796), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5589), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(932), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31998,7 +57467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32015,73 +57484,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7215] = 26, - ACTIONS(453), 1, + [6285] = 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, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(1140), 1, + ACTIONS(2095), 1, anon_sym_, - STATE(248), 1, + STATE(459), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1354), 1, + STATE(1411), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2027), 1, + sym_call, + STATE(3338), 1, + sym_expression, + STATE(5035), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(213), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(465), 3, + ACTIONS(1938), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(149), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32089,7 +57558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32106,73 +57575,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7332] = 26, - ACTIONS(940), 1, - anon_sym_LPAREN, - ACTIONS(942), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, + [6402] = 26, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(946), 1, - anon_sym_LBRACE, - ACTIONS(954), 1, - anon_sym_DQUOTE, - ACTIONS(958), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(1357), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1046), 1, + ACTIONS(2085), 1, + anon_sym_LPAREN, + ACTIONS(2087), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(2093), 1, + anon_sym_DQUOTE, + ACTIONS(2097), 1, anon_sym_, - STATE(297), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1561), 1, + STATE(2396), 1, sym_call, - STATE(1573), 1, + STATE(2835), 1, sym_primary_expression, - STATE(1621), 1, - sym_expression, - STATE(1801), 1, + STATE(3023), 1, sym_selector_expression, - STATE(2470), 1, + STATE(4366), 1, + sym_expression, + STATE(5088), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(950), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(660), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32180,7 +57649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32197,73 +57666,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7449] = 26, - ACTIONS(23), 1, + [6519] = 26, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(55), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(886), 1, + ACTIONS(1357), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(1363), 1, + anon_sym_not, + ACTIONS(2085), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - ACTIONS(894), 1, - anon_sym_not, - ACTIONS(898), 1, + ACTIONS(2091), 1, anon_sym_, - ACTIONS(900), 1, + ACTIONS(2093), 1, anon_sym_DQUOTE, - STATE(217), 1, + STATE(506), 1, aux_sym_long_expression_repeat1, - STATE(1495), 1, + STATE(2396), 1, sym_call, - STATE(1549), 1, + STATE(2835), 1, sym_primary_expression, - STATE(1590), 1, - sym_expression, - STATE(1753), 1, + STATE(3023), 1, sym_selector_expression, - STATE(2463), 1, + STATE(4351), 1, + sym_expression, + STATE(5088), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1969), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(896), 3, + ACTIONS(660), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32271,7 +57740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32288,73 +57757,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7566] = 26, - ACTIONS(780), 1, + [6636] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(796), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(772), 1, sym_identifier, - ACTIONS(978), 1, + ACTIONS(776), 1, + anon_sym_not, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(980), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(986), 1, + ACTIONS(1986), 1, anon_sym_, - ACTIONS(988), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - STATE(215), 1, + STATE(490), 1, aux_sym_long_expression_repeat1, - STATE(1789), 1, + STATE(780), 1, sym_primary_expression, - STATE(1791), 1, + STATE(1655), 1, + sym_selector_expression, + STATE(1659), 1, sym_call, - STATE(1792), 1, + STATE(3287), 1, sym_expression, - STATE(1889), 1, - sym_selector_expression, - STATE(2529), 1, + STATE(5130), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(770), 2, + ACTIONS(193), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2002), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(984), 3, + ACTIONS(1984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(1980), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 6, + ACTIONS(107), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32362,7 +57831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32379,73 +57848,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7683] = 26, - ACTIONS(415), 1, + [6753] = 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, anon_sym_LPAREN, - ACTIONS(417), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(421), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1142), 1, + ACTIONS(2099), 1, anon_sym_, - STATE(298), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1189), 1, - sym_expression, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + STATE(2252), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2365), 1, + sym_call, + STATE(2402), 1, sym_selector_expression, - STATE(2454), 1, + STATE(3472), 1, + sym_expression, + STATE(5145), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(442), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(429), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(446), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2453), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 6, + ACTIONS(430), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32453,7 +57922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32470,75 +57939,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7800] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [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, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(2075), 1, + anon_sym_, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + STATE(509), 1, + aux_sym_long_expression_repeat1, + STATE(2252), 1, sym_primary_expression, - STATE(1601), 1, + STATE(2365), 1, + sym_call, + STATE(2402), 1, sym_selector_expression, - STATE(2322), 1, + STATE(3475), 1, sym_expression, - STATE(2464), 1, + STATE(5145), 1, sym_dotted_name, - STATE(2912), 1, - sym_slice, - STATE(3198), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(446), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2453), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32546,7 +58013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32563,73 +58030,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7921] = 26, - ACTIONS(1014), 1, + [6987] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1016), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1018), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(1020), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1028), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1032), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1120), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1124), 1, - anon_sym_, - STATE(292), 1, - aux_sym_long_expression_repeat1, - STATE(1023), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1058), 1, - sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(3719), 1, sym_call, - STATE(2493), 1, + STATE(3727), 1, + sym_selector_expression, + STATE(4826), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5687), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1012), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1123), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1024), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32637,7 +58106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32654,73 +58123,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8038] = 26, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(455), 1, - anon_sym_LBRACK, - ACTIONS(457), 1, + [7108] = 26, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(459), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(1110), 1, + ACTIONS(1357), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1363), 1, anon_sym_not, - ACTIONS(1144), 1, + ACTIONS(2085), 1, + anon_sym_LPAREN, + ACTIONS(2087), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(2091), 1, anon_sym_, - STATE(298), 1, + ACTIONS(2093), 1, + anon_sym_DQUOTE, + STATE(506), 1, aux_sym_long_expression_repeat1, - STATE(1178), 1, - sym_expression, - STATE(1544), 1, + STATE(2396), 1, + sym_call, + STATE(2835), 1, sym_primary_expression, - STATE(1660), 1, + STATE(3023), 1, sym_selector_expression, - STATE(1661), 1, - sym_call, - STATE(2489), 1, + STATE(4351), 1, + sym_expression, + STATE(5088), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1058), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(660), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32728,7 +58197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32745,75 +58214,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8155] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [7225] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(692), 1, + 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(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(2101), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1601), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2370), 1, + STATE(4910), 1, sym_expression, - STATE(2464), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2946), 1, - sym_slice, - STATE(3198), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32821,7 +58290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -32838,166 +58307,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8276] = 26, - ACTIONS(1088), 1, + [7346] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(1094), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1102), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1150), 1, - anon_sym_, - STATE(281), 1, - aux_sym_long_expression_repeat1, - STATE(498), 1, - sym_primary_expression, - STATE(507), 1, - sym_expression, - STATE(881), 1, - sym_call, - STATE(884), 1, - sym_selector_expression, - STATE(2504), 1, - sym_dotted_name, - STATE(3024), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1086), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1098), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1104), 6, - sym_integer, + ACTIONS(730), 1, sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(939), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(937), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [8393] = 28, - ACTIONS(515), 1, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(517), 1, - anon_sym_LPAREN, - ACTIONS(519), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(535), 1, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, + ACTIONS(1698), 1, sym_identifier, - ACTIONS(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(2103), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1601), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2304), 1, + STATE(4910), 1, sym_expression, - STATE(2464), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2838), 1, - sym_slice, - STATE(3198), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33005,7 +58383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33022,74 +58400,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8514] = 27, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [7467] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(1309), 1, + anon_sym_not, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1601), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, sym_selector_expression, - STATE(2420), 1, + STATE(4825), 1, sym_expression, - STATE(2464), 1, + STATE(5075), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5448), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1152), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1732), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33097,7 +58476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33114,73 +58493,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8633] = 26, - ACTIONS(525), 1, + [7588] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(547), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(834), 1, sym_identifier, - ACTIONS(1064), 1, + ACTIONS(840), 1, + anon_sym_not, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1068), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1076), 1, - anon_sym_DQUOTE, - ACTIONS(1154), 1, + ACTIONS(2075), 1, anon_sym_, - STATE(245), 1, + ACTIONS(2077), 1, + anon_sym_DQUOTE, + STATE(509), 1, aux_sym_long_expression_repeat1, - STATE(1435), 1, - sym_call, - STATE(1473), 1, - sym_expression, - STATE(1488), 1, + STATE(2252), 1, sym_primary_expression, - STATE(1601), 1, + STATE(2365), 1, + sym_call, + STATE(2402), 1, sym_selector_expression, - STATE(2464), 1, + STATE(3475), 1, + sym_expression, + STATE(5145), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(515), 2, + ACTIONS(442), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1072), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(446), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2453), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 6, + ACTIONS(430), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33188,7 +58567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33205,38 +58584,38 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8750] = 26, + [7705] = 26, ACTIONS(9), 1, sym_identifier, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_lambda, ACTIONS(45), 1, anon_sym_not, ACTIONS(55), 1, sym_string_start, - ACTIONS(888), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(900), 1, - anon_sym_DQUOTE, - ACTIONS(1082), 1, + ACTIONS(2047), 1, anon_sym_, - STATE(309), 1, + ACTIONS(2049), 1, + anon_sym_DQUOTE, + STATE(687), 1, aux_sym_long_expression_repeat1, - STATE(1494), 1, + STATE(3862), 1, sym_primary_expression, - STATE(1495), 1, + STATE(3874), 1, sym_call, - STATE(1590), 1, - sym_expression, - STATE(1642), 1, + STATE(4139), 1, sym_selector_expression, - STATE(2552), 1, + STATE(4914), 1, + sym_expression, + STATE(5116), 1, sym_dotted_name, - STATE(3186), 1, + STATE(6288), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, @@ -33244,22 +58623,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1969), 2, + STATE(4382), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(4390), 2, sym_binary_operator, sym_subscript, - ACTIONS(896), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(4378), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -33271,7 +58650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(4396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33279,7 +58658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33296,73 +58675,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8867] = 26, - ACTIONS(453), 1, + [7822] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1160), 1, - anon_sym_, - STATE(277), 1, - aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1414), 1, - sym_call, - STATE(1992), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2105), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(2059), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2494), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(932), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33370,7 +58751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33387,73 +58768,166 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8984] = 26, - ACTIONS(453), 1, + [7943] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + 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(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(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, + [8064] = 26, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(528), 1, sym_string_start, - ACTIONS(1156), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(1297), 1, anon_sym_not, - ACTIONS(1160), 1, + ACTIONS(2085), 1, + anon_sym_LPAREN, + ACTIONS(2087), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(2093), 1, + anon_sym_DQUOTE, + ACTIONS(2109), 1, anon_sym_, - STATE(277), 1, + STATE(524), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1414), 1, + STATE(2396), 1, sym_call, - STATE(1992), 1, + STATE(2590), 1, sym_primary_expression, - STATE(2059), 1, + STATE(2738), 1, sym_selector_expression, - STATE(2494), 1, + STATE(3941), 1, + sym_expression, + STATE(5127), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(932), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(604), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(2856), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33461,7 +58935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33478,73 +58952,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9101] = 26, - ACTIONS(415), 1, + [8181] = 26, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(654), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_not, + ACTIONS(2085), 1, anon_sym_LPAREN, - ACTIONS(417), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(421), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(2093), 1, anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(974), 1, + ACTIONS(2111), 1, anon_sym_, - STATE(264), 1, + STATE(531), 1, aux_sym_long_expression_repeat1, - STATE(1204), 1, - sym_expression, - STATE(1227), 1, + STATE(2396), 1, sym_call, - STATE(1229), 1, + STATE(2799), 1, + sym_expression, + STATE(2850), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3017), 1, sym_selector_expression, - STATE(2454), 1, + STATE(5087), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(429), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(660), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3124), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33552,7 +59026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33569,73 +59043,166 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9218] = 26, - ACTIONS(453), 1, + [8298] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + 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(2113), 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_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, + [8419] = 26, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(528), 1, sym_string_start, - ACTIONS(1156), 1, + ACTIONS(654), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(658), 1, anon_sym_not, - ACTIONS(1162), 1, + ACTIONS(2085), 1, + anon_sym_LPAREN, + ACTIONS(2087), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(2093), 1, + anon_sym_DQUOTE, + ACTIONS(2111), 1, anon_sym_, - STATE(298), 1, + STATE(531), 1, aux_sym_long_expression_repeat1, - STATE(1178), 1, - sym_expression, - STATE(1414), 1, + STATE(2396), 1, sym_call, - STATE(1992), 1, + STATE(2799), 1, + sym_expression, + STATE(2850), 1, sym_primary_expression, - STATE(2059), 1, + STATE(3017), 1, sym_selector_expression, - STATE(2494), 1, + STATE(5087), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(932), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(660), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(3124), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33643,7 +59210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33660,73 +59227,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9335] = 26, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(455), 1, - anon_sym_LBRACK, - ACTIONS(457), 1, + [8536] = 26, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(459), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(962), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(964), 1, + ACTIONS(1297), 1, anon_sym_not, - ACTIONS(1164), 1, + ACTIONS(2085), 1, + anon_sym_LPAREN, + ACTIONS(2087), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(2093), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, anon_sym_, - STATE(207), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1335), 1, - sym_primary_expression, - STATE(1414), 1, + STATE(2396), 1, sym_call, - STATE(1475), 1, + STATE(2590), 1, + sym_primary_expression, + STATE(2738), 1, sym_selector_expression, - STATE(2532), 1, + STATE(3950), 1, + sym_expression, + STATE(5127), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(465), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(604), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(2856), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33734,7 +59301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33751,73 +59318,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9452] = 26, - ACTIONS(1088), 1, + [8653] = 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(2039), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1094), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1102), 1, - anon_sym_DQUOTE, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1150), 1, + ACTIONS(2047), 1, anon_sym_, - STATE(281), 1, + ACTIONS(2049), 1, + anon_sym_DQUOTE, + STATE(687), 1, aux_sym_long_expression_repeat1, - STATE(498), 1, + STATE(3862), 1, sym_primary_expression, - STATE(507), 1, - sym_expression, - STATE(881), 1, + STATE(3874), 1, sym_call, - STATE(884), 1, + STATE(4139), 1, sym_selector_expression, - STATE(2504), 1, + STATE(4914), 1, + sym_expression, + STATE(5116), 1, sym_dotted_name, - STATE(3024), 1, + STATE(6288), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1086), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(910), 2, + STATE(4382), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(4390), 2, sym_binary_operator, sym_subscript, - ACTIONS(1098), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(4378), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(4396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33825,7 +59392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33842,75 +59409,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9569] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [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, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(2093), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(760), 1, - anon_sym_COLON, - STATE(1435), 1, + ACTIONS(2109), 1, + anon_sym_, + STATE(524), 1, + aux_sym_long_expression_repeat1, + STATE(2396), 1, sym_call, - STATE(1488), 1, + STATE(2590), 1, sym_primary_expression, - STATE(1601), 1, + STATE(2738), 1, sym_selector_expression, - STATE(2313), 1, + STATE(3941), 1, sym_expression, - STATE(2464), 1, + STATE(5127), 1, sym_dotted_name, - STATE(2775), 1, - sym_slice, - STATE(3198), 1, + STATE(5947), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + ACTIONS(600), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(604), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2856), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(524), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33918,7 +59483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -33935,73 +59500,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9690] = 26, - ACTIONS(1088), 1, + [8887] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(1094), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1102), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1106), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1166), 1, - anon_sym_, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(468), 1, - sym_expression, - STATE(498), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2117), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(881), 1, + STATE(4082), 1, sym_call, - STATE(884), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2504), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1086), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - ACTIONS(1098), 3, + STATE(4297), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34009,7 +59576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34026,73 +59593,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9807] = 26, - ACTIONS(1088), 1, + [9008] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(1094), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1102), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1106), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1146), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1150), 1, - anon_sym_, - STATE(281), 1, - aux_sym_long_expression_repeat1, - STATE(498), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(507), 1, - sym_expression, - STATE(881), 1, + STATE(3719), 1, sym_call, - STATE(884), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2504), 1, + STATE(4794), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5450), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1086), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1098), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34100,7 +59669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34117,73 +59686,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9924] = 26, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(455), 1, - anon_sym_LBRACK, - ACTIONS(457), 1, + [9129] = 26, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(459), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(1156), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1158), 1, + ACTIONS(1297), 1, anon_sym_not, - ACTIONS(1160), 1, + ACTIONS(2085), 1, + anon_sym_LPAREN, + ACTIONS(2087), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(2093), 1, + anon_sym_DQUOTE, + ACTIONS(2109), 1, anon_sym_, - STATE(277), 1, + STATE(524), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1414), 1, + STATE(2396), 1, sym_call, - STATE(1992), 1, + STATE(2590), 1, sym_primary_expression, - STATE(2059), 1, + STATE(2738), 1, sym_selector_expression, - STATE(2494), 1, + STATE(3941), 1, + sym_expression, + STATE(5127), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(600), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(932), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(604), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(2856), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(524), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34191,7 +59760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34208,73 +59777,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10041] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1014), 1, + [9246] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1016), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1018), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(1020), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1026), 1, - anon_sym_, - ACTIONS(1028), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1032), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - STATE(238), 1, - aux_sym_long_expression_repeat1, - STATE(1057), 1, + 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(1058), 1, - sym_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(3719), 1, sym_call, - STATE(2457), 1, + STATE(3727), 1, + sym_selector_expression, + STATE(4818), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5544), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1012), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1123), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1024), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34282,7 +59853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34299,75 +59870,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10158] = 28, - ACTIONS(768), 1, + [9367] = 26, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(654), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(658), 1, + anon_sym_not, + ACTIONS(2085), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(2093), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1168), 1, - anon_sym_RPAREN, - STATE(1789), 1, - sym_primary_expression, - STATE(1791), 1, + ACTIONS(2119), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2396), 1, sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2426), 1, + STATE(2850), 1, + sym_primary_expression, + STATE(2864), 1, sym_expression, - STATE(2529), 1, + STATE(3017), 1, + sym_selector_expression, + STATE(5087), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5947), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + ACTIONS(600), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(660), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3124), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(524), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34375,7 +59944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34392,73 +59961,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10279] = 26, - ACTIONS(1010), 1, + [9484] = 26, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(822), 1, sym_identifier, - ACTIONS(1014), 1, + ACTIONS(826), 1, + anon_sym_not, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(1016), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1020), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1026), 1, - anon_sym_, - ACTIONS(1028), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(1032), 1, - sym_string_start, - STATE(238), 1, + ACTIONS(2123), 1, + anon_sym_, + STATE(540), 1, aux_sym_long_expression_repeat1, - STATE(1057), 1, + STATE(2027), 1, + sym_call, + STATE(2033), 1, sym_primary_expression, - STATE(1058), 1, - sym_expression, - STATE(1066), 1, + STATE(2164), 1, sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2457), 1, + STATE(3353), 1, + sym_expression, + STATE(5144), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1012), 2, + ACTIONS(213), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1123), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1024), 3, + ACTIONS(2121), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(2239), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 6, + ACTIONS(149), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34466,7 +60035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34483,73 +60052,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10396] = 26, - ACTIONS(936), 1, + [9601] = 26, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(822), 1, sym_identifier, - ACTIONS(940), 1, + ACTIONS(826), 1, + anon_sym_not, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(942), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(946), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(952), 1, - anon_sym_, - ACTIONS(954), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(958), 1, - sym_string_start, - STATE(289), 1, + ACTIONS(2123), 1, + anon_sym_, + STATE(540), 1, aux_sym_long_expression_repeat1, - STATE(1551), 1, - sym_primary_expression, - STATE(1561), 1, + STATE(2027), 1, sym_call, - STATE(1621), 1, - sym_expression, - STATE(1842), 1, + STATE(2033), 1, + sym_primary_expression, + STATE(2164), 1, sym_selector_expression, - STATE(2527), 1, + STATE(3353), 1, + sym_expression, + STATE(5144), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, + ACTIONS(213), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1853), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(950), 3, + ACTIONS(2121), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(2239), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 6, + ACTIONS(149), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34557,7 +60126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34574,73 +60143,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10513] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(940), 1, + [9718] = 26, + ACTIONS(582), 1, anon_sym_LPAREN, - ACTIONS(942), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(586), 1, anon_sym_lambda, - ACTIONS(946), 1, + ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(952), 1, - anon_sym_, - ACTIONS(954), 1, + ACTIONS(592), 1, anon_sym_DQUOTE, - ACTIONS(958), 1, + ACTIONS(598), 1, sym_string_start, - STATE(289), 1, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2125), 1, + anon_sym_, + STATE(535), 1, aux_sym_long_expression_repeat1, - STATE(1551), 1, + STATE(2751), 1, sym_primary_expression, - STATE(1561), 1, + STATE(2824), 1, + sym_selector_expression, + STATE(2870), 1, sym_call, - STATE(1621), 1, + STATE(4219), 1, sym_expression, - STATE(1842), 1, - sym_selector_expression, - STATE(2527), 1, + STATE(5115), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, + ACTIONS(610), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1853), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(950), 3, + ACTIONS(594), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(3057), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 6, + ACTIONS(596), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34648,7 +60217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34665,73 +60234,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10630] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(940), 1, + [9835] = 26, + ACTIONS(582), 1, anon_sym_LPAREN, - ACTIONS(942), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(586), 1, anon_sym_lambda, - ACTIONS(946), 1, + ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(954), 1, + ACTIONS(592), 1, anon_sym_DQUOTE, - ACTIONS(958), 1, + ACTIONS(598), 1, sym_string_start, - ACTIONS(1170), 1, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2127), 1, anon_sym_, - STATE(298), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1551), 1, + STATE(2751), 1, sym_primary_expression, - STATE(1561), 1, + STATE(2824), 1, + sym_selector_expression, + STATE(2870), 1, sym_call, - STATE(1628), 1, + STATE(4238), 1, sym_expression, - STATE(1842), 1, - sym_selector_expression, - STATE(2527), 1, + STATE(5115), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, + ACTIONS(610), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1853), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(950), 3, + ACTIONS(594), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(3057), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 6, + ACTIONS(596), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34739,7 +60308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34756,73 +60325,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10747] = 26, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(1064), 1, + [9952] = 26, + ACTIONS(582), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(1068), 1, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(1076), 1, + ACTIONS(592), 1, anon_sym_DQUOTE, - ACTIONS(1154), 1, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2125), 1, anon_sym_, - STATE(245), 1, + STATE(535), 1, aux_sym_long_expression_repeat1, - STATE(1435), 1, - sym_call, - STATE(1473), 1, - sym_expression, - STATE(1488), 1, + STATE(2751), 1, sym_primary_expression, - STATE(1601), 1, + STATE(2824), 1, sym_selector_expression, - STATE(2464), 1, + STATE(2870), 1, + sym_call, + STATE(4219), 1, + sym_expression, + STATE(5115), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(515), 2, + ACTIONS(610), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1732), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1072), 3, + ACTIONS(594), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(3057), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 6, + ACTIONS(596), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34830,7 +60399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34847,73 +60416,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10864] = 26, - ACTIONS(453), 1, + [10069] = 26, + ACTIONS(582), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(586), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(592), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(598), 1, sym_string_start, - ACTIONS(553), 1, + ACTIONS(1333), 1, sym_identifier, - ACTIONS(1140), 1, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2125), 1, anon_sym_, - STATE(248), 1, + STATE(535), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1354), 1, + STATE(2751), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(2824), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2870), 1, + sym_call, + STATE(4219), 1, + sym_expression, + STATE(5115), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(610), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(465), 3, + ACTIONS(594), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3057), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(596), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34921,7 +60490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -34938,164 +60507,146 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10981] = 26, - ACTIONS(1014), 1, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1588), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1020), 1, anon_sym_LBRACE, - ACTIONS(1028), 1, - anon_sym_DQUOTE, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1120), 1, - sym_identifier, - ACTIONS(1122), 1, - anon_sym_not, - ACTIONS(1172), 1, - anon_sym_, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(1023), 1, - sym_primary_expression, - STATE(1056), 1, - sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2493), 1, - sym_dotted_name, - STATE(3063), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1012), 2, - anon_sym_DOT, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1024), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1107), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 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(1121), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [11098] = 26, - ACTIONS(415), 1, - anon_sym_LPAREN, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, + [10267] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(421), 1, - anon_sym_LBRACE, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(1134), 1, + ACTIONS(850), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(854), 1, anon_sym_not, - ACTIONS(1174), 1, + ACTIONS(2131), 1, + anon_sym_LPAREN, + ACTIONS(2133), 1, + anon_sym_LBRACK, + ACTIONS(2135), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, anon_sym_, - STATE(298), 1, + ACTIONS(2141), 1, + anon_sym_DQUOTE, + STATE(649), 1, aux_sym_long_expression_repeat1, - STATE(1182), 1, + STATE(2313), 1, sym_primary_expression, - STATE(1189), 1, - sym_expression, - STATE(1227), 1, - sym_call, - STATE(1315), 1, + STATE(2328), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2407), 1, + sym_call, + STATE(3677), 1, + sym_expression, + STATE(5009), 1, sym_dotted_name, - STATE(3180), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(438), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(429), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2137), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(2543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 6, + ACTIONS(271), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35103,7 +60654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35120,74 +60671,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11215] = 27, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [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, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, + ACTIONS(2143), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2027), 1, sym_call, - STATE(1488), 1, + STATE(2033), 1, sym_primary_expression, - STATE(1601), 1, + STATE(2164), 1, sym_selector_expression, - STATE(2401), 1, + STATE(3357), 1, sym_expression, - STATE(2464), 1, + STATE(5144), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1176), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1732), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(2121), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2239), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35195,7 +60745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35212,75 +60762,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11334] = 28, - ACTIONS(768), 1, + [10501] = 26, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(654), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(658), 1, + anon_sym_not, + ACTIONS(2085), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(2093), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1178), 1, - anon_sym_RPAREN, - STATE(1789), 1, - sym_primary_expression, - STATE(1791), 1, + ACTIONS(2111), 1, + anon_sym_, + STATE(531), 1, + aux_sym_long_expression_repeat1, + STATE(2396), 1, sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2426), 1, + STATE(2799), 1, sym_expression, - STATE(2529), 1, + STATE(2850), 1, + sym_primary_expression, + STATE(3017), 1, + sym_selector_expression, + STATE(5087), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5947), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + ACTIONS(600), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(660), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3124), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(524), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35288,7 +60836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35305,73 +60853,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11455] = 26, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(455), 1, - anon_sym_LBRACK, - ACTIONS(457), 1, + [10618] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(459), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(1110), 1, + ACTIONS(850), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(854), 1, anon_sym_not, - ACTIONS(1114), 1, + ACTIONS(2131), 1, + anon_sym_LPAREN, + ACTIONS(2133), 1, + anon_sym_LBRACK, + ACTIONS(2135), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, anon_sym_, - STATE(267), 1, + ACTIONS(2141), 1, + anon_sym_DQUOTE, + STATE(649), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1544), 1, + STATE(2313), 1, sym_primary_expression, - STATE(1660), 1, + STATE(2328), 1, sym_selector_expression, - STATE(1661), 1, + STATE(2407), 1, sym_call, - STATE(2489), 1, + STATE(3677), 1, + sym_expression, + STATE(5009), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(438), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1058), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2137), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(271), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35379,7 +60927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35396,73 +60944,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11572] = 26, - ACTIONS(940), 1, + [10735] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(942), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(946), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(958), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1180), 1, - anon_sym_, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(1561), 1, - sym_call, - STATE(1573), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1628), 1, - sym_expression, - STATE(1801), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, sym_selector_expression, - STATE(2470), 1, + STATE(4816), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5690), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1853), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(950), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35470,7 +61020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35487,73 +61037,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11689] = 26, - ACTIONS(1182), 1, + [10856] = 26, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(1188), 1, + ACTIONS(1309), 1, + anon_sym_not, + ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(1191), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - ACTIONS(1194), 1, - anon_sym_lambda, - ACTIONS(1197), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(1203), 1, - anon_sym_not, - ACTIONS(1209), 1, + ACTIONS(2153), 1, anon_sym_, - ACTIONS(1212), 1, + ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(1218), 1, - sym_string_start, - STATE(298), 1, + STATE(551), 1, aux_sym_long_expression_repeat1, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, + STATE(3716), 1, sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2573), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(4788), 1, sym_expression, - STATE(3261), 1, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1185), 2, + ACTIONS(624), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1206), 3, + ACTIONS(2151), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(1200), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1215), 6, + ACTIONS(548), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35561,7 +61111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35578,75 +61128,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11806] = 28, - ACTIONS(768), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [10973] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1221), 1, + 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(2157), 1, anon_sym_RPAREN, - STATE(1789), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1791), 1, + STATE(4082), 1, sym_call, - STATE(1889), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2426), 1, + STATE(4910), 1, sym_expression, - STATE(2529), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2941), 1, + STATE(5764), 1, sym_keyword_argument, - STATE(3226), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35654,7 +61204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35671,73 +61221,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11927] = 26, - ACTIONS(415), 1, - anon_sym_LPAREN, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, + [11094] = 26, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(421), 1, - anon_sym_LBRACE, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(1134), 1, + ACTIONS(822), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(826), 1, anon_sym_not, - ACTIONS(1138), 1, + ACTIONS(1932), 1, + anon_sym_LPAREN, + ACTIONS(1934), 1, + anon_sym_LBRACK, + ACTIONS(1936), 1, + anon_sym_LBRACE, + ACTIONS(1942), 1, + anon_sym_DQUOTE, + ACTIONS(2123), 1, anon_sym_, - STATE(293), 1, + STATE(540), 1, aux_sym_long_expression_repeat1, - STATE(1182), 1, - sym_primary_expression, - STATE(1204), 1, - sym_expression, - STATE(1227), 1, + STATE(2027), 1, sym_call, - STATE(1315), 1, + STATE(2033), 1, + sym_primary_expression, + STATE(2164), 1, sym_selector_expression, - STATE(2452), 1, + STATE(3353), 1, + sym_expression, + STATE(5144), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(213), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1355), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(429), 3, + ACTIONS(2121), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(2239), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 6, + ACTIONS(149), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35745,7 +61295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35762,73 +61312,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12044] = 26, - ACTIONS(906), 1, + [11211] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(908), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(912), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(920), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(924), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(990), 1, - sym_identifier, - ACTIONS(992), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(994), 1, - anon_sym_, - STATE(223), 1, - aux_sym_long_expression_repeat1, - STATE(704), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2159), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(755), 1, - sym_expression, - STATE(905), 1, + STATE(4082), 1, sym_call, - STATE(907), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2517), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(904), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - ACTIONS(916), 3, + STATE(4297), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35836,7 +61388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35853,75 +61405,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12161] = 28, - ACTIONS(768), 1, + [11332] = 26, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(842), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(848), 1, + anon_sym_not, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1223), 1, - anon_sym_RPAREN, - STATE(1789), 1, + ACTIONS(2163), 1, + anon_sym_, + STATE(697), 1, + aux_sym_long_expression_repeat1, + STATE(2399), 1, sym_primary_expression, - STATE(1791), 1, + STATE(2407), 1, sym_call, - STATE(1889), 1, + STATE(2505), 1, sym_selector_expression, - STATE(2426), 1, + STATE(3848), 1, sym_expression, - STATE(2529), 1, + STATE(5000), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2743), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35929,7 +61479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -35946,73 +61496,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12282] = 26, - ACTIONS(1014), 1, - anon_sym_LPAREN, - ACTIONS(1016), 1, - anon_sym_LBRACK, - ACTIONS(1018), 1, + [11449] = 26, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(1020), 1, - anon_sym_LBRACE, - ACTIONS(1028), 1, - anon_sym_DQUOTE, - ACTIONS(1032), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(1120), 1, + ACTIONS(828), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(832), 1, anon_sym_not, - ACTIONS(1124), 1, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2167), 1, + anon_sym_LBRACK, + ACTIONS(2169), 1, + anon_sym_LBRACE, + ACTIONS(2173), 1, anon_sym_, - STATE(292), 1, + ACTIONS(2175), 1, + anon_sym_DQUOTE, + STATE(552), 1, aux_sym_long_expression_repeat1, - STATE(1023), 1, + STATE(1943), 1, sym_primary_expression, - STATE(1058), 1, - sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(2072), 1, sym_call, - STATE(2493), 1, + STATE(2208), 1, + sym_selector_expression, + STATE(3359), 1, + sym_expression, + STATE(5092), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1012), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1024), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2171), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(2237), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 6, + ACTIONS(175), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36020,7 +61570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36037,75 +61587,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12399] = 28, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [11566] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(692), 1, + 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(760), 1, - anon_sym_COLON, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(2177), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1601), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2318), 1, + STATE(4910), 1, sym_expression, - STATE(2464), 1, + STATE(5012), 1, sym_dotted_name, - STATE(2751), 1, - sym_slice, - STATE(3198), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36113,7 +61663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36130,73 +61680,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12520] = 26, - ACTIONS(415), 1, - anon_sym_LPAREN, - ACTIONS(417), 1, - anon_sym_LBRACK, - ACTIONS(419), 1, + [11687] = 26, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(421), 1, - anon_sym_LBRACE, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1134), 1, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1138), 1, + ACTIONS(2145), 1, + anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_LBRACK, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2155), 1, + anon_sym_DQUOTE, + ACTIONS(2179), 1, anon_sym_, - STATE(293), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1182), 1, + STATE(3716), 1, sym_primary_expression, - STATE(1204), 1, - sym_expression, - STATE(1227), 1, + STATE(3719), 1, sym_call, - STATE(1315), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2452), 1, + STATE(4812), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3180), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(409), 2, + ACTIONS(624), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1355), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(429), 3, + ACTIONS(2151), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 6, + ACTIONS(548), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36204,7 +61754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36221,73 +61771,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12637] = 26, - ACTIONS(453), 1, + [11804] = 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, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(1140), 1, + ACTIONS(2181), 1, anon_sym_, - STATE(248), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1354), 1, + STATE(1943), 1, sym_primary_expression, - STATE(1414), 1, + STATE(2072), 1, sym_call, - STATE(1427), 1, + STATE(2208), 1, sym_selector_expression, - STATE(2507), 1, + STATE(3371), 1, + sym_expression, + STATE(5092), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(465), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2171), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2237), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(175), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36295,7 +61845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36312,73 +61862,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12754] = 26, - ACTIONS(906), 1, + [11921] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(908), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(912), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(920), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(924), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(990), 1, - sym_identifier, - ACTIONS(992), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(994), 1, - anon_sym_, - STATE(223), 1, - aux_sym_long_expression_repeat1, - STATE(704), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2183), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(755), 1, - sym_expression, - STATE(905), 1, + STATE(4082), 1, sym_call, - STATE(907), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2517), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(904), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - ACTIONS(916), 3, + STATE(4297), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36386,7 +61938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36403,73 +61955,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12871] = 26, - ACTIONS(940), 1, + [12042] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(942), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(946), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(958), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1046), 1, - anon_sym_, - STATE(297), 1, - aux_sym_long_expression_repeat1, - STATE(1561), 1, - sym_call, - STATE(1573), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1621), 1, - sym_expression, - STATE(1801), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, sym_selector_expression, - STATE(2470), 1, + STATE(4789), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5686), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1853), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(950), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36477,7 +62031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36494,73 +62048,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12988] = 26, - ACTIONS(9), 1, + [12163] = 26, + ACTIONS(251), 1, sym_identifier, - ACTIONS(23), 1, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(45), 1, + ACTIONS(265), 1, anon_sym_not, - ACTIONS(55), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(888), 1, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(900), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1225), 1, + ACTIONS(2185), 1, anon_sym_, - STATE(298), 1, + STATE(558), 1, aux_sym_long_expression_repeat1, - STATE(1494), 1, + STATE(2287), 1, sym_primary_expression, - STATE(1495), 1, - sym_call, - STATE(1602), 1, + STATE(2303), 1, sym_expression, - STATE(1642), 1, + STATE(2329), 1, sym_selector_expression, - STATE(2552), 1, + STATE(2407), 1, + sym_call, + STATE(4999), 1, sym_dotted_name, - STATE(3186), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(438), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1969), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2458), 2, sym_binary_operator, sym_subscript, - ACTIONS(896), 3, + ACTIONS(2137), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(271), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36568,7 +62122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36585,73 +62139,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13105] = 26, - ACTIONS(1084), 1, + [12280] = 26, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(828), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(832), 1, + anon_sym_not, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1094), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1102), 1, - anon_sym_DQUOTE, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1227), 1, + ACTIONS(2173), 1, anon_sym_, - STATE(298), 1, + ACTIONS(2175), 1, + anon_sym_DQUOTE, + STATE(552), 1, aux_sym_long_expression_repeat1, - STATE(468), 1, - sym_expression, - STATE(630), 1, + STATE(1943), 1, sym_primary_expression, - STATE(881), 1, + STATE(2072), 1, sym_call, - STATE(908), 1, + STATE(2208), 1, sym_selector_expression, - STATE(2499), 1, + STATE(3359), 1, + sym_expression, + STATE(5092), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1086), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(910), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1098), 3, + ACTIONS(2171), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(2237), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 6, + ACTIONS(175), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36659,7 +62213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36676,73 +62230,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13222] = 26, - ACTIONS(453), 1, + [12397] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(550), 1, + sym_float, + ACTIONS(552), 1, sym_string_start, - ACTIONS(962), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(964), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1164), 1, - anon_sym_, - STATE(207), 1, - aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1335), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1414), 1, + STATE(3719), 1, sym_call, - STATE(1475), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2532), 1, + STATE(4783), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5603), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(465), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(548), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36750,7 +62306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36767,73 +62323,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13339] = 26, - ACTIONS(902), 1, + [12518] = 26, + ACTIONS(251), 1, sym_identifier, - ACTIONS(906), 1, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(908), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(912), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(920), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(970), 1, + ACTIONS(2187), 1, anon_sym_, - STATE(200), 1, + STATE(483), 1, aux_sym_long_expression_repeat1, - STATE(568), 1, + STATE(2287), 1, sym_primary_expression, - STATE(755), 1, + STATE(2294), 1, sym_expression, - STATE(879), 1, + STATE(2329), 1, sym_selector_expression, - STATE(905), 1, + STATE(2407), 1, sym_call, - STATE(2479), 1, + STATE(4999), 1, sym_dotted_name, - STATE(3096), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(904), 2, + ACTIONS(438), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(920), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - STATE(929), 2, + STATE(2458), 2, sym_binary_operator, sym_subscript, - ACTIONS(916), 3, + ACTIONS(2137), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 6, + ACTIONS(271), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36841,7 +62397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36858,73 +62414,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13456] = 26, - ACTIONS(1084), 1, + [12635] = 26, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(828), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(832), 1, + anon_sym_not, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1094), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1100), 1, + ACTIONS(2173), 1, anon_sym_, - ACTIONS(1102), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1106), 1, - sym_string_start, - STATE(310), 1, + STATE(552), 1, aux_sym_long_expression_repeat1, - STATE(507), 1, - sym_expression, - STATE(630), 1, + STATE(1943), 1, sym_primary_expression, - STATE(881), 1, + STATE(2072), 1, sym_call, - STATE(908), 1, + STATE(2208), 1, sym_selector_expression, - STATE(2499), 1, + STATE(3359), 1, + sym_expression, + STATE(5092), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1086), 2, + ACTIONS(209), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(910), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1098), 3, + ACTIONS(2171), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(2237), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 6, + ACTIONS(175), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36932,7 +62488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -36949,73 +62505,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13573] = 26, - ACTIONS(453), 1, + [12752] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1164), 1, - anon_sym_, - STATE(207), 1, - aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1335), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2189), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1414), 1, + STATE(4082), 1, sym_call, - STATE(1475), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2532), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(465), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37023,7 +62581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37040,73 +62598,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13690] = 26, - ACTIONS(1084), 1, + [12873] = 26, + ACTIONS(251), 1, sym_identifier, - ACTIONS(1088), 1, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1094), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1100), 1, - anon_sym_, - ACTIONS(1102), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1106), 1, - sym_string_start, - STATE(310), 1, + ACTIONS(2185), 1, + anon_sym_, + STATE(558), 1, aux_sym_long_expression_repeat1, - STATE(507), 1, - sym_expression, - STATE(630), 1, + STATE(2287), 1, sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(908), 1, + STATE(2303), 1, + sym_expression, + STATE(2329), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2407), 1, + sym_call, + STATE(4999), 1, sym_dotted_name, - STATE(3024), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1086), 2, + ACTIONS(438), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(910), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2458), 2, sym_binary_operator, sym_subscript, - ACTIONS(1098), 3, + ACTIONS(2137), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 6, + ACTIONS(271), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37114,7 +62672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37131,73 +62689,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13807] = 26, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(455), 1, - anon_sym_LBRACK, - ACTIONS(457), 1, + [12990] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(459), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(928), 1, + ACTIONS(794), 1, sym_identifier, - ACTIONS(930), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(1132), 1, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1906), 1, + anon_sym_LBRACK, + ACTIONS(1908), 1, + anon_sym_LBRACE, + ACTIONS(1914), 1, + anon_sym_DQUOTE, + ACTIONS(2193), 1, anon_sym_, - STATE(203), 1, + STATE(576), 1, aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, + STATE(779), 1, sym_primary_expression, - STATE(2537), 1, + STATE(1533), 1, + sym_call, + STATE(1614), 1, + sym_selector_expression, + STATE(3292), 1, + sym_expression, + STATE(5082), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, + ACTIONS(197), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(932), 3, + ACTIONS(2191), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2073), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(81), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37205,7 +62763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37222,73 +62780,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13924] = 26, - ACTIONS(453), 1, + [13107] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(455), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(457), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(459), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1114), 1, - anon_sym_, - STATE(267), 1, - aux_sym_long_expression_repeat1, - STATE(1171), 1, - sym_expression, - STATE(1544), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2195), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1660), 1, - sym_selector_expression, - STATE(1661), 1, + STATE(4082), 1, sym_call, - STATE(2489), 1, + STATE(4214), 1, + sym_selector_expression, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(449), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1058), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 6, + ACTIONS(728), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37296,7 +62856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37313,73 +62873,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14041] = 26, - ACTIONS(525), 1, + [13228] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(535), 1, + ACTIONS(265), 1, anon_sym_not, - ACTIONS(547), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(692), 1, - sym_identifier, - ACTIONS(1064), 1, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(1066), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(1068), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(1076), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1154), 1, + ACTIONS(2185), 1, anon_sym_, - STATE(245), 1, + STATE(558), 1, aux_sym_long_expression_repeat1, - STATE(1435), 1, - sym_call, - STATE(1473), 1, - sym_expression, - STATE(1488), 1, + STATE(2287), 1, sym_primary_expression, - STATE(1601), 1, + STATE(2303), 1, + sym_expression, + STATE(2329), 1, sym_selector_expression, - STATE(2464), 1, + STATE(2407), 1, + sym_call, + STATE(4999), 1, sym_dotted_name, - STATE(3198), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(515), 2, + ACTIONS(438), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1072), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2137), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 6, + ACTIONS(271), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37387,7 +62947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37404,166 +62964,146 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14158] = 28, - ACTIONS(768), 1, - sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1229), 1, - anon_sym_RPAREN, - STATE(1789), 1, - sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2426), 1, - sym_expression, - STATE(2529), 1, - sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(788), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(2004), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 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(1998), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [14279] = 27, - ACTIONS(768), 1, + [13426] = 26, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(181), 1, sym_identifier, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(185), 1, + anon_sym_not, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - STATE(1789), 1, + ACTIONS(2199), 1, + anon_sym_, + STATE(568), 1, + aux_sym_long_expression_repeat1, + STATE(1064), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2426), 1, + STATE(1432), 1, sym_expression, - STATE(2529), 1, + STATE(1901), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(2941), 1, - sym_keyword_argument, - STATE(3226), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1938), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37571,7 +63111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37588,73 +63128,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14397] = 27, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [13543] = 26, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1106), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(1303), 1, + sym_identifier, + ACTIONS(1309), 1, + anon_sym_not, + ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2153), 1, + anon_sym_, + ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(65), 1, - aux_sym_check_statement_repeat1, - STATE(630), 1, + STATE(551), 1, + aux_sym_long_expression_repeat1, + STATE(3716), 1, sym_primary_expression, - STATE(881), 1, + STATE(3719), 1, sym_call, - STATE(908), 1, + STATE(3727), 1, sym_selector_expression, - STATE(1173), 1, + STATE(4788), 1, sym_expression, - STATE(2499), 1, + STATE(5075), 1, sym_dotted_name, - STATE(3024), 1, + STATE(6118), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + ACTIONS(624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2151), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(548), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37662,7 +63202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37679,73 +63219,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14515] = 27, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, + [13660] = 26, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(924), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(990), 1, + ACTIONS(181), 1, sym_identifier, - ACTIONS(992), 1, + ACTIONS(185), 1, anon_sym_not, - ACTIONS(1245), 1, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, - sym_float, - STATE(78), 1, - aux_sym_check_statement_repeat1, - STATE(704), 1, + ACTIONS(2201), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(1064), 1, sym_primary_expression, - STATE(905), 1, - sym_call, - STATE(907), 1, - sym_selector_expression, - STATE(1172), 1, + STATE(1472), 1, sym_expression, - STATE(2517), 1, + STATE(1901), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(2168), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1938), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37753,7 +63293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37770,71 +63310,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14633] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [13777] = 26, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(439), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(1134), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(820), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1182), 1, + ACTIONS(2095), 1, + anon_sym_, + STATE(459), 1, + aux_sym_long_expression_repeat1, + STATE(1411), 1, sym_primary_expression, - STATE(1216), 1, - sym_expression, - STATE(1227), 1, - sym_call, - STATE(1315), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2027), 1, + sym_call, + STATE(3338), 1, + sym_expression, + STATE(5035), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(1938), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37842,7 +63384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37859,71 +63401,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14748] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [13894] = 26, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(814), 1, sym_identifier, - ACTIONS(1275), 1, + ACTIONS(820), 1, + anon_sym_not, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1566), 1, + ACTIONS(2095), 1, + anon_sym_, + STATE(459), 1, + aux_sym_long_expression_repeat1, + STATE(1411), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, + STATE(2027), 1, + sym_call, + STATE(3338), 1, sym_expression, - STATE(3130), 1, + STATE(5035), 1, + sym_dotted_name, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(1283), 3, + STATE(2168), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1938), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37931,7 +63475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -37948,71 +63492,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14863] = 26, - ACTIONS(9), 1, + [14011] = 26, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(181), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(185), 1, + anon_sym_not, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1934), 1, + anon_sym_LBRACK, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, + ACTIONS(2199), 1, + anon_sym_, + STATE(568), 1, + aux_sym_long_expression_repeat1, + STATE(1064), 1, sym_primary_expression, - STATE(1495), 1, - sym_call, - STATE(1642), 1, - sym_selector_expression, - STATE(2421), 1, + STATE(1432), 1, sym_expression, - STATE(2552), 1, + STATE(1901), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2168), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1938), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38020,7 +63566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38037,422 +63583,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14978] = 6, - ACTIONS(1293), 1, - anon_sym_and, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 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(1289), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [15053] = 8, - ACTIONS(1291), 1, - anon_sym_QMARK_DOT, - ACTIONS(1293), 1, - anon_sym_and, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1299), 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(1297), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [15132] = 8, - ACTIONS(1293), 1, - anon_sym_and, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1291), 12, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [14128] = 26, + ACTIONS(560), 1, anon_sym_LPAREN, + ACTIONS(562), 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(1299), 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(1289), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + ACTIONS(564), 1, anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [15211] = 6, - ACTIONS(1301), 1, - anon_sym_and, - ACTIONS(1303), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(566), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(570), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1289), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [15286] = 8, - ACTIONS(1291), 1, - anon_sym_QMARK_DOT, - ACTIONS(1301), 1, - anon_sym_and, - ACTIONS(1303), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1299), 24, + ACTIONS(576), 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_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1297), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(1347), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [15365] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(1351), 1, anon_sym_not, - ACTIONS(1259), 1, - anon_sym_LPAREN, - ACTIONS(1261), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - STATE(1222), 1, - sym_primary_expression, - STATE(1227), 1, + ACTIONS(2203), 1, + anon_sym_, + STATE(589), 1, + aux_sym_long_expression_repeat1, + STATE(3807), 1, sym_call, - STATE(1311), 1, + STATE(3825), 1, + sym_primary_expression, + STATE(4004), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2568), 1, + STATE(4902), 1, sym_expression, - STATE(3180), 1, + STATE(5150), 1, + sym_dotted_name, + STATE(5996), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - STATE(1355), 2, + STATE(4239), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(4208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(574), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38460,7 +63657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38477,71 +63674,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15480] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [14245] = 26, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(439), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1259), 1, + ACTIONS(1303), 1, + sym_identifier, + ACTIONS(1309), 1, + anon_sym_not, + ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2153), 1, + anon_sym_, + ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - ACTIONS(1307), 1, - anon_sym_not, - STATE(1222), 1, + STATE(551), 1, + aux_sym_long_expression_repeat1, + STATE(3716), 1, sym_primary_expression, - STATE(1227), 1, + STATE(3719), 1, sym_call, - STATE(1311), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2568), 1, + STATE(4788), 1, sym_expression, - STATE(3180), 1, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1355), 2, + ACTIONS(624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2151), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38549,7 +63748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38566,71 +63765,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15595] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + [14362] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1120), 1, + ACTIONS(764), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(770), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, + ACTIONS(2055), 1, + anon_sym_, + STATE(494), 1, + aux_sym_long_expression_repeat1, + STATE(1426), 1, sym_primary_expression, - STATE(1028), 1, - sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(1659), 1, sym_call, - STATE(2493), 1, + STATE(1916), 1, + sym_selector_expression, + STATE(3307), 1, + sym_expression, + STATE(5053), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(2053), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(2194), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38638,7 +63839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38655,71 +63856,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15710] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + [14479] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1120), 1, + ACTIONS(764), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(770), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, + ACTIONS(2055), 1, + anon_sym_, + STATE(494), 1, + aux_sym_long_expression_repeat1, + STATE(1426), 1, sym_primary_expression, - STATE(1036), 1, - sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(1659), 1, sym_call, - STATE(2493), 1, + STATE(1916), 1, + sym_selector_expression, + STATE(3307), 1, + sym_expression, + STATE(5053), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(2053), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(2194), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38727,7 +63930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38744,71 +63947,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15825] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [14596] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(972), 1, + ACTIONS(794), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(798), 1, + anon_sym_not, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2205), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(779), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1533), 1, + sym_call, + STATE(1614), 1, sym_selector_expression, - STATE(2277), 1, + STATE(3266), 1, sym_expression, - STATE(2454), 1, + STATE(5082), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(2191), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2073), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38816,7 +64021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38833,71 +64038,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15940] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [14713] = 26, + ACTIONS(560), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(562), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(570), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2203), 1, + anon_sym_, + STATE(589), 1, + aux_sym_long_expression_repeat1, + STATE(3807), 1, sym_call, - STATE(1229), 1, + STATE(3825), 1, sym_primary_expression, - STATE(1236), 1, + STATE(4004), 1, sym_selector_expression, - STATE(2274), 1, + STATE(4902), 1, sym_expression, - STATE(2454), 1, + STATE(5150), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5996), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(4208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(574), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38905,7 +64112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -38922,71 +64129,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16055] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [14830] = 26, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(439), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(1134), 1, + ACTIONS(181), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(185), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1182), 1, + ACTIONS(2199), 1, + anon_sym_, + STATE(568), 1, + aux_sym_long_expression_repeat1, + STATE(1064), 1, sym_primary_expression, - STATE(1220), 1, + STATE(1432), 1, sym_expression, - STATE(1227), 1, - sym_call, - STATE(1315), 1, + STATE(1901), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(1938), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -38994,7 +64203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39011,71 +64220,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16170] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [14947] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - STATE(1354), 1, + 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(1414), 1, + STATE(4082), 1, sym_call, - STATE(1427), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(2553), 1, + STATE(4910), 1, sym_expression, - STATE(3261), 1, + 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(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39083,7 +64296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39100,343 +64313,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16285] = 4, - STATE(545), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1325), 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(1323), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [16356] = 4, - STATE(339), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1329), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1327), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [16427] = 4, - STATE(832), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1325), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1323), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [16498] = 8, - ACTIONS(1301), 1, - anon_sym_and, - ACTIONS(1303), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1291), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1299), 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(1289), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [16577] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [15068] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(794), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1573), 1, + ACTIONS(2193), 1, + anon_sym_, + STATE(576), 1, + aux_sym_long_expression_repeat1, + STATE(779), 1, sym_primary_expression, - STATE(1585), 1, - sym_expression, - STATE(1801), 1, + STATE(1533), 1, + sym_call, + STATE(1614), 1, sym_selector_expression, - STATE(2470), 1, + STATE(3292), 1, + sym_expression, + STATE(5082), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(2191), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(2073), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39444,7 +64387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39461,71 +64404,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16692] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [15185] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(794), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1556), 1, - sym_expression, - STATE(1561), 1, - sym_call, - STATE(1573), 1, + ACTIONS(2193), 1, + anon_sym_, + STATE(576), 1, + aux_sym_long_expression_repeat1, + STATE(779), 1, sym_primary_expression, - STATE(1801), 1, + STATE(1533), 1, + sym_call, + STATE(1614), 1, sym_selector_expression, - STATE(2470), 1, + STATE(3292), 1, + sym_expression, + STATE(5082), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(2191), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(2073), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39533,7 +64478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39550,138 +64495,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16807] = 4, - STATE(341), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1329), 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(1327), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [16878] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [15302] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(848), 1, anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1562), 1, - sym_expression, - STATE(1573), 1, + ACTIONS(2163), 1, + anon_sym_, + STATE(697), 1, + aux_sym_long_expression_repeat1, + STATE(2399), 1, sym_primary_expression, - STATE(1801), 1, + STATE(2407), 1, + sym_call, + STATE(2505), 1, sym_selector_expression, - STATE(2470), 1, + STATE(3848), 1, + sym_expression, + STATE(5000), 1, sym_dotted_name, - STATE(3130), 1, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(2743), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39689,7 +64569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39706,71 +64586,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16993] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [15419] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(716), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(894), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - STATE(1495), 1, - sym_call, - STATE(1549), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2209), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1598), 1, - sym_expression, - STATE(1753), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2463), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(4297), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39778,7 +64662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39795,71 +64679,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17108] = 26, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [15540] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1106), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(1273), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(442), 1, - sym_expression, - STATE(630), 1, + ACTIONS(1299), 1, + sym_identifier, + ACTIONS(2211), 1, + anon_sym_, + STATE(623), 1, + aux_sym_long_expression_repeat1, + STATE(3657), 1, sym_primary_expression, - STATE(881), 1, + STATE(3663), 1, sym_call, - STATE(908), 1, + STATE(3781), 1, sym_selector_expression, - STATE(2499), 1, + STATE(4776), 1, + sym_expression, + STATE(5123), 1, sym_dotted_name, - STATE(3024), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(676), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(3939), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -39867,7 +64753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -39884,207 +64770,257 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17223] = 6, - ACTIONS(1293), 1, - anon_sym_and, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1333), 25, - sym__dedent, + [15657] = 26, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(111), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(1978), 1, anon_sym_LPAREN, + ACTIONS(1980), 1, anon_sym_LBRACK, + ACTIONS(1982), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(1988), 1, anon_sym_DQUOTE, + ACTIONS(2213), 1, + anon_sym_, + STATE(588), 1, + aux_sym_long_expression_repeat1, + STATE(1080), 1, + sym_primary_expression, + STATE(1486), 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(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, + sym_binary_operator, + sym_subscript, + STATE(1969), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2053), 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(1331), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2151), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [17298] = 4, - ACTIONS(1339), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1337), 25, - sym__dedent, + 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, + [15774] = 26, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(504), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1267), 1, anon_sym_LPAREN, + ACTIONS(1269), 1, anon_sym_LBRACK, + ACTIONS(1271), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1273), 1, + anon_sym_not, + ACTIONS(1275), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_identifier, + ACTIONS(2211), 1, + anon_sym_, + STATE(623), 1, + aux_sym_long_expression_repeat1, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(4776), 1, + sym_expression, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(672), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(3547), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(676), 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(1335), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3939), 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, - [17369] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + 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, + [15891] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(536), 1, + anon_sym_LBRACK, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, + 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(1325), 1, + anon_sym_STAR, + STATE(3716), 1, sym_primary_expression, - STATE(1495), 1, + STATE(3719), 1, sym_call, - STATE(1642), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2550), 1, + STATE(4979), 1, sym_expression, - STATE(2552), 1, + STATE(5075), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5742), 1, + sym_list_splat, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40092,7 +65028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40109,71 +65045,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17484] = 26, - ACTIONS(9), 1, + [16012] = 26, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(121), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1980), 1, + anon_sym_LBRACK, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, + ACTIONS(2215), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(1080), 1, sym_primary_expression, STATE(1495), 1, + sym_expression, + STATE(1659), 1, sym_call, - STATE(1642), 1, + STATE(1897), 1, sym_selector_expression, - STATE(2328), 1, - sym_expression, - STATE(2552), 1, + STATE(5071), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, + sym_binary_operator, + sym_subscript, STATE(1969), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(2053), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40181,7 +65119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40198,71 +65136,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17599] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [16129] = 26, + ACTIONS(560), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(562), 1, + anon_sym_LBRACK, + ACTIONS(564), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(570), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, + ACTIONS(576), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym_primary_expression, - STATE(1495), 1, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2217), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3807), 1, sym_call, - STATE(1600), 1, - sym_expression, - STATE(1642), 1, + STATE(3825), 1, + sym_primary_expression, + STATE(4004), 1, sym_selector_expression, - STATE(2552), 1, + STATE(4882), 1, + sym_expression, + STATE(5150), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5996), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(4239), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(4208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(574), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40270,7 +65210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40287,71 +65227,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17714] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [16246] = 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, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(976), 1, - sym_identifier, - STATE(1789), 1, + ACTIONS(2213), 1, + anon_sym_, + STATE(588), 1, + aux_sym_long_expression_repeat1, + STATE(1080), 1, sym_primary_expression, - STATE(1791), 1, + STATE(1486), 1, + sym_expression, + STATE(1659), 1, sym_call, - STATE(1889), 1, + STATE(1897), 1, sym_selector_expression, - STATE(2379), 1, - sym_expression, - STATE(2529), 1, + STATE(5071), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(2053), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40359,7 +65301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40376,71 +65318,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17829] = 26, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [16363] = 26, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1106), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, + anon_sym_not, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(472), 1, + ACTIONS(2219), 1, + anon_sym_, + STATE(593), 1, + aux_sym_long_expression_repeat1, + STATE(3874), 1, + sym_call, + STATE(4033), 1, sym_expression, - STATE(630), 1, + STATE(4043), 1, sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(908), 1, + STATE(4224), 1, sym_selector_expression, - STATE(2499), 1, + STATE(4990), 1, sym_dotted_name, - STATE(3024), 1, + STATE(6288), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4382), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(4390), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(4339), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(4396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40448,7 +65392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40465,71 +65409,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17944] = 26, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1231), 1, + [16480] = 26, + ACTIONS(560), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(562), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(570), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(630), 1, - sym_primary_expression, - STATE(881), 1, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2203), 1, + anon_sym_, + STATE(589), 1, + aux_sym_long_expression_repeat1, + STATE(3807), 1, sym_call, - STATE(908), 1, + STATE(3825), 1, + sym_primary_expression, + STATE(4004), 1, sym_selector_expression, - STATE(1161), 1, + STATE(4902), 1, sym_expression, - STATE(2499), 1, + STATE(5150), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5996), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(4239), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(4208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(574), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40537,7 +65483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40554,71 +65500,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18059] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [16597] = 26, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1146), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(670), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(349), 1, + ACTIONS(2221), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3874), 1, + sym_call, + STATE(4014), 1, sym_expression, - STATE(498), 1, + STATE(4043), 1, sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(884), 1, + STATE(4224), 1, sym_selector_expression, - STATE(2504), 1, + STATE(4990), 1, sym_dotted_name, - STATE(3024), 1, + STATE(6288), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4382), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(4390), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(4339), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(4396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -40626,7 +65574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -40643,376 +65591,441 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18174] = 22, - ACTIONS(1347), 1, + [16714] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1349), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, + 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(1359), 1, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1365), 1, - anon_sym_PIPE, - ACTIONS(1367), 1, - anon_sym_AMP, - ACTIONS(1369), 1, - anon_sym_CARET, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2223), 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, - ACTIONS(1353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1361), 2, + 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, - ACTIONS(1363), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1351), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1345), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1341), 20, - anon_sym_import, - anon_sym_assert, - 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_rule, - anon_sym_check, + STATE(4299), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [18281] = 22, - ACTIONS(1347), 1, + 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, + [16835] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1349), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, + 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(1359), 1, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(1365), 1, - anon_sym_PIPE, - ACTIONS(1367), 1, - anon_sym_AMP, - ACTIONS(1369), 1, - anon_sym_CARET, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2225), 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, - ACTIONS(1353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1361), 2, + 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, - ACTIONS(1363), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1351), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1381), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1379), 20, - anon_sym_import, - anon_sym_assert, - 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_rule, - anon_sym_check, + STATE(4299), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [18388] = 5, - ACTIONS(1387), 1, - anon_sym_PIPE, - STATE(360), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1385), 25, - sym__dedent, + 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, + [16956] = 26, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(55), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, + anon_sym_not, + ACTIONS(2039), 1, anon_sym_LPAREN, + ACTIONS(2041), 1, anon_sym_LBRACK, + ACTIONS(2043), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2049), 1, + anon_sym_DQUOTE, + ACTIONS(2219), 1, + anon_sym_, + STATE(593), 1, + aux_sym_long_expression_repeat1, + STATE(3874), 1, + sym_call, + STATE(4033), 1, + sym_expression, + STATE(4043), 1, + sym_primary_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 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_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_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1383), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4339), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [18461] = 4, - ACTIONS(1394), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1392), 25, - sym__dedent, + 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, + [17073] = 26, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(55), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, + anon_sym_not, + ACTIONS(2039), 1, anon_sym_LPAREN, + ACTIONS(2041), 1, anon_sym_LBRACK, + ACTIONS(2043), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2049), 1, + anon_sym_DQUOTE, + ACTIONS(2219), 1, + anon_sym_, + STATE(593), 1, + aux_sym_long_expression_repeat1, + STATE(3874), 1, + sym_call, + STATE(4033), 1, + sym_expression, + STATE(4043), 1, + sym_primary_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 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_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_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(1390), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4339), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [18532] = 26, - ACTIONS(9), 1, + 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, + [17190] = 26, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(378), 1, + anon_sym_not, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(2133), 1, + anon_sym_LBRACK, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, + ACTIONS(2227), 1, + anon_sym_, + STATE(599), 1, + aux_sym_long_expression_repeat1, + STATE(2351), 1, sym_primary_expression, - STATE(1495), 1, + STATE(2376), 1, + sym_expression, + STATE(2407), 1, sym_call, - STATE(1642), 1, + STATE(2660), 1, sym_selector_expression, - STATE(2521), 1, - sym_expression, - STATE(2552), 1, + STATE(5040), 1, sym_dotted_name, - STATE(3186), 1, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2458), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(2161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(2691), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41020,7 +66033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41037,71 +66050,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18647] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [17307] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(553), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(555), 1, + ACTIONS(378), 1, + anon_sym_not, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + ACTIONS(2229), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2351), 1, sym_primary_expression, - STATE(1414), 1, + STATE(2379), 1, + sym_expression, + STATE(2407), 1, sym_call, - STATE(1427), 1, + STATE(2660), 1, sym_selector_expression, - STATE(2507), 1, + STATE(5040), 1, sym_dotted_name, - STATE(2520), 1, - sym_expression, - STATE(3261), 1, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2691), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41109,7 +66124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41126,71 +66141,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18762] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [17424] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(378), 1, anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1554), 1, + 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(1561), 1, + STATE(2407), 1, sym_call, - STATE(1573), 1, - sym_primary_expression, - STATE(1801), 1, + STATE(2660), 1, sym_selector_expression, - STATE(2470), 1, + STATE(5040), 1, sym_dotted_name, - STATE(3130), 1, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(2691), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41198,7 +66215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41215,71 +66232,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18877] = 26, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [17541] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1106), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(378), 1, + anon_sym_not, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(630), 1, + ACTIONS(2227), 1, + anon_sym_, + STATE(599), 1, + aux_sym_long_expression_repeat1, + STATE(2351), 1, sym_primary_expression, - STATE(881), 1, + STATE(2376), 1, + sym_expression, + STATE(2407), 1, sym_call, - STATE(908), 1, + STATE(2660), 1, sym_selector_expression, - STATE(1164), 1, - sym_expression, - STATE(2499), 1, + STATE(5040), 1, sym_dotted_name, - STATE(3024), 1, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2458), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(2161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(2691), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41287,7 +66306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41304,602 +66323,164 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18992] = 13, - ACTIONS(1347), 1, + [17658] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(1892), 1, anon_sym_LPAREN, - ACTIONS(1349), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(1896), 1, + anon_sym_LBRACE, + ACTIONS(1902), 1, + anon_sym_DQUOTE, + ACTIONS(2231), 1, + anon_sym_, + STATE(603), 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, + sym_selector_expression, + STATE(5026), 1, + sym_dotted_name, + STATE(6132), 1, + sym_quant_op, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1361), 2, + ACTIONS(752), 2, + anon_sym_DOT, + 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, - ACTIONS(1363), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 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(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [19081] = 14, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1361), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1363), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 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(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [19172] = 15, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1369), 1, - anon_sym_CARET, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1361), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1363), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 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(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4249), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 6, sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [19265] = 16, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1367), 1, - anon_sym_AMP, - ACTIONS(1369), 1, - anon_sym_CARET, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1361), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1363), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 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(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19360] = 12, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1363), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 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(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + 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, + [17775] = 26, + ACTIONS(710), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [19447] = 10, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1398), 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(1396), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + ACTIONS(718), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(722), 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, - [19530] = 10, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1398), 21, - sym__dedent, + ACTIONS(732), 1, 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(1396), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [19613] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + ACTIONS(1892), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(1896), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(1902), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(2233), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3872), 1, sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2349), 1, + STATE(3954), 1, sym_expression, - STATE(2464), 1, + STATE(4082), 1, + sym_call, + STATE(4242), 1, + sym_selector_expression, + STATE(5026), 1, sym_dotted_name, - STATE(3198), 1, + STATE(6132), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + ACTIONS(752), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(1898), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4249), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41907,7 +66488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -41924,71 +66505,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19728] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [17892] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(722), 1, anon_sym_not, - ACTIONS(475), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + ACTIONS(1892), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1896), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1902), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + ACTIONS(2231), 1, + anon_sym_, + STATE(603), 1, + aux_sym_long_expression_repeat1, + STATE(3872), 1, sym_primary_expression, - STATE(1414), 1, + STATE(3964), 1, + sym_expression, + STATE(4082), 1, sym_call, - STATE(1427), 1, + STATE(4242), 1, sym_selector_expression, - STATE(2413), 1, - sym_expression, - STATE(2507), 1, + STATE(5026), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6132), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(752), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(1898), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(4249), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -41996,7 +66579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42013,71 +66596,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19843] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [18009] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(1892), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1894), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1896), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1902), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(976), 1, - sym_identifier, - STATE(1789), 1, + ACTIONS(2231), 1, + anon_sym_, + STATE(603), 1, + aux_sym_long_expression_repeat1, + STATE(3872), 1, sym_primary_expression, - STATE(1791), 1, + STATE(3964), 1, + sym_expression, + STATE(4082), 1, sym_call, - STATE(1889), 1, + STATE(4242), 1, sym_selector_expression, - STATE(2529), 1, + STATE(5026), 1, sym_dotted_name, - STATE(2558), 1, - sym_expression, - STATE(3226), 1, + STATE(6132), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(752), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1898), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(4249), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(728), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42085,7 +66670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42102,71 +66687,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19958] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [18126] = 26, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(552), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1054), 1, - sym_identifier, - ACTIONS(1056), 1, - anon_sym_not, - STATE(1587), 1, + ACTIONS(2235), 1, + anon_sym_, + STATE(607), 1, + aux_sym_long_expression_repeat1, + STATE(3574), 1, + sym_expression, + STATE(3717), 1, sym_primary_expression, - STATE(1661), 1, + STATE(3719), 1, sym_call, - STATE(1786), 1, + STATE(3835), 1, sym_selector_expression, - STATE(2341), 1, - sym_expression, - STATE(2531), 1, + STATE(5121), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6118), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(2151), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(4019), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(548), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42174,7 +66761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42191,71 +66778,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20073] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [18243] = 26, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, - sym_identifier, - STATE(358), 1, + 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(881), 1, + STATE(3719), 1, sym_call, - STATE(885), 1, + STATE(3835), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5121), 1, sym_dotted_name, - STATE(2582), 1, - sym_expression, - STATE(3024), 1, + STATE(6118), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, + ACTIONS(624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + ACTIONS(2151), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(4019), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(548), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42263,7 +66852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42280,71 +66869,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20188] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [18360] = 26, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, - sym_identifier, - STATE(359), 1, + ACTIONS(2235), 1, + anon_sym_, + STATE(607), 1, + aux_sym_long_expression_repeat1, + STATE(3574), 1, + sym_expression, + STATE(3717), 1, sym_primary_expression, - STATE(881), 1, + STATE(3719), 1, sym_call, - STATE(885), 1, + STATE(3835), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5121), 1, sym_dotted_name, - STATE(2586), 1, - sym_expression, - STATE(3024), 1, + STATE(6118), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, + ACTIONS(624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + ACTIONS(2151), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(4019), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(548), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42352,7 +66943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42369,156 +66960,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20303] = 22, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1359), 1, - anon_sym_not, - ACTIONS(1365), 1, - anon_sym_PIPE, - ACTIONS(1367), 1, - anon_sym_AMP, - ACTIONS(1369), 1, - anon_sym_CARET, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1361), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1363), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1351), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1406), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1404), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - sym_integer, + [18477] = 26, + ACTIONS(530), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [20410] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(552), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(2145), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2147), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(1988), 1, + ACTIONS(2235), 1, + anon_sym_, + STATE(607), 1, + aux_sym_long_expression_repeat1, + STATE(3574), 1, + sym_expression, + STATE(3717), 1, sym_primary_expression, - STATE(2537), 1, + STATE(3719), 1, + sym_call, + STATE(3835), 1, + sym_selector_expression, + STATE(5121), 1, sym_dotted_name, - STATE(2576), 1, - sym_expression, - STATE(3261), 1, + STATE(6118), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(2151), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4019), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(548), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42526,7 +67034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42543,71 +67051,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20525] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1042), 1, + [18594] = 26, + ACTIONS(384), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(398), 1, anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(1167), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(1169), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(1175), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1573), 1, - sym_primary_expression, - STATE(1613), 1, + ACTIONS(2239), 1, + anon_sym_, + STATE(611), 1, + aux_sym_long_expression_repeat1, + STATE(3431), 1, sym_expression, - STATE(1801), 1, + STATE(3432), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3558), 1, sym_selector_expression, - STATE(2470), 1, + STATE(5136), 1, sym_dotted_name, - STATE(3130), 1, + STATE(6057), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + ACTIONS(474), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(478), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(3592), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(404), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42615,7 +67125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42632,138 +67142,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20640] = 4, - ACTIONS(1414), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1412), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1410), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [18711] = 26, + ACTIONS(384), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [20711] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + ACTIONS(394), 1, anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1134), 1, - sym_identifier, - ACTIONS(1136), 1, + ACTIONS(398), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1167), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1169), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1175), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1182), 1, - sym_primary_expression, - STATE(1195), 1, + ACTIONS(2241), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3425), 1, sym_expression, - STATE(1227), 1, + STATE(3432), 1, + sym_primary_expression, + STATE(3460), 1, sym_call, - STATE(1315), 1, + STATE(3558), 1, sym_selector_expression, - STATE(2452), 1, + STATE(5136), 1, sym_dotted_name, - STATE(3180), 1, + STATE(6057), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(474), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(478), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(3592), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(404), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42771,7 +67216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42788,71 +67233,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20826] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [18828] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, + ACTIONS(1391), 1, sym_identifier, - STATE(366), 1, - sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(885), 1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2245), 1, + anon_sym_, + STATE(646), 1, + aux_sym_long_expression_repeat1, + STATE(3446), 1, sym_selector_expression, - STATE(2537), 1, + STATE(3663), 1, + sym_call, + STATE(4370), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(2586), 1, + STATE(5208), 1, sym_expression, - STATE(3024), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + ACTIONS(2243), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42860,7 +67307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42877,71 +67324,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [20941] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [18945] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(394), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(398), 1, + anon_sym_not, + ACTIONS(408), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1167), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1169), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1175), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(1987), 1, + ACTIONS(2239), 1, + anon_sym_, + STATE(611), 1, + aux_sym_long_expression_repeat1, + STATE(3431), 1, + sym_expression, + STATE(3432), 1, sym_primary_expression, - STATE(2537), 1, + STATE(3460), 1, + sym_call, + STATE(3558), 1, + sym_selector_expression, + STATE(5136), 1, sym_dotted_name, - STATE(2576), 1, - sym_expression, - STATE(3261), 1, + STATE(6057), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(474), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(478), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3592), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(404), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42949,7 +67398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -42966,71 +67415,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21056] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [19062] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(394), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(398), 1, + anon_sym_not, + ACTIONS(408), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1167), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1169), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1175), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(1986), 1, + ACTIONS(2239), 1, + anon_sym_, + STATE(611), 1, + aux_sym_long_expression_repeat1, + STATE(3431), 1, + sym_expression, + STATE(3432), 1, sym_primary_expression, - STATE(2537), 1, + STATE(3460), 1, + sym_call, + STATE(3558), 1, + sym_selector_expression, + STATE(5136), 1, sym_dotted_name, - STATE(2576), 1, - sym_expression, - STATE(3261), 1, + STATE(6057), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(474), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(478), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3592), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(404), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43038,7 +67489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43055,71 +67506,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21171] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [19179] = 26, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(504), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(1985), 1, + ACTIONS(2247), 1, + anon_sym_, + STATE(617), 1, + aux_sym_long_expression_repeat1, + STATE(3597), 1, + sym_expression, + STATE(3608), 1, sym_primary_expression, - STATE(2537), 1, + STATE(3663), 1, + sym_call, + STATE(3832), 1, + sym_selector_expression, + STATE(5122), 1, sym_dotted_name, - STATE(2576), 1, - sym_expression, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(676), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43127,7 +67580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43144,71 +67597,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21286] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [19296] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, + ACTIONS(1391), 1, sym_identifier, - ACTIONS(930), 1, + ACTIONS(1395), 1, anon_sym_not, - STATE(1198), 1, + ACTIONS(2245), 1, + anon_sym_, + STATE(646), 1, + aux_sym_long_expression_repeat1, + STATE(3446), 1, sym_selector_expression, - STATE(1414), 1, + STATE(3663), 1, sym_call, - STATE(1984), 1, + STATE(4370), 1, sym_primary_expression, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2576), 1, + STATE(5208), 1, sym_expression, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(2243), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43216,7 +67671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43233,71 +67688,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21401] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [19413] = 26, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(504), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(1983), 1, + ACTIONS(2249), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3608), 1, sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2576), 1, + STATE(3613), 1, sym_expression, - STATE(3261), 1, + 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, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(676), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43305,7 +67762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43322,71 +67779,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21516] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [19530] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(928), 1, + 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(930), 1, + ACTIONS(1309), 1, anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(1982), 1, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2576), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(4810), 1, sym_expression, - STATE(3261), 1, + STATE(5075), 1, + sym_dotted_name, + STATE(5546), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43394,7 +67855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43411,71 +67872,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21631] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [19651] = 26, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(504), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(1981), 1, + ACTIONS(2247), 1, + anon_sym_, + STATE(617), 1, + aux_sym_long_expression_repeat1, + STATE(3597), 1, + sym_expression, + STATE(3608), 1, sym_primary_expression, - STATE(2537), 1, + STATE(3663), 1, + sym_call, + STATE(3832), 1, + sym_selector_expression, + STATE(5122), 1, sym_dotted_name, - STATE(2576), 1, - sym_expression, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(676), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43483,7 +67946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43500,71 +67963,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21746] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [19768] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(553), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(555), 1, + ACTIONS(1345), 1, + anon_sym_not, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, + ACTIONS(2253), 1, + anon_sym_, + STATE(625), 1, + aux_sym_long_expression_repeat1, + STATE(2365), 1, sym_call, - STATE(1427), 1, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, sym_selector_expression, - STATE(2414), 1, + STATE(4262), 1, sym_expression, - STATE(2507), 1, + STATE(5058), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2251), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3246), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43572,7 +68037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43589,71 +68054,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21861] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [19885] = 26, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, - sym_identifier, - STATE(367), 1, + ACTIONS(2213), 1, + anon_sym_, + STATE(588), 1, + aux_sym_long_expression_repeat1, + STATE(1080), 1, sym_primary_expression, - STATE(881), 1, + STATE(1486), 1, + sym_expression, + STATE(1659), 1, sym_call, - STATE(885), 1, + STATE(1897), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5071), 1, sym_dotted_name, - STATE(2586), 1, - sym_expression, - STATE(3024), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + ACTIONS(2053), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43661,7 +68128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43678,71 +68145,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [21976] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [20002] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(702), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_not, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(1416), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, + ACTIONS(2255), 1, + anon_sym_, + STATE(630), 1, + aux_sym_long_expression_repeat1, + STATE(2365), 1, sym_call, - STATE(1980), 1, + STATE(2978), 1, + sym_expression, + STATE(3010), 1, sym_primary_expression, - STATE(2537), 1, + STATE(3224), 1, + sym_selector_expression, + STATE(5095), 1, sym_dotted_name, - STATE(2576), 1, - sym_expression, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2251), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3233), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43750,7 +68219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43767,71 +68236,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22091] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [20119] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(1273), 1, + anon_sym_not, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, + ACTIONS(1299), 1, sym_identifier, - STATE(368), 1, + ACTIONS(2257), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3657), 1, sym_primary_expression, - STATE(881), 1, + STATE(3663), 1, sym_call, - STATE(885), 1, + STATE(3781), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2586), 1, + STATE(4775), 1, sym_expression, - STATE(3024), 1, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + ACTIONS(676), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(3939), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43839,7 +68310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43856,71 +68327,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22206] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [20236] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, + 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, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(1980), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2259), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2576), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(4910), 1, sym_expression, - STATE(3261), 1, + 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(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43928,7 +68403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -43945,139 +68420,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22321] = 5, - ACTIONS(1303), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 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(1289), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + [20357] = 26, + ACTIONS(420), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(1341), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [22394] = 26, - ACTIONS(930), 1, + ACTIONS(1345), 1, anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1231), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, - sym_identifier, - STATE(369), 1, - sym_primary_expression, - STATE(881), 1, + ACTIONS(2261), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2365), 1, sym_call, - STATE(885), 1, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2586), 1, + STATE(4277), 1, sym_expression, - STATE(3024), 1, + STATE(5058), 1, + sym_dotted_name, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2251), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(3246), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44085,7 +68494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44102,71 +68511,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22509] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1231), 1, + [20474] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1402), 1, + 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, - STATE(370), 1, + ACTIONS(2263), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(881), 1, + STATE(4082), 1, sym_call, - STATE(885), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2586), 1, + STATE(4910), 1, sym_expression, - STATE(3024), 1, + 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(940), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44174,7 +68587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44191,71 +68604,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22624] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [20595] = 26, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, - sym_identifier, - STATE(371), 1, + ACTIONS(2247), 1, + anon_sym_, + STATE(617), 1, + aux_sym_long_expression_repeat1, + STATE(3597), 1, + sym_expression, + STATE(3608), 1, sym_primary_expression, - STATE(881), 1, + STATE(3663), 1, sym_call, - STATE(885), 1, + STATE(3832), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5122), 1, sym_dotted_name, - STATE(2586), 1, - sym_expression, - STATE(3024), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + ACTIONS(676), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(4009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44263,7 +68678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44280,71 +68695,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22739] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [20712] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(1341), 1, + sym_identifier, + ACTIONS(1345), 1, + anon_sym_not, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, - sym_identifier, - STATE(372), 1, - sym_primary_expression, - STATE(881), 1, + ACTIONS(2253), 1, + anon_sym_, + STATE(625), 1, + aux_sym_long_expression_repeat1, + STATE(2365), 1, sym_call, - STATE(885), 1, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2586), 1, + STATE(4262), 1, sym_expression, - STATE(3024), 1, + STATE(5058), 1, + sym_dotted_name, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2251), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(3246), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44352,7 +68769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44369,71 +68786,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22854] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [20829] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(1146), 1, + ACTIONS(1341), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(1345), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(328), 1, - sym_expression, - STATE(498), 1, - sym_primary_expression, - STATE(881), 1, + ACTIONS(2253), 1, + anon_sym_, + STATE(625), 1, + aux_sym_long_expression_repeat1, + STATE(2365), 1, sym_call, - STATE(884), 1, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, sym_selector_expression, - STATE(2504), 1, + STATE(4262), 1, + sym_expression, + STATE(5058), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(2251), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(3246), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44441,7 +68860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44458,71 +68877,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [22969] = 26, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [20946] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1106), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(702), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_not, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(630), 1, - sym_primary_expression, - STATE(881), 1, + ACTIONS(2265), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2365), 1, sym_call, - STATE(908), 1, - sym_selector_expression, - STATE(1162), 1, + STATE(2992), 1, sym_expression, - STATE(2499), 1, + STATE(3010), 1, + sym_primary_expression, + STATE(3224), 1, + sym_selector_expression, + STATE(5095), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(2251), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(3233), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44530,7 +68951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44547,71 +68968,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23084] = 26, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [21063] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1106), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(702), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_not, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, + ACTIONS(2255), 1, + anon_sym_, STATE(630), 1, - sym_primary_expression, - STATE(881), 1, + aux_sym_long_expression_repeat1, + STATE(2365), 1, sym_call, - STATE(908), 1, - sym_selector_expression, - STATE(1165), 1, + STATE(2978), 1, sym_expression, - STATE(2499), 1, + STATE(3010), 1, + sym_primary_expression, + STATE(3224), 1, + sym_selector_expression, + STATE(5095), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(2251), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(3233), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44619,7 +69042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44636,71 +69059,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23199] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [21180] = 26, + ACTIONS(554), 1, + sym_identifier, + ACTIONS(560), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(562), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(568), 1, + anon_sym_not, + ACTIONS(570), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(2267), 1, + anon_sym_, + STATE(633), 1, + aux_sym_long_expression_repeat1, + STATE(3783), 1, + sym_expression, + STATE(3807), 1, sym_call, - STATE(1229), 1, + STATE(3841), 1, sym_primary_expression, - STATE(1236), 1, + STATE(4000), 1, sym_selector_expression, - STATE(2337), 1, + STATE(5108), 1, sym_dotted_name, - STATE(2497), 1, - sym_expression, - STATE(3180), 1, + STATE(5996), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(4229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(574), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44708,7 +69133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44725,71 +69150,164 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23314] = 26, - ACTIONS(938), 1, + [21297] = 26, + ACTIONS(554), 1, + sym_identifier, + ACTIONS(560), 1, + anon_sym_LPAREN, + ACTIONS(562), 1, + anon_sym_LBRACK, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(566), 1, + anon_sym_LBRACE, + ACTIONS(568), 1, + anon_sym_not, + ACTIONS(570), 1, + anon_sym_DQUOTE, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(2269), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3797), 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(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(734), 2, anon_sym_DOT, - ACTIONS(944), 1, + 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, + 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(4229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 6, + sym_integer, + sym_float, + 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, + [21414] = 26, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(702), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(706), 1, anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, + ACTIONS(2255), 1, + anon_sym_, + STATE(630), 1, + aux_sym_long_expression_repeat1, + STATE(2365), 1, sym_call, - STATE(1573), 1, - sym_primary_expression, - STATE(1629), 1, + STATE(2978), 1, sym_expression, - STATE(1801), 1, + STATE(3010), 1, + sym_primary_expression, + STATE(3224), 1, sym_selector_expression, - STATE(2470), 1, + STATE(5095), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2251), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(3233), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44797,7 +69315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44814,71 +69332,146 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23429] = 26, - ACTIONS(409), 1, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1588), 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(1586), 31, + anon_sym_import, anon_sym_DOT, - ACTIONS(419), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(427), 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(439), 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, + [21612] = 26, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(179), 1, sym_string_start, - ACTIONS(972), 1, + ACTIONS(806), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(812), 1, + anon_sym_not, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2273), 1, + anon_sym_, + STATE(645), 1, + aux_sym_long_expression_repeat1, + STATE(1464), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2035), 1, sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2459), 1, + STATE(2072), 1, + sym_call, + STATE(3302), 1, sym_expression, - STATE(3180), 1, + STATE(5083), 1, + sym_dotted_name, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2271), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2210), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44886,7 +69479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44903,71 +69496,164 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23544] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [21729] = 26, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(169), 1, + anon_sym_not, + ACTIONS(179), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(2275), 1, + anon_sym_, + STATE(638), 1, + aux_sym_long_expression_repeat1, + STATE(1125), 1, + sym_primary_expression, + STATE(1504), 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, + 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, + 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(2154), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 6, + sym_integer, sym_float, - ACTIONS(1402), 1, + 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, + [21846] = 26, + ACTIONS(155), 1, sym_identifier, - ACTIONS(1420), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(169), 1, anon_sym_not, - STATE(379), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2167), 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(881), 1, - sym_call, - STATE(885), 1, + STATE(1508), 1, + sym_expression, + STATE(1878), 1, sym_selector_expression, - STATE(2537), 1, + STATE(2072), 1, + sym_call, + STATE(5096), 1, sym_dotted_name, - STATE(2586), 1, - sym_expression, - STATE(3024), 1, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2271), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(2154), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44975,7 +69661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -44992,71 +69678,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23659] = 26, - ACTIONS(9), 1, + [21963] = 26, + ACTIONS(554), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(560), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(562), 1, + anon_sym_LBRACK, + ACTIONS(564), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(568), 1, anon_sym_not, - ACTIONS(49), 1, + ACTIONS(570), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, + ACTIONS(576), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym_primary_expression, - STATE(1495), 1, - sym_call, - STATE(1614), 1, + ACTIONS(2267), 1, + anon_sym_, + STATE(633), 1, + aux_sym_long_expression_repeat1, + STATE(3783), 1, sym_expression, - STATE(1642), 1, + STATE(3807), 1, + sym_call, + STATE(3841), 1, + sym_primary_expression, + STATE(4000), 1, sym_selector_expression, - STATE(2552), 1, + STATE(5108), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5996), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(4239), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(4229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(574), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45064,7 +69752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45081,71 +69769,164 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23774] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [22080] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(854), 1, + anon_sym_not, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2139), 1, + anon_sym_, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, - sym_identifier, - STATE(379), 1, + STATE(649), 1, + aux_sym_long_expression_repeat1, + STATE(2313), 1, sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(885), 1, + STATE(2328), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2586), 1, + STATE(2407), 1, + sym_call, + STATE(3677), 1, sym_expression, - STATE(3024), 1, + STATE(5009), 1, + sym_dotted_name, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, + 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, - STATE(1272), 2, + ACTIONS(2137), 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(2543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 6, + sym_integer, + sym_float, + 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, + [22197] = 26, + ACTIONS(554), 1, + sym_identifier, + ACTIONS(560), 1, + anon_sym_LPAREN, + ACTIONS(562), 1, + anon_sym_LBRACK, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(566), 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, + anon_sym_, + STATE(633), 1, + aux_sym_long_expression_repeat1, + STATE(3783), 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(5), 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, - ACTIONS(1239), 3, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(572), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(4229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(574), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45153,7 +69934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45170,16 +69951,21 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [23889] = 5, - ACTIONS(1303), 1, - anon_sym_PLUS, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 25, + ACTIONS(1588), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -45189,6 +69975,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, @@ -45205,13 +69992,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1424), 32, + ACTIONS(1586), 31, 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, @@ -45223,7 +70010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -45238,71 +70024,73 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23962] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [22395] = 26, + ACTIONS(129), 1, + sym_identifier, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(427), 1, + ACTIONS(143), 1, anon_sym_not, - ACTIONS(439), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2279), 1, + anon_sym_, + STATE(650), 1, + aux_sym_long_expression_repeat1, + STATE(1879), 1, sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2407), 1, + STATE(2027), 1, + sym_call, + STATE(2045), 1, sym_expression, - STATE(2454), 1, + STATE(2204), 1, + sym_selector_expression, + STATE(5104), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(2121), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45310,7 +70098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45327,71 +70115,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24077] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [22512] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(553), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(555), 1, + ACTIONS(848), 1, + anon_sym_not, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + ACTIONS(2163), 1, + anon_sym_, + STATE(697), 1, + aux_sym_long_expression_repeat1, + STATE(2399), 1, sym_primary_expression, - STATE(1414), 1, + STATE(2407), 1, sym_call, - STATE(1427), 1, + STATE(2505), 1, sym_selector_expression, - STATE(2283), 1, + STATE(3848), 1, sym_expression, - STATE(2507), 1, + STATE(5000), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2743), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45399,7 +70189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45416,71 +70206,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24192] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [22629] = 26, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(972), 1, + ACTIONS(806), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(812), 1, + anon_sym_not, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2281), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(1464), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2035), 1, sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2514), 1, + STATE(2072), 1, + sym_call, + STATE(3306), 1, sym_expression, - STATE(3180), 1, + STATE(5083), 1, + sym_dotted_name, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2271), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2210), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45488,7 +70280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45505,71 +70297,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24307] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [22746] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(1395), 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, sym_call, - STATE(1229), 1, + STATE(4370), 1, sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2382), 1, - sym_expression, - STATE(2454), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5197), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(2243), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45577,7 +70371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45594,71 +70388,146 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24422] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + [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, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(571), 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(930), 1, + 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, - ACTIONS(1426), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1410), 1, - sym_primary_expression, - STATE(1414), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [22944] = 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, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_LBRACK, + ACTIONS(1169), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + anon_sym_DQUOTE, + ACTIONS(2285), 1, + anon_sym_, + STATE(712), 1, + aux_sym_long_expression_repeat1, + STATE(3460), 1, sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4769), 1, sym_expression, - STATE(3261), 1, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(474), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(478), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(404), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45666,7 +70535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45683,71 +70552,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24537] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [23061] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(1259), 1, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(854), 1, + anon_sym_not, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2287), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2313), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2328), 1, sym_selector_expression, - STATE(2343), 1, - sym_dotted_name, - STATE(2551), 1, + STATE(2407), 1, + sym_call, + STATE(3673), 1, sym_expression, - STATE(3180), 1, + STATE(5009), 1, + sym_dotted_name, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2137), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45755,7 +70626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45772,71 +70643,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24652] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [23178] = 26, + ACTIONS(129), 1, + sym_identifier, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(143), 1, + anon_sym_not, + ACTIONS(153), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, - anon_sym_not, - STATE(1335), 1, + ACTIONS(2289), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(1879), 1, sym_primary_expression, - STATE(1341), 1, - sym_expression, - STATE(1414), 1, + STATE(2027), 1, sym_call, - STATE(1475), 1, + STATE(2052), 1, + sym_expression, + STATE(2204), 1, sym_selector_expression, - STATE(2532), 1, + STATE(5104), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(2121), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(2236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45844,7 +70717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45861,71 +70734,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24767] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [23295] = 26, + ACTIONS(129), 1, + sym_identifier, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(143), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - STATE(1218), 1, + ACTIONS(2279), 1, + anon_sym_, + STATE(650), 1, + aux_sym_long_expression_repeat1, + STATE(1879), 1, sym_primary_expression, - STATE(1227), 1, + STATE(2027), 1, sym_call, - STATE(1311), 1, + STATE(2045), 1, + sym_expression, + STATE(2204), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5104), 1, sym_dotted_name, - STATE(2568), 1, - sym_expression, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1355), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + STATE(2168), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2121), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(2236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45933,7 +70808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -45950,71 +70825,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24882] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [23412] = 26, + ACTIONS(129), 1, + sym_identifier, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(143), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(1932), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1934), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1936), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1942), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - STATE(1217), 1, + ACTIONS(2279), 1, + anon_sym_, + STATE(650), 1, + aux_sym_long_expression_repeat1, + STATE(1879), 1, sym_primary_expression, - STATE(1227), 1, + STATE(2027), 1, sym_call, - STATE(1311), 1, + STATE(2045), 1, + sym_expression, + STATE(2204), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5104), 1, sym_dotted_name, - STATE(2568), 1, - sym_expression, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1355), 2, + ACTIONS(213), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + STATE(2168), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2121), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(2236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46022,7 +70899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46039,71 +70916,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24997] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1259), 1, + [23529] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(1305), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - STATE(1215), 1, + ACTIONS(1309), 1, + anon_sym_not, + ACTIONS(1704), 1, + anon_sym_COLON, + STATE(3716), 1, sym_primary_expression, - STATE(1227), 1, + STATE(3719), 1, sym_call, - STATE(1311), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2568), 1, + STATE(4782), 1, sym_expression, - STATE(3180), 1, + STATE(5075), 1, + sym_dotted_name, + STATE(5499), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1355), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46111,7 +70992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46128,71 +71009,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25112] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1134), 1, + [23650] = 26, + ACTIONS(155), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(169), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1182), 1, + ACTIONS(2275), 1, + anon_sym_, + STATE(638), 1, + aux_sym_long_expression_repeat1, + STATE(1125), 1, sym_primary_expression, - STATE(1186), 1, + STATE(1504), 1, sym_expression, - STATE(1227), 1, - sym_call, - STATE(1315), 1, + STATE(1878), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2072), 1, + sym_call, + STATE(5096), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2271), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(2154), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46200,7 +71083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46217,71 +71100,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25227] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [23767] = 26, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(1259), 1, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_not, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2273), 1, + anon_sym_, + STATE(645), 1, + aux_sym_long_expression_repeat1, + STATE(1464), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2035), 1, sym_selector_expression, - STATE(2360), 1, - sym_dotted_name, - STATE(2498), 1, + STATE(2072), 1, + sym_call, + STATE(3302), 1, sym_expression, - STATE(3180), 1, + STATE(5083), 1, + sym_dotted_name, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2271), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2210), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46289,7 +71174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46306,139 +71191,164 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25342] = 5, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 25, - sym__dedent, + [23884] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(111), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1978), 1, anon_sym_LPAREN, + ACTIONS(1980), 1, anon_sym_LBRACK, + ACTIONS(1982), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(1988), 1, anon_sym_DQUOTE, + ACTIONS(2291), 1, + anon_sym_, + STATE(657), 1, + aux_sym_long_expression_repeat1, + STATE(726), 1, + sym_primary_expression, + STATE(732), 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(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, + sym_binary_operator, + sym_subscript, + STATE(1969), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1984), 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(1428), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2056), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(107), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [25415] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + 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, + [24001] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - STATE(1214), 1, + ACTIONS(2293), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(726), 1, sym_primary_expression, - STATE(1227), 1, - sym_call, - STATE(1311), 1, + STATE(735), 1, + sym_expression, + STATE(1144), 1, sym_selector_expression, - STATE(2537), 1, + STATE(1659), 1, + sym_call, + STATE(5099), 1, sym_dotted_name, - STATE(2568), 1, - sym_expression, - STATE(3180), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1355), 2, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + STATE(1969), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(2056), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46446,7 +71356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46463,71 +71373,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25530] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [24118] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - STATE(1213), 1, + ACTIONS(2291), 1, + anon_sym_, + STATE(657), 1, + aux_sym_long_expression_repeat1, + STATE(726), 1, sym_primary_expression, - STATE(1227), 1, - sym_call, - STATE(1311), 1, + STATE(732), 1, + sym_expression, + STATE(1144), 1, sym_selector_expression, - STATE(2537), 1, + STATE(1659), 1, + sym_call, + STATE(5099), 1, sym_dotted_name, - STATE(2568), 1, - sym_expression, - STATE(3180), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1355), 2, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + STATE(1969), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(2056), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46535,7 +71447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46552,71 +71464,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25645] = 26, - ACTIONS(936), 1, + [24235] = 26, + ACTIONS(87), 1, sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(948), 1, + ACTIONS(101), 1, anon_sym_not, - ACTIONS(958), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(1978), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(1980), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(1982), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1551), 1, + ACTIONS(2291), 1, + anon_sym_, + STATE(657), 1, + aux_sym_long_expression_repeat1, + STATE(726), 1, sym_primary_expression, - STATE(1561), 1, - sym_call, - STATE(1842), 1, - sym_selector_expression, - STATE(2353), 1, + STATE(732), 1, sym_expression, - STATE(2527), 1, + STATE(1144), 1, + sym_selector_expression, + STATE(1659), 1, + sym_call, + STATE(5099), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5982), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + ACTIONS(193), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(1984), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(2056), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(107), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46624,7 +71538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46641,71 +71555,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25760] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [24352] = 26, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(690), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1920), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1922), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1928), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - STATE(1212), 1, + ACTIONS(2295), 1, + anon_sym_, + STATE(661), 1, + aux_sym_long_expression_repeat1, + STATE(2766), 1, sym_primary_expression, - STATE(1227), 1, + STATE(2872), 1, + sym_expression, + STATE(2993), 1, sym_call, - STATE(1311), 1, + STATE(3042), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5059), 1, sym_dotted_name, - STATE(2568), 1, - sym_expression, - STATE(3180), 1, + STATE(5976), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - STATE(1355), 2, + STATE(3223), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + ACTIONS(1924), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(3144), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(696), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46713,7 +71629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46730,71 +71646,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25875] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [24469] = 26, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(690), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1920), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1922), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1928), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - STATE(1211), 1, + ACTIONS(2297), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2766), 1, sym_primary_expression, - STATE(1227), 1, + STATE(2881), 1, + sym_expression, + STATE(2993), 1, sym_call, - STATE(1311), 1, + STATE(3042), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5059), 1, sym_dotted_name, - STATE(2568), 1, - sym_expression, - STATE(3180), 1, + STATE(5976), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - STATE(1355), 2, + STATE(3223), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + ACTIONS(1924), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(3144), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(696), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46802,7 +71720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -46819,207 +71737,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25990] = 5, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 25, - sym__dedent, + [24586] = 26, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(504), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1267), 1, anon_sym_LPAREN, + ACTIONS(1269), 1, anon_sym_LBRACK, + ACTIONS(1271), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(1275), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1289), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [26063] = 5, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 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(1424), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_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(1391), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [26136] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, - anon_sym_LPAREN, - ACTIONS(519), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, + ACTIONS(2245), 1, + anon_sym_, + STATE(646), 1, + aux_sym_long_expression_repeat1, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, sym_call, - STATE(1456), 1, - sym_expression, - STATE(1488), 1, + STATE(4370), 1, sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2464), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5208), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(2243), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47027,7 +71811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47044,71 +71828,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26251] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [24703] = 26, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(690), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1920), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1922), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1928), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1305), 1, - sym_identifier, - STATE(1207), 1, + ACTIONS(2295), 1, + anon_sym_, + STATE(661), 1, + aux_sym_long_expression_repeat1, + STATE(2766), 1, sym_primary_expression, - STATE(1227), 1, + STATE(2872), 1, + sym_expression, + STATE(2993), 1, sym_call, - STATE(1311), 1, + STATE(3042), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5059), 1, sym_dotted_name, - STATE(2568), 1, - sym_expression, - STATE(3180), 1, + STATE(5976), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - STATE(1355), 2, + STATE(3223), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + ACTIONS(1924), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(3144), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(696), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47116,7 +71902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47133,71 +71919,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26366] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [24820] = 26, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(690), 1, + anon_sym_not, + ACTIONS(700), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1918), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1920), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1922), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1928), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2035), 1, + ACTIONS(2295), 1, + anon_sym_, + STATE(661), 1, + aux_sym_long_expression_repeat1, + STATE(2766), 1, sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2576), 1, + STATE(2872), 1, sym_expression, - STATE(3261), 1, + 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, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(736), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1924), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3144), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(696), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47205,7 +71993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47222,71 +72010,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26481] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1259), 1, + [24937] = 27, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(1305), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - STATE(1206), 1, + ACTIONS(1309), 1, + anon_sym_not, + STATE(3716), 1, sym_primary_expression, - STATE(1227), 1, + STATE(3719), 1, sym_call, - STATE(1311), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2584), 1, + STATE(4971), 1, sym_expression, - STATE(3180), 1, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1355), 2, + ACTIONS(1714), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47294,7 +72085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47311,138 +72102,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26596] = 4, - STATE(560), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1434), 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(1432), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [25056] = 26, + ACTIONS(628), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [26667] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1120), 1, - sym_identifier, - ACTIONS(1122), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(1954), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, + ACTIONS(2299), 1, + anon_sym_, + STATE(667), 1, + aux_sym_long_expression_repeat1, + STATE(2793), 1, sym_primary_expression, - STATE(1030), 1, + STATE(2906), 1, sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(3027), 1, sym_call, - STATE(2493), 1, + STATE(3040), 1, + sym_selector_expression, + STATE(5079), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5965), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(740), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(1950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(3169), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(648), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47450,7 +72176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47467,71 +72193,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26782] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [25173] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(475), 1, + ACTIONS(652), 1, sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1954), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + ACTIONS(2301), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2793), 1, sym_primary_expression, - STATE(1414), 1, + STATE(2914), 1, + sym_expression, + STATE(3027), 1, sym_call, - STATE(1427), 1, + STATE(3040), 1, sym_selector_expression, - STATE(2507), 1, + STATE(5079), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3261), 1, + STATE(5965), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(740), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(1950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3169), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(648), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47539,7 +72267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47556,71 +72284,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26897] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1120), 1, + [25290] = 26, + ACTIONS(628), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(1954), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, + ACTIONS(2299), 1, + anon_sym_, + STATE(667), 1, + aux_sym_long_expression_repeat1, + STATE(2793), 1, sym_primary_expression, - STATE(1034), 1, + STATE(2906), 1, sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(3027), 1, sym_call, - STATE(2493), 1, + STATE(3040), 1, + sym_selector_expression, + STATE(5079), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5965), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(740), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(1950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(3169), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(648), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47628,7 +72358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47645,71 +72375,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27012] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1134), 1, - sym_identifier, - ACTIONS(1136), 1, - anon_sym_not, - ACTIONS(1259), 1, + [25407] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(730), 1, sym_float, - STATE(1182), 1, + 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, sym_primary_expression, - STATE(1187), 1, - sym_expression, - STATE(1227), 1, + STATE(4082), 1, sym_call, - STATE(1315), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2452), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47717,7 +72451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47734,71 +72468,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27127] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [25528] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(642), 1, anon_sym_not, - ACTIONS(475), 1, + ACTIONS(652), 1, sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1946), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1948), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1954), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + ACTIONS(2299), 1, + anon_sym_, + STATE(667), 1, + aux_sym_long_expression_repeat1, + STATE(2793), 1, sym_primary_expression, - STATE(1414), 1, + STATE(2906), 1, + sym_expression, + STATE(3027), 1, sym_call, - STATE(1427), 1, + STATE(3040), 1, sym_selector_expression, - STATE(2480), 1, - sym_expression, - STATE(2507), 1, + STATE(5079), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5965), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(740), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(1950), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3169), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(648), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47806,7 +72542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47823,138 +72559,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27242] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1438), 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(1436), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [25645] = 26, + ACTIONS(448), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [27313] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + ACTIONS(458), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(472), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1960), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1970), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1414), 1, - sym_call, - STATE(1992), 1, - sym_primary_expression, - STATE(1993), 1, + ACTIONS(2305), 1, + anon_sym_, + STATE(672), 1, + aux_sym_long_expression_repeat1, + STATE(2627), 1, sym_expression, - STATE(2059), 1, + STATE(2672), 1, + sym_primary_expression, + STATE(2680), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2707), 1, + sym_call, + STATE(5072), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5958), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(606), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(1966), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(2839), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(468), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47962,7 +72633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -47979,71 +72650,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27428] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1120), 1, + [25762] = 26, + ACTIONS(448), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(462), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(1960), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(1970), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, - sym_primary_expression, - STATE(1045), 1, + ACTIONS(2307), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2624), 1, sym_expression, - STATE(1070), 1, + STATE(2672), 1, + sym_primary_expression, + STATE(2680), 1, sym_selector_expression, - STATE(1082), 1, + STATE(2707), 1, sym_call, - STATE(2493), 1, + STATE(5072), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5958), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(606), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(1966), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(2839), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(468), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48051,7 +72724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48068,71 +72741,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27543] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [25879] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(458), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(472), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1960), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1970), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1414), 1, - sym_call, - STATE(1992), 1, - sym_primary_expression, - STATE(2000), 1, + ACTIONS(2305), 1, + anon_sym_, + STATE(672), 1, + aux_sym_long_expression_repeat1, + STATE(2627), 1, sym_expression, - STATE(2059), 1, + STATE(2672), 1, + sym_primary_expression, + STATE(2680), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2707), 1, + sym_call, + STATE(5072), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5958), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(606), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(1966), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(2839), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(468), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48140,7 +72815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48157,71 +72832,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27658] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [25996] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(458), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(472), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1960), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1964), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1970), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1414), 1, - sym_call, - STATE(1992), 1, - sym_primary_expression, - STATE(2001), 1, + ACTIONS(2305), 1, + anon_sym_, + STATE(672), 1, + aux_sym_long_expression_repeat1, + STATE(2627), 1, sym_expression, - STATE(2059), 1, + STATE(2672), 1, + sym_primary_expression, + STATE(2680), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2707), 1, + sym_call, + STATE(5072), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5958), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(606), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(1966), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(2839), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(468), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48229,7 +72906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48246,138 +72923,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27773] = 4, - STATE(560), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1442), 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(1440), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + [26113] = 26, + ACTIONS(490), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [27844] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(553), 1, + ACTIONS(612), 1, sym_identifier, - ACTIONS(555), 1, + ACTIONS(618), 1, + anon_sym_not, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + ACTIONS(2309), 1, + anon_sym_, + STATE(676), 1, + aux_sym_long_expression_repeat1, + STATE(3729), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(3739), 1, + sym_expression, + STATE(4027), 1, sym_selector_expression, - STATE(2507), 1, + STATE(4111), 1, + sym_call, + STATE(5069), 1, sym_dotted_name, - STATE(2525), 1, - sym_expression, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(620), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(4142), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48385,7 +72997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48402,71 +73014,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27959] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [26230] = 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, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(2311), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3729), 1, sym_primary_expression, - STATE(1601), 1, + STATE(3735), 1, + sym_expression, + STATE(4027), 1, sym_selector_expression, - STATE(2464), 1, + STATE(4111), 1, + sym_call, + STATE(5069), 1, sym_dotted_name, - STATE(2516), 1, - sym_expression, - STATE(3198), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(620), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4142), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48474,7 +73088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48491,71 +73105,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28074] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [26347] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(618), 1, + anon_sym_not, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1414), 1, - sym_call, - STATE(1992), 1, + ACTIONS(2309), 1, + anon_sym_, + STATE(676), 1, + aux_sym_long_expression_repeat1, + STATE(3729), 1, sym_primary_expression, - STATE(1994), 1, + STATE(3739), 1, sym_expression, - STATE(2059), 1, + STATE(4027), 1, sym_selector_expression, - STATE(2494), 1, + STATE(4111), 1, + sym_call, + STATE(5069), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(620), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(4142), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48563,7 +73179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48580,71 +73196,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28189] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [26464] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(972), 1, + ACTIONS(612), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(618), 1, + anon_sym_not, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2309), 1, + anon_sym_, + STATE(676), 1, + aux_sym_long_expression_repeat1, + STATE(3729), 1, sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2275), 1, + STATE(3739), 1, sym_expression, - STATE(2454), 1, + STATE(4027), 1, + sym_selector_expression, + STATE(4111), 1, + sym_call, + STATE(5069), 1, sym_dotted_name, - STATE(3180), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(620), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(4142), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48652,7 +73270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48669,71 +73287,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28304] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [26581] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(424), 1, + anon_sym_not, + ACTIONS(434), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1176), 1, - sym_expression, - STATE(1414), 1, - sym_call, - STATE(1992), 1, + ACTIONS(2313), 1, + anon_sym_, + STATE(680), 1, + aux_sym_long_expression_repeat1, + STATE(2314), 1, sym_primary_expression, - STATE(2059), 1, + STATE(2315), 1, + sym_expression, + STATE(2338), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2365), 1, + sym_call, + STATE(5063), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(446), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(2536), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48741,7 +73361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48758,71 +73378,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28419] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1120), 1, + [26698] = 26, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(424), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, + ACTIONS(2315), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2314), 1, sym_primary_expression, - STATE(1052), 1, + STATE(2321), 1, sym_expression, - STATE(1070), 1, + STATE(2338), 1, sym_selector_expression, - STATE(1082), 1, + STATE(2365), 1, sym_call, - STATE(2493), 1, + STATE(5063), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(446), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(2536), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48830,7 +73452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48847,71 +73469,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28534] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [26815] = 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, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(2313), 1, + anon_sym_, + STATE(680), 1, + aux_sym_long_expression_repeat1, + STATE(2314), 1, sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2404), 1, + STATE(2315), 1, sym_expression, - STATE(2464), 1, + STATE(2338), 1, + sym_selector_expression, + STATE(2365), 1, + sym_call, + STATE(5063), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(446), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2536), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48919,7 +73543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -48936,71 +73560,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28649] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1134), 1, + [26932] = 26, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(424), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(2069), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2071), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2073), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2077), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1182), 1, + ACTIONS(2313), 1, + anon_sym_, + STATE(680), 1, + aux_sym_long_expression_repeat1, + STATE(2314), 1, sym_primary_expression, - STATE(1192), 1, + STATE(2315), 1, sym_expression, - STATE(1227), 1, - sym_call, - STATE(1315), 1, + STATE(2338), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2365), 1, + sym_call, + STATE(5063), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5953), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(446), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(2536), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(430), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49008,7 +73634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49025,71 +73651,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28764] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + [27049] = 26, + ACTIONS(506), 1, + sym_identifier, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, + ACTIONS(518), 1, + anon_sym_not, + ACTIONS(528), 1, sym_string_start, - ACTIONS(180), 1, + ACTIONS(2085), 1, + anon_sym_LPAREN, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(894), 1, - anon_sym_not, - STATE(1495), 1, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(2093), 1, + anon_sym_DQUOTE, + ACTIONS(2317), 1, + anon_sym_, + STATE(685), 1, + aux_sym_long_expression_repeat1, + STATE(2396), 1, sym_call, - STATE(1500), 1, + STATE(2613), 1, sym_expression, - STATE(1549), 1, + STATE(2669), 1, sym_primary_expression, - STATE(1753), 1, + STATE(2681), 1, sym_selector_expression, - STATE(2463), 1, + STATE(5056), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5947), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + ACTIONS(600), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(604), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(2849), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(524), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49097,7 +73725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49114,71 +73742,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28879] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [27166] = 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, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1912), 1, + anon_sym_, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(976), 1, - sym_identifier, - STATE(1789), 1, + STATE(693), 1, + aux_sym_long_expression_repeat1, + STATE(1127), 1, sym_primary_expression, - STATE(1791), 1, + STATE(1513), 1, + sym_expression, + STATE(1533), 1, sym_call, - STATE(1889), 1, + STATE(2098), 1, sym_selector_expression, - STATE(2505), 1, - sym_expression, - STATE(2529), 1, + STATE(5107), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(1910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2155), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49186,7 +73816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49203,71 +73833,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28994] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1146), 1, + [27283] = 26, + ACTIONS(506), 1, sym_identifier, - ACTIONS(1148), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(518), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(2085), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2093), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(424), 1, + ACTIONS(2319), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2396), 1, + sym_call, + STATE(2609), 1, sym_expression, - STATE(498), 1, + STATE(2669), 1, sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(884), 1, + STATE(2681), 1, sym_selector_expression, - STATE(2504), 1, + STATE(5056), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5947), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(600), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(604), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(2849), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(524), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49275,7 +73907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49292,71 +73924,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29109] = 26, - ACTIONS(1084), 1, + [27400] = 26, + ACTIONS(506), 1, sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(1096), 1, + ACTIONS(518), 1, anon_sym_not, - ACTIONS(1106), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(2085), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2093), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(630), 1, - sym_primary_expression, - STATE(881), 1, + ACTIONS(2317), 1, + anon_sym_, + STATE(685), 1, + aux_sym_long_expression_repeat1, + STATE(2396), 1, sym_call, - STATE(908), 1, - sym_selector_expression, - STATE(1154), 1, + STATE(2613), 1, sym_expression, - STATE(2499), 1, + STATE(2669), 1, + sym_primary_expression, + STATE(2681), 1, + sym_selector_expression, + STATE(5056), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5947), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + ACTIONS(600), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(604), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(2849), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(524), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49364,7 +73998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49381,71 +74015,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29224] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [27517] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(2039), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2049), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1168), 1, - sym_expression, - STATE(1414), 1, - sym_call, - STATE(1992), 1, + ACTIONS(2321), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3862), 1, sym_primary_expression, - STATE(2059), 1, + STATE(3874), 1, + sym_call, + STATE(4139), 1, sym_selector_expression, - STATE(2494), 1, + STATE(4917), 1, + sym_expression, + STATE(5116), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6288), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4382), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2045), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(4378), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49453,7 +74089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49470,71 +74106,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29339] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [27634] = 26, + ACTIONS(506), 1, + sym_identifier, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(518), 1, + anon_sym_not, + ACTIONS(528), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(2085), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2093), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, + ACTIONS(2317), 1, + anon_sym_, + STATE(685), 1, + aux_sym_long_expression_repeat1, + STATE(2396), 1, sym_call, - STATE(2034), 1, + STATE(2613), 1, + sym_expression, + STATE(2669), 1, sym_primary_expression, - STATE(2537), 1, + STATE(2681), 1, + sym_selector_expression, + STATE(5056), 1, sym_dotted_name, - STATE(2569), 1, - sym_expression, - STATE(3261), 1, + STATE(5947), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(600), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(604), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2849), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(524), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49542,7 +74180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49559,71 +74197,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29454] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [27751] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, + ACTIONS(2323), 1, + anon_sym_, + STATE(694), 1, + aux_sym_long_expression_repeat1, + STATE(3663), 1, sym_call, - STATE(2034), 1, + STATE(4283), 1, sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2572), 1, + STATE(4344), 1, sym_expression, - STATE(3261), 1, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 1, + sym_dotted_name, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(2243), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4416), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49631,7 +74271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49648,71 +74288,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29569] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + [27868] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1120), 1, + ACTIONS(744), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(748), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, + ACTIONS(2323), 1, + anon_sym_, + STATE(694), 1, + aux_sym_long_expression_repeat1, + STATE(3663), 1, + sym_call, + STATE(4283), 1, sym_primary_expression, - STATE(1032), 1, + STATE(4344), 1, sym_expression, - STATE(1070), 1, + STATE(4414), 1, sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2493), 1, + STATE(5041), 1, sym_dotted_name, - STATE(3063), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(2243), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(4416), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49720,7 +74362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49737,71 +74379,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29684] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + [27985] = 26, + ACTIONS(578), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(582), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(590), 1, + anon_sym_not, + ACTIONS(592), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(2325), 1, + anon_sym_, + STATE(695), 1, + aux_sym_long_expression_repeat1, + STATE(2678), 1, sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2276), 1, + STATE(2684), 1, sym_expression, - STATE(2454), 1, + STATE(2837), 1, + sym_selector_expression, + STATE(2870), 1, + sym_call, + STATE(5051), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5934), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(610), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(594), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(596), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49809,7 +74453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49826,71 +74470,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29799] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [28102] = 26, + ACTIONS(394), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(408), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, + anon_sym_not, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1167), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1169), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1175), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1414), 1, + ACTIONS(2285), 1, + anon_sym_, + STATE(712), 1, + aux_sym_long_expression_repeat1, + STATE(3460), 1, sym_call, - STATE(1992), 1, + STATE(3464), 1, sym_primary_expression, - STATE(2048), 1, - sym_expression, - STATE(2059), 1, + STATE(3508), 1, sym_selector_expression, - STATE(2494), 1, + STATE(4769), 1, + sym_expression, + STATE(5018), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6057), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(474), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(478), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(404), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49898,7 +74544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -49915,71 +74561,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29914] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [28219] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_not, - STATE(1511), 1, - sym_expression, - STATE(1544), 1, + ACTIONS(2327), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(1127), 1, sym_primary_expression, - STATE(1660), 1, - sym_selector_expression, - STATE(1661), 1, + STATE(1533), 1, sym_call, - STATE(2489), 1, + STATE(1535), 1, + sym_expression, + STATE(2098), 1, + sym_selector_expression, + STATE(5107), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(1910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2155), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49987,7 +74635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50004,71 +74652,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30029] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [28336] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1414), 1, + ACTIONS(2329), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3663), 1, sym_call, - STATE(1992), 1, + STATE(4283), 1, sym_primary_expression, - STATE(1999), 1, + STATE(4353), 1, sym_expression, - STATE(2059), 1, + STATE(4414), 1, sym_selector_expression, - STATE(2494), 1, + STATE(5041), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(2243), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(4416), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50076,7 +74726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50093,138 +74743,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30144] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 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(1444), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [28453] = 26, + ACTIONS(578), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [30215] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(582), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(586), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(590), 1, anon_sym_not, - ACTIONS(790), 1, + ACTIONS(592), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, + ACTIONS(598), 1, sym_string_start, - ACTIONS(976), 1, - sym_identifier, - STATE(1789), 1, + ACTIONS(2331), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2676), 1, + sym_expression, + STATE(2678), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(2837), 1, sym_selector_expression, - STATE(2529), 1, + STATE(2870), 1, + sym_call, + STATE(5051), 1, sym_dotted_name, - STATE(2535), 1, - sym_expression, - STATE(3226), 1, + STATE(5934), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + ACTIONS(610), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(594), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(596), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50232,7 +74817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50249,71 +74834,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30330] = 26, - ACTIONS(1010), 1, + [28570] = 26, + ACTIONS(578), 1, sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + ACTIONS(582), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(590), 1, + anon_sym_not, + ACTIONS(592), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1045), 1, - sym_expression, - STATE(1057), 1, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(2325), 1, + anon_sym_, + STATE(695), 1, + aux_sym_long_expression_repeat1, + STATE(2678), 1, sym_primary_expression, - STATE(1066), 1, + STATE(2684), 1, + sym_expression, + STATE(2837), 1, sym_selector_expression, - STATE(1082), 1, + STATE(2870), 1, sym_call, - STATE(2457), 1, + STATE(5051), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5934), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(610), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(594), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(3009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(596), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50321,7 +74908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50338,71 +74925,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30445] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [28687] = 26, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(439), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(1134), 1, + ACTIONS(842), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(848), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(2131), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2135), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2141), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1182), 1, + ACTIONS(2333), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(2399), 1, sym_primary_expression, - STATE(1190), 1, - sym_expression, - STATE(1227), 1, + STATE(2407), 1, sym_call, - STATE(1315), 1, + STATE(2505), 1, sym_selector_expression, - STATE(2452), 1, + STATE(3829), 1, + sym_expression, + STATE(5000), 1, sym_dotted_name, - STATE(3180), 1, + STATE(6187), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(438), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2161), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(2743), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(271), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50410,7 +74999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50427,138 +75016,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30560] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 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(1444), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + [28804] = 26, + ACTIONS(490), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [30631] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, + ACTIONS(1273), 1, anon_sym_not, - ACTIONS(539), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, + ACTIONS(1299), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(2211), 1, + anon_sym_, + STATE(623), 1, + aux_sym_long_expression_repeat1, + STATE(3657), 1, sym_primary_expression, - STATE(1601), 1, + STATE(3663), 1, + sym_call, + STATE(3781), 1, sym_selector_expression, - STATE(2464), 1, - sym_dotted_name, - STATE(2560), 1, + STATE(4776), 1, sym_expression, - STATE(3198), 1, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(676), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(3939), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50566,7 +75090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50583,71 +75107,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30746] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1042), 1, + [28921] = 26, + ACTIONS(578), 1, sym_identifier, - ACTIONS(1044), 1, - anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(582), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(588), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(590), 1, + anon_sym_not, + ACTIONS(592), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1573), 1, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(2325), 1, + anon_sym_, + STATE(695), 1, + aux_sym_long_expression_repeat1, + STATE(2678), 1, sym_primary_expression, - STATE(1625), 1, + STATE(2684), 1, sym_expression, - STATE(1801), 1, + STATE(2837), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2870), 1, + sym_call, + STATE(5051), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5934), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + ACTIONS(610), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(594), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(3009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(596), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50655,7 +75181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50672,71 +75198,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30861] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [29038] = 26, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(972), 1, + ACTIONS(744), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(748), 1, + anon_sym_not, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1271), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1187), 1, - sym_expression, - STATE(1227), 1, + ACTIONS(2323), 1, + anon_sym_, + STATE(694), 1, + aux_sym_long_expression_repeat1, + STATE(3663), 1, sym_call, - STATE(1229), 1, + STATE(4283), 1, sym_primary_expression, - STATE(1236), 1, + STATE(4344), 1, + sym_expression, + STATE(4414), 1, sym_selector_expression, - STATE(2454), 1, + STATE(5041), 1, sym_dotted_name, - STATE(3180), 1, + STATE(6002), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(672), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(2243), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(4416), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(500), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50744,7 +75272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50761,71 +75289,146 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30976] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, + [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, + 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(1586), 31, + anon_sym_import, anon_sym_DOT, - ACTIONS(910), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(914), 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(924), 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, + [29236] = 26, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(408), 1, sym_string_start, - ACTIONS(1245), 1, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, + anon_sym_not, + ACTIONS(1165), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(1167), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(1169), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(1175), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, - sym_float, - STATE(568), 1, + ACTIONS(2285), 1, + anon_sym_, + STATE(712), 1, + aux_sym_long_expression_repeat1, + STATE(3460), 1, + sym_call, + STATE(3464), 1, sym_primary_expression, - STATE(672), 1, - sym_expression, - STATE(879), 1, + STATE(3508), 1, sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2479), 1, + STATE(4769), 1, + sym_expression, + STATE(5018), 1, sym_dotted_name, - STATE(3096), 1, + STATE(6057), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + ACTIONS(474), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3679), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3699), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(478), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(404), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50833,7 +75436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50850,71 +75453,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31091] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [29353] = 26, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(806), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(812), 1, anon_sym_not, - ACTIONS(1275), 1, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1557), 1, - sym_expression, - STATE(1561), 1, - sym_call, - STATE(1573), 1, + ACTIONS(2273), 1, + anon_sym_, + STATE(645), 1, + aux_sym_long_expression_repeat1, + STATE(1464), 1, sym_primary_expression, - STATE(1801), 1, + STATE(2035), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2072), 1, + sym_call, + STATE(3302), 1, + sym_expression, + STATE(5083), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2271), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(2210), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50922,7 +75527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -50939,71 +75544,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31206] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + [29470] = 26, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(1309), 1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(205), 1, + anon_sym_not, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1057), 1, + ACTIONS(2335), 1, + anon_sym_, + STATE(705), 1, + aux_sym_long_expression_repeat1, + STATE(1900), 1, sym_primary_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(2072), 1, sym_call, - STATE(2051), 1, + STATE(2093), 1, sym_expression, - STATE(2457), 1, + STATE(2102), 1, + sym_selector_expression, + STATE(5047), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2171), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(2240), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51011,7 +75618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51028,71 +75635,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31321] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [29587] = 26, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(439), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(1134), 1, + ACTIONS(201), 1, sym_identifier, - ACTIONS(1136), 1, + ACTIONS(205), 1, anon_sym_not, - ACTIONS(1259), 1, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1182), 1, + ACTIONS(2337), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(1900), 1, sym_primary_expression, - STATE(1183), 1, - sym_expression, - STATE(1227), 1, + STATE(2072), 1, sym_call, - STATE(1315), 1, + STATE(2090), 1, + sym_expression, + STATE(2102), 1, sym_selector_expression, - STATE(2452), 1, + STATE(5047), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2171), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(2240), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51100,7 +75709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51117,71 +75726,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31436] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [29704] = 26, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(555), 1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(205), 1, + anon_sym_not, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1054), 1, - sym_identifier, - ACTIONS(1056), 1, - anon_sym_not, - STATE(1587), 1, + ACTIONS(2335), 1, + anon_sym_, + STATE(705), 1, + aux_sym_long_expression_repeat1, + STATE(1900), 1, sym_primary_expression, - STATE(1661), 1, + STATE(2072), 1, sym_call, - STATE(1786), 1, - sym_selector_expression, - STATE(2375), 1, + STATE(2093), 1, sym_expression, - STATE(2531), 1, + STATE(2102), 1, + sym_selector_expression, + STATE(5047), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2171), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(2240), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51189,7 +75800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51206,71 +75817,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31551] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, + [29821] = 26, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(1106), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(1231), 1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(205), 1, + anon_sym_not, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(2167), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(2169), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(2175), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - ACTIONS(1402), 1, - sym_identifier, - STATE(615), 1, + ACTIONS(2335), 1, + anon_sym_, + STATE(705), 1, + aux_sym_long_expression_repeat1, + STATE(1900), 1, sym_primary_expression, - STATE(881), 1, + STATE(2072), 1, sym_call, - STATE(885), 1, + STATE(2093), 1, + sym_expression, + STATE(2102), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5047), 1, sym_dotted_name, - STATE(2586), 1, - sym_expression, - STATE(3024), 1, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(940), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1239), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2171), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1010), 4, + STATE(2240), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51278,7 +75891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51295,71 +75908,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31666] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [29938] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, + 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, - STATE(1168), 1, - sym_expression, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2339), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(2537), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51367,7 +75984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51384,71 +76001,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31781] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [30059] = 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, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, - anon_sym_not, - STATE(1432), 1, + ACTIONS(2341), 1, + anon_sym_, + STATE(710), 1, + aux_sym_long_expression_repeat1, + STATE(724), 1, sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1469), 1, + STATE(741), 1, sym_expression, - STATE(1579), 1, + STATE(1129), 1, sym_selector_expression, - STATE(2455), 1, + STATE(1533), 1, + sym_call, + STATE(5044), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(2191), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(2086), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51456,7 +76075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51473,71 +76092,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31896] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [30176] = 26, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(475), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + ACTIONS(2343), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(724), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(744), 1, + sym_expression, + STATE(1129), 1, sym_selector_expression, - STATE(2507), 1, + STATE(1533), 1, + sym_call, + STATE(5044), 1, sym_dotted_name, - STATE(2538), 1, - sym_expression, - STATE(3261), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(2191), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2086), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51545,7 +76166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51562,71 +76183,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32011] = 26, - ACTIONS(9), 1, + [30293] = 26, + ACTIONS(57), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(180), 1, + ACTIONS(1904), 1, + anon_sym_LPAREN, + ACTIONS(1906), 1, anon_sym_LBRACK, - STATE(1494), 1, + ACTIONS(1908), 1, + anon_sym_LBRACE, + ACTIONS(1914), 1, + anon_sym_DQUOTE, + ACTIONS(2341), 1, + anon_sym_, + STATE(710), 1, + aux_sym_long_expression_repeat1, + STATE(724), 1, sym_primary_expression, - STATE(1495), 1, - sym_call, - STATE(1642), 1, - sym_selector_expression, - STATE(2344), 1, + STATE(741), 1, sym_expression, - STATE(2552), 1, + STATE(1129), 1, + sym_selector_expression, + STATE(1533), 1, + sym_call, + STATE(5044), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2067), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2191), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(2086), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51634,7 +76257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51651,71 +76274,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32126] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, - anon_sym_LPAREN, - ACTIONS(519), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, + [30410] = 26, + ACTIONS(394), 1, anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, + ACTIONS(408), 1, sym_string_start, - ACTIONS(1062), 1, + ACTIONS(1105), 1, sym_identifier, - ACTIONS(1070), 1, + ACTIONS(1109), 1, anon_sym_not, - STATE(1432), 1, - sym_primary_expression, - STATE(1435), 1, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_LBRACK, + ACTIONS(1169), 1, + anon_sym_LBRACE, + ACTIONS(1175), 1, + anon_sym_DQUOTE, + ACTIONS(2345), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(3460), 1, sym_call, - STATE(1487), 1, - sym_expression, - STATE(1579), 1, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, sym_selector_expression, - STATE(2455), 1, + STATE(4761), 1, + sym_expression, + STATE(5018), 1, sym_dotted_name, - STATE(3198), 1, + STATE(6057), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + ACTIONS(474), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(478), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(404), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51723,7 +76348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51740,138 +76365,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32241] = 4, - STATE(560), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1337), 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(1335), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [30527] = 26, + ACTIONS(57), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [32312] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(427), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(439), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1259), 1, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2341), 1, + anon_sym_, + STATE(710), 1, + aux_sym_long_expression_repeat1, + STATE(724), 1, sym_primary_expression, - STATE(1236), 1, + STATE(741), 1, + sym_expression, + STATE(1129), 1, sym_selector_expression, - STATE(2364), 1, + STATE(1533), 1, + sym_call, + STATE(5044), 1, sym_dotted_name, - STATE(2533), 1, - sym_expression, - STATE(3180), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(2191), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2086), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51879,7 +76439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51896,71 +76456,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32427] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [30644] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1259), 1, + ACTIONS(756), 1, + sym_identifier, + ACTIONS(762), 1, + anon_sym_not, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2347), 1, + anon_sym_, + STATE(718), 1, + aux_sym_long_expression_repeat1, + STATE(1365), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1533), 1, + sym_call, + STATE(2065), 1, sym_selector_expression, - STATE(2351), 1, - sym_dotted_name, - STATE(2523), 1, + STATE(3318), 1, sym_expression, - STATE(3180), 1, + STATE(5089), 1, + sym_dotted_name, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(1910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2209), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51968,7 +76530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -51985,71 +76547,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32542] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + [30761] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1309), 1, + ACTIONS(756), 1, + sym_identifier, + ACTIONS(762), 1, + anon_sym_not, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1057), 1, + ACTIONS(2347), 1, + anon_sym_, + STATE(718), 1, + aux_sym_long_expression_repeat1, + STATE(1365), 1, sym_primary_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(1533), 1, sym_call, - STATE(1991), 1, + STATE(2065), 1, + sym_selector_expression, + STATE(3318), 1, sym_expression, - STATE(2457), 1, + STATE(5089), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(1910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(2209), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52057,7 +76621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52074,71 +76638,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32657] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + [30878] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1120), 1, + ACTIONS(113), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(117), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(1912), 1, + anon_sym_, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, + STATE(693), 1, + aux_sym_long_expression_repeat1, + STATE(1127), 1, sym_primary_expression, - STATE(1060), 1, + STATE(1513), 1, sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(1533), 1, sym_call, - STATE(2493), 1, + STATE(2098), 1, + sym_selector_expression, + STATE(5107), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(1910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(2155), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52146,7 +76712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52163,71 +76729,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32772] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1134), 1, - sym_identifier, - ACTIONS(1136), 1, - anon_sym_not, - ACTIONS(1259), 1, + [30995] = 28, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(550), 1, sym_float, - STATE(1182), 1, + 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(1197), 1, - sym_expression, - STATE(1227), 1, + STATE(3719), 1, sym_call, - STATE(1315), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2452), 1, + STATE(4824), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5483), 1, + sym_slice, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52235,7 +76805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52252,71 +76822,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32887] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [31116] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(972), 1, + ACTIONS(756), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(762), 1, + anon_sym_not, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2349), 1, + anon_sym_, + STATE(483), 1, + aux_sym_long_expression_repeat1, + STATE(1365), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1533), 1, + sym_call, + STATE(2065), 1, sym_selector_expression, - STATE(2440), 1, + STATE(3326), 1, sym_expression, - STATE(2454), 1, + STATE(5089), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(1910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2209), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52324,7 +76896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52341,71 +76913,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33002] = 26, - ACTIONS(9), 1, + [31233] = 26, + ACTIONS(155), 1, sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(169), 1, anon_sym_not, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(180), 1, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2167), 1, anon_sym_LBRACK, - STATE(1494), 1, + ACTIONS(2169), 1, + anon_sym_LBRACE, + ACTIONS(2175), 1, + anon_sym_DQUOTE, + ACTIONS(2275), 1, + anon_sym_, + STATE(638), 1, + aux_sym_long_expression_repeat1, + STATE(1125), 1, sym_primary_expression, - STATE(1495), 1, - sym_call, - STATE(1642), 1, - sym_selector_expression, - STATE(2458), 1, + STATE(1504), 1, sym_expression, - STATE(2552), 1, + STATE(1878), 1, + sym_selector_expression, + STATE(2072), 1, + sym_call, + STATE(5096), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5909), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + ACTIONS(209), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(2271), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(2154), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(175), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52413,7 +76987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52430,71 +77004,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33117] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1134), 1, - sym_identifier, - ACTIONS(1136), 1, - anon_sym_not, - ACTIONS(1259), 1, + [31350] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(730), 1, sym_float, - STATE(1182), 1, + 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(2351), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1199), 1, - sym_expression, - STATE(1227), 1, + STATE(4082), 1, sym_call, - STATE(1315), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2452), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52502,7 +77080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52519,71 +77097,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33232] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [31471] = 28, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, anon_sym_not, - STATE(1432), 1, + ACTIONS(1698), 1, + sym_identifier, + ACTIONS(2353), 1, + anon_sym_RPAREN, + STATE(4056), 1, sym_primary_expression, - STATE(1435), 1, + STATE(4082), 1, sym_call, - STATE(1456), 1, - sym_expression, - STATE(1579), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2455), 1, + STATE(4910), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5764), 1, + sym_keyword_argument, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52591,7 +77173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52608,71 +77190,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33347] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, + [31592] = 26, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1259), 1, + ACTIONS(756), 1, + sym_identifier, + ACTIONS(762), 1, + anon_sym_not, + ACTIONS(1904), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(1906), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(1908), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(1914), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(2347), 1, + anon_sym_, + STATE(718), 1, + aux_sym_long_expression_repeat1, + STATE(1365), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1533), 1, + sym_call, + STATE(2065), 1, sym_selector_expression, - STATE(2325), 1, - sym_dotted_name, - STATE(2509), 1, + STATE(3318), 1, sym_expression, - STATE(3180), 1, + STATE(5089), 1, + sym_dotted_name, + STATE(5858), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + ACTIONS(197), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(1910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2209), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52680,7 +77264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -52697,56 +77281,131 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33462] = 21, - ACTIONS(1347), 1, + [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, anon_sym_LPAREN, - ACTIONS(1349), 1, anon_sym_LBRACK, - ACTIONS(1355), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1365), 1, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1367), 1, anon_sym_AMP, - ACTIONS(1369), 1, anon_sym_CARET, - ACTIONS(1377), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, - ACTIONS(1452), 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, - ACTIONS(1456), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - STATE(865), 1, + 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, + 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(1476), 1, aux_sym_comparison_operator_repeat1, - STATE(952), 1, + STATE(2059), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1353), 2, + ACTIONS(2375), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1361), 2, + ACTIONS(2383), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1363), 2, + ACTIONS(2385), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1371), 2, + ACTIONS(2393), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 3, + ACTIONS(2373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1454), 4, + ACTIONS(2395), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1448), 8, + ACTIONS(2367), 9, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -52755,12 +77414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(1343), 25, + 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, @@ -52771,7 +77431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_and, anon_sym_or, @@ -52781,338 +77440,301 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [33567] = 26, - ACTIONS(409), 1, + [31899] = 10, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(193), 1, anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 25, + sym__newline, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2416), 1, - sym_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(3180), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [33682] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [31983] = 21, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(535), 1, + ACTIONS(2419), 1, anon_sym_not, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1424), 1, - sym_expression, - STATE(1435), 1, - sym_call, - STATE(1488), 1, - sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2464), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, + 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, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 3, + 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(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, - ACTIONS(27), 4, + 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, - STATE(1735), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [32089] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [33797] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 27, + sym__newline, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2502), 1, - sym_expression, - STATE(3180), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(191), 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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [33912] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [32163] = 27, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(151), 1, sym_float, - STATE(1227), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(822), 1, + sym_identifier, + ACTIONS(826), 1, + anon_sym_not, + STATE(183), 1, + aux_sym_check_statement_repeat1, + STATE(2027), 1, sym_call, - STATE(1229), 1, + STATE(2033), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2164), 1, sym_selector_expression, - STATE(2415), 1, + STATE(3347), 1, sym_expression, - STATE(2454), 1, + STATE(5144), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(147), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2239), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53120,7 +77742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -53137,372 +77759,299 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34027] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, - sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2308), 1, - sym_expression, - STATE(2464), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1735), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [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, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34142] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 26, + sym__newline, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2491), 1, - sym_expression, - STATE(3180), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [32431] = 6, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2405), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34257] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 26, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(539), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, - anon_sym_not, - STATE(1432), 1, - sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1437), 1, - sym_expression, - STATE(1579), 1, - sym_selector_expression, - STATE(2455), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1759), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [32507] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34372] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, - anon_sym_not, - STATE(1424), 1, - sym_expression, - STATE(1432), 1, - sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1579), 1, - sym_selector_expression, - STATE(2455), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1759), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34487] = 4, + [32581] = 6, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2405), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(605), 2, + STATE(782), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1460), 26, - sym__dedent, + ACTIONS(2455), 26, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -53510,7 +78059,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, @@ -53527,12 +78075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1458), 32, + ACTIONS(2457), 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, @@ -53545,7 +78093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -53560,961 +78107,904 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [34558] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [32657] = 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(2459), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, - anon_sym_not, - STATE(1432), 1, - sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1462), 1, - sym_expression, - STATE(1579), 1, - sym_selector_expression, - STATE(2455), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1759), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [32731] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34673] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 27, + sym__newline, sym_string_start, - ACTIONS(1309), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - ACTIONS(1462), 1, - sym_identifier, - STATE(1041), 1, - sym_primary_expression, - STATE(1078), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2583), 1, - sym_expression, - STATE(3063), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1317), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1118), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [32805] = 5, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34788] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 27, + sym__newline, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2548), 1, - sym_expression, - STATE(3180), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [32879] = 5, + ACTIONS(61), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(777), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34903] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1309), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1057), 1, - sym_primary_expression, - STATE(1060), 1, - sym_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2457), 1, - sym_dotted_name, - STATE(3063), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1317), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(191), 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, - STATE(1128), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 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(1121), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [32953] = 5, + ACTIONS(61), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(777), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [35018] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, - anon_sym_not, - STATE(1667), 1, - sym_primary_expression, - STATE(1774), 1, - sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, - sym_selector_expression, - STATE(2468), 1, - sym_dotted_name, - STATE(3226), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(788), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1996), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 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(1998), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [33027] = 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, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [35133] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1309), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1057), 1, - sym_primary_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2055), 1, - sym_expression, - STATE(2457), 1, - sym_dotted_name, - STATE(3063), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1317), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1128), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 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(1121), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [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, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [35248] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1120), 1, - sym_identifier, - ACTIONS(1122), 1, - anon_sym_not, - ACTIONS(1309), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, - sym_primary_expression, - STATE(1033), 1, - sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2493), 1, - sym_dotted_name, - STATE(3063), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1317), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1107), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 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(1121), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [33179] = 5, + ACTIONS(61), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(777), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [35363] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1186), 1, - sym_expression, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(3180), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [33253] = 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, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [35478] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 26, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(794), 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(796), 1, - sym_string_start, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, + 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, - STATE(1667), 1, - sym_primary_expression, - STATE(1785), 1, - sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, - sym_selector_expression, - STATE(2468), 1, - sym_dotted_name, - STATE(3226), 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, + [33329] = 5, + ACTIONS(61), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(788), 3, + 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1996), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 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(1998), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [33403] = 5, + ACTIONS(61), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(777), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [35593] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(43), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(53), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(894), 1, + 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, - STATE(1495), 1, - sym_call, - STATE(1512), 1, - sym_expression, - STATE(1549), 1, - sym_primary_expression, - STATE(1753), 1, - sym_selector_expression, - STATE(2463), 1, - sym_dotted_name, - STATE(3186), 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, + [33477] = 5, + ACTIONS(61), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + 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, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1956), 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(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [35708] = 26, - ACTIONS(1084), 1, - sym_identifier, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1096), 1, - anon_sym_not, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1231), 1, + [33551] = 27, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(177), 1, sym_float, - STATE(630), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_not, + STATE(161), 1, + aux_sym_check_statement_repeat1, + STATE(1943), 1, sym_primary_expression, - STATE(881), 1, + STATE(2072), 1, sym_call, - STATE(908), 1, + STATE(2208), 1, sym_selector_expression, - STATE(1181), 1, + STATE(3351), 1, sym_expression, - STATE(2499), 1, + STATE(5092), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(207), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(942), 4, + STATE(2237), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54522,7 +79012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -54539,282 +79029,240 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35823] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + [33669] = 7, + ACTIONS(61), 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2422), 1, - sym_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(3180), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2449), 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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [33747] = 9, + ACTIONS(61), 1, + anon_sym_if, + ACTIONS(2359), 1, + anon_sym_and, + ACTIONS(2363), 1, + anon_sym_PLUS, + ACTIONS(2447), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(777), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [35938] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2449), 3, anon_sym_DOT, - ACTIONS(19), 1, + anon_sym_as, + anon_sym_or, + ACTIONS(2469), 25, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, - sym_primary_expression, - STATE(1495), 1, - sym_call, - STATE(1642), 1, - sym_selector_expression, - STATE(2368), 1, - sym_expression, - STATE(2552), 1, - sym_dotted_name, - STATE(3186), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1967), 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [33829] = 9, + ACTIONS(61), 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, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [36053] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + 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, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 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, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(894), 1, - anon_sym_not, - STATE(1495), 1, - sym_call, - STATE(1549), 1, - sym_primary_expression, - STATE(1611), 1, - sym_expression, - STATE(1753), 1, - sym_selector_expression, - STATE(2463), 1, - sym_dotted_name, - STATE(3186), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, - anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + 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, - STATE(1956), 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_not, + anon_sym_or, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [36168] = 4, - STATE(560), 1, - aux_sym_union_type_repeat1, + [33911] = 7, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2401), 1, + anon_sym_and, + ACTIONS(2405), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 26, - sym__dedent, + 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, @@ -54822,7 +79270,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, @@ -54839,14 +79286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1383), 33, + ACTIONS(2449), 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, @@ -54858,10 +79304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -54873,1627 +79317,1151 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [36239] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + [33989] = 9, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2401), 1, + anon_sym_and, + ACTIONS(2405), 1, + anon_sym_PLUS, + ACTIONS(2447), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(894), 1, - anon_sym_not, - STATE(1495), 1, - sym_call, - STATE(1549), 1, - sym_primary_expression, - STATE(1596), 1, - sym_expression, - STATE(1753), 1, - sym_selector_expression, - STATE(2463), 1, - sym_dotted_name, - STATE(3186), 1, - sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, - anon_sym_PLUS, + 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, anon_sym_DASH, + anon_sym_PERCENT, + 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1956), 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [36354] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, - sym_identifier, - STATE(1495), 1, - sym_call, - STATE(1505), 1, - sym_primary_expression, - STATE(1830), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2579), 1, - sym_expression, - STATE(3186), 1, - sym_quant_op, + [34071] = 4, + STATE(774), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(2473), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2471), 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, - STATE(1916), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [36469] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + [34143] = 4, + STATE(752), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2557), 1, - sym_expression, - STATE(3180), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [34215] = 7, + ACTIONS(61), 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, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [36584] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2481), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1591), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [36699] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, + [34293] = 4, + ACTIONS(2487), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - ACTIONS(1466), 1, - anon_sym_not, - STATE(1561), 1, - sym_call, - STATE(1591), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [36814] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [34365] = 22, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, + ACTIONS(2387), 1, + anon_sym_PIPE, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_CARET, + ACTIONS(2399), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2495), 1, anon_sym_not, - STATE(1176), 1, - sym_expression, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, - sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, + ACTIONS(2499), 1, + anon_sym_is, + STATE(2059), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1408), 3, + 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(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, - ACTIONS(27), 4, + sym_float, + ACTIONS(2489), 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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 5, + 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, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [36929] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [34473] = 22, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, + ACTIONS(2387), 1, + anon_sym_PIPE, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_CARET, + ACTIONS(2399), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2495), 1, anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, - sym_primary_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2566), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, + ACTIONS(2499), 1, + anon_sym_is, + STATE(2059), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1408), 3, + 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(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, - ACTIONS(27), 4, + 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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 5, + 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, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37044] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, - anon_sym_LPAREN, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(976), 1, - sym_identifier, - STATE(1789), 1, - sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2471), 1, - sym_expression, - STATE(2529), 1, - sym_dotted_name, - STATE(3226), 1, - sym_quant_op, + [34581] = 5, + ACTIONS(2509), 1, + anon_sym_PIPE, + STATE(758), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(788), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2004), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1998), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37159] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(2507), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(555), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_not, - STATE(1168), 1, - sym_expression, - STATE(1544), 1, - sym_primary_expression, - STATE(1660), 1, - sym_selector_expression, - STATE(1661), 1, - sym_call, - STATE(2489), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1400), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1924), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37274] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1275), 1, - anon_sym_LPAREN, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1551), 1, - sym_primary_expression, - STATE(1561), 1, - sym_call, - STATE(1842), 1, - sym_selector_expression, - STATE(2372), 1, - sym_expression, - STATE(2527), 1, - sym_dotted_name, - STATE(3130), 1, - sym_quant_op, + [34655] = 4, + ACTIONS(2516), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1283), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1913), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1861), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37389] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(958), 1, + ACTIONS(2514), 26, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1275), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1551), 1, - sym_primary_expression, - STATE(1561), 1, - sym_call, - STATE(1842), 1, - sym_selector_expression, - STATE(2373), 1, - sym_expression, - STATE(2527), 1, - sym_dotted_name, - STATE(3130), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1283), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1913), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1861), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37504] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [34727] = 13, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, - anon_sym_LBRACE, - ACTIONS(1315), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1057), 1, - sym_primary_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2053), 1, - sym_expression, - STATE(2457), 1, - sym_dotted_name, - STATE(3063), 1, - sym_quant_op, + ACTIONS(2399), 1, + anon_sym_QMARK_LBRACK, + STATE(2059), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(2375), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2383), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1128), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1121), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37619] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(2385), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 18, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1042), 1, - sym_identifier, - ACTIONS(1044), 1, - anon_sym_not, - ACTIONS(1275), 1, - anon_sym_LPAREN, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1573), 1, - sym_primary_expression, - STATE(1594), 1, - sym_expression, - STATE(1801), 1, - sym_selector_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3130), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1283), 3, - 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_TILDE, - ACTIONS(27), 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, + 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(1897), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1861), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37734] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [34817] = 14, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, - sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2464), 1, - sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3198), 1, - sym_quant_op, + ACTIONS(2399), 1, + anon_sym_QMARK_LBRACK, + STATE(2059), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 3, + 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), 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, - ACTIONS(27), 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, + 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(1735), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37849] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [34909] = 15, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(2554), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + 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), 15, + 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_TILDE, - ACTIONS(27), 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, + 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(1631), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [37964] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [35003] = 16, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(692), 1, - sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, - sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2309), 1, - sym_expression, - STATE(2464), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 3, + 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, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - ACTIONS(27), 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, + 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(1735), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [38079] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + [35099] = 12, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1603), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, + ACTIONS(2399), 1, + anon_sym_QMARK_LBRACK, + STATE(2059), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 3, + ACTIONS(2375), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2385), 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, 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(27), 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, + 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(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [38194] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [35187] = 10, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, - anon_sym_not, - STATE(1414), 1, - sym_call, - STATE(1992), 1, - sym_primary_expression, - STATE(2041), 1, - sym_expression, + ACTIONS(2399), 1, + anon_sym_QMARK_LBRACK, STATE(2059), 1, - sym_selector_expression, - STATE(2494), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1408), 3, + 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, - ACTIONS(27), 4, + 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, - STATE(2066), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [38309] = 6, - ACTIONS(1470), 1, - anon_sym_DOT, - ACTIONS(1475), 1, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(541), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 25, + ACTIONS(2520), 22, + 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, @@ -56510,13 +80478,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(1468), 31, + 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, @@ -56529,7 +80498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -56544,284 +80512,304 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38384] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [35355] = 22, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, + ACTIONS(2387), 1, + anon_sym_PIPE, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_CARET, + ACTIONS(2399), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2495), 1, anon_sym_not, - STATE(1419), 1, - sym_expression, - STATE(1432), 1, - sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1579), 1, - sym_selector_expression, - STATE(2455), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, + ACTIONS(2499), 1, + anon_sym_is, + STATE(2059), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 3, + 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(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__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(27), 4, + 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, - STATE(1759), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 5, + 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, - STATE(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [38499] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [35463] = 4, + ACTIONS(2530), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 26, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(519), 1, anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(539), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(545), 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(547), 1, - sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, + ACTIONS(2526), 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, - STATE(1432), 1, - sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1484), 1, - sym_expression, - STATE(1579), 1, - sym_selector_expression, - STATE(2455), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, + 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, + [35535] = 4, + STATE(776), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(2534), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2532), 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, - STATE(1759), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [38614] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, + [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, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1231), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1233), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1241), 1, - anon_sym_DQUOTE, - ACTIONS(1243), 1, - sym_float, - STATE(498), 1, - sym_primary_expression, - STATE(635), 1, - sym_expression, - STATE(881), 1, - sym_call, - STATE(884), 1, - sym_selector_expression, - STATE(2504), 1, - sym_dotted_name, - STATE(3024), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1239), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1104), 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(939), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(937), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [38729] = 6, - ACTIONS(1480), 1, - anon_sym_DOT, - ACTIONS(1485), 1, - anon_sym_QMARK_DOT, - STATE(545), 1, - aux_sym_dotted_name_repeat1, + [35679] = 4, + STATE(776), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1483), 25, + ACTIONS(2485), 27, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -56830,6 +80818,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, @@ -56847,11 +80836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1478), 32, + 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, @@ -56865,7 +80856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -56880,282 +80870,224 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [38804] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, + [35751] = 4, + STATE(776), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1604), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [38919] = 26, - ACTIONS(515), 1, + [35823] = 6, + ACTIONS(2542), 1, anon_sym_DOT, - ACTIONS(517), 1, - anon_sym_LPAREN, - ACTIONS(519), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, + ACTIONS(2547), 1, anon_sym_QMARK_DOT, - ACTIONS(539), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, - sym_float, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, - anon_sym_not, - STATE(1432), 1, - sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1446), 1, - sym_expression, - STATE(1579), 1, - sym_selector_expression, - STATE(2455), 1, - sym_dotted_name, - STATE(3198), 1, - sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(537), 3, + STATE(773), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2545), 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1759), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 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(1743), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39034] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, + [35899] = 6, + ACTIONS(2552), 1, anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, - anon_sym_LPAREN, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(2557), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1605), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, + STATE(774), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 3, + ACTIONS(2555), 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, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39149] = 5, - ACTIONS(1492), 1, + [35975] = 5, + ACTIONS(2564), 1, anon_sym_EQ, - STATE(560), 1, + STATE(776), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1490), 26, + ACTIONS(2562), 27, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -57182,12 +81114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1488), 32, + 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, @@ -57200,7 +81133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -57215,905 +81147,762 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [39222] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, + [36049] = 4, + STATE(758), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1309), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - ACTIONS(1462), 1, - sym_identifier, - STATE(1039), 1, - sym_primary_expression, - STATE(1078), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2563), 1, - sym_expression, - STATE(3063), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1317), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2566), 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, - STATE(1118), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [36121] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(773), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39337] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2572), 27, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1309), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1311), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - ACTIONS(1462), 1, - sym_identifier, - STATE(1049), 1, - sym_primary_expression, - STATE(1078), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2583), 1, - sym_expression, - STATE(3063), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1317), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2570), 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(1118), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39452] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + [36193] = 10, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1606), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, + ACTIONS(2399), 1, + anon_sym_QMARK_LBRACK, + STATE(2059), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 3, + ACTIONS(2576), 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(27), 4, + 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, - STATE(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39567] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + [36277] = 21, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(2377), 1, + anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1607), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, + 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, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 3, + 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(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, - ACTIONS(27), 4, + 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, - STATE(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39682] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [36383] = 21, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(930), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, + anon_sym_QMARK_DOT, + ACTIONS(2419), 1, anon_sym_not, - ACTIONS(1464), 1, - sym_identifier, - STATE(1495), 1, - sym_call, - STATE(1584), 1, - sym_primary_expression, - STATE(1830), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2587), 1, - sym_expression, - STATE(3186), 1, - sym_quant_op, + 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, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + 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(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, - ACTIONS(27), 4, + 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, - STATE(1916), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39797] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + [36489] = 10, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1608), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, + ACTIONS(2437), 1, + anon_sym_QMARK_LBRACK, + STATE(2083), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 3, + ACTIONS(2576), 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(27), 4, + 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, - STATE(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [36573] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(788), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39912] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2572), 27, + sym__newline, sym_string_start, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1389), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2570), 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(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40027] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + [36645] = 4, + STATE(787), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2473), 27, + sym__newline, sym_string_start, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(1426), 1, - sym_identifier, - ACTIONS(1494), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1389), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2471), 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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40142] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, - sym_identifier, - STATE(1495), 1, - sym_call, - STATE(1582), 1, - sym_primary_expression, - STATE(1830), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2579), 1, - sym_expression, - STATE(3186), 1, - sym_quant_op, + [36717] = 4, + STATE(807), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(2568), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2566), 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, - STATE(1916), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1974), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40257] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [36789] = 22, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2417), 1, - sym_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, + ACTIONS(2425), 1, + anon_sym_PIPE, + ACTIONS(2427), 1, + anon_sym_AMP, + ACTIONS(2429), 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, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + 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(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, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - ACTIONS(27), 4, + 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, - STATE(1631), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 5, + 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, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40372] = 4, - STATE(360), 1, + [36897] = 5, + ACTIONS(2578), 1, + anon_sym_EQ, + STATE(784), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 26, - sym__dedent, + ACTIONS(2562), 27, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -58138,14 +81927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1496), 33, + 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_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -58157,7 +81946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -58172,695 +81960,586 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [40443] = 26, - ACTIONS(449), 1, + [36971] = 6, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2583), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1497), 1, - sym_primary_expression, - STATE(1661), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2567), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, + STATE(787), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(2555), 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_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40558] = 26, - ACTIONS(449), 1, + [37047] = 6, + ACTIONS(2586), 1, anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2589), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, - anon_sym_not, - STATE(1335), 1, - sym_primary_expression, - STATE(1369), 1, - sym_expression, - STATE(1414), 1, - sym_call, - STATE(1475), 1, - sym_selector_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + 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, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1599), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40673] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [37123] = 10, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, - anon_sym_LBRACE, - ACTIONS(1315), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1057), 1, - sym_primary_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(1995), 1, - sym_expression, - STATE(2457), 1, - sym_dotted_name, - STATE(3063), 1, - sym_quant_op, + ACTIONS(2437), 1, + anon_sym_QMARK_LBRACK, + STATE(2083), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1317), 3, + 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, - ACTIONS(27), 4, + 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, - STATE(1128), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1030), 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(1121), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1088), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40788] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [37207] = 10, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, - anon_sym_not, - STATE(1667), 1, - sym_primary_expression, - STATE(1761), 1, - sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, - sym_selector_expression, - STATE(2468), 1, - sym_dotted_name, - STATE(3226), 1, - sym_quant_op, + ACTIONS(2437), 1, + anon_sym_QMARK_LBRACK, + STATE(2083), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(788), 3, + 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, - ACTIONS(27), 4, + 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, - STATE(1996), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 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(1998), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40903] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [37291] = 12, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2297), 1, - sym_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, + ACTIONS(2437), 1, + anon_sym_QMARK_LBRACK, + STATE(2083), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(2413), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2423), 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, - ACTIONS(27), 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, + 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(1631), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 5, - sym_integer, + anon_sym_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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41018] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [37379] = 16, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2293), 1, - sym_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, + 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(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + 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, + 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, - ACTIONS(27), 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, + 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(1631), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41133] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [37475] = 15, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, - anon_sym_not, - STATE(1335), 1, - sym_primary_expression, - STATE(1364), 1, - sym_expression, - STATE(1414), 1, - sym_call, - STATE(1475), 1, - sym_selector_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, + 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(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + 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, + 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, - ACTIONS(27), 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, + 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(1599), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41248] = 21, - ACTIONS(1502), 1, + [37569] = 14, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(1510), 1, + ACTIONS(2415), 1, anon_sym_STAR_STAR, - ACTIONS(1512), 1, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(1514), 1, - anon_sym_not, - ACTIONS(1520), 1, - anon_sym_PIPE, - ACTIONS(1522), 1, - anon_sym_AMP, - ACTIONS(1524), 1, - anon_sym_CARET, - ACTIONS(1530), 1, - anon_sym_is, - ACTIONS(1532), 1, + ACTIONS(2437), 1, anon_sym_QMARK_LBRACK, - STATE(870), 1, - aux_sym_comparison_operator_repeat1, - STATE(941), 1, + STATE(2083), 1, sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1508), 2, + ACTIONS(2413), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1516), 2, + ACTIONS(2421), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1518), 2, + ACTIONS(2423), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1526), 2, + ACTIONS(2431), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1506), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 8, + 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(1343), 25, + 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, @@ -58869,526 +82548,476 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [41353] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [37661] = 13, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, - anon_sym_not, - STATE(1667), 1, - sym_primary_expression, - STATE(1782), 1, - sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, - sym_selector_expression, - STATE(2468), 1, - sym_dotted_name, - STATE(3226), 1, - sym_quant_op, + ACTIONS(2437), 1, + anon_sym_QMARK_LBRACK, + STATE(2083), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(788), 3, + 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, + 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, - ACTIONS(27), 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, + 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(1996), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 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(1998), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [37751] = 9, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2401), 1, + anon_sym_and, + ACTIONS(2405), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41468] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + 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_string_start, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1347), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, - anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + 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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 5, + 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, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41583] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + [37833] = 4, + STATE(784), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 27, + sym__newline, sym_string_start, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1346), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41698] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [37905] = 22, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(930), 1, + ACTIONS(2425), 1, + anon_sym_PIPE, + ACTIONS(2427), 1, + anon_sym_AMP, + ACTIONS(2429), 1, + anon_sym_CARET, + ACTIONS(2437), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2495), 1, anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1344), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, + ACTIONS(2499), 1, + anon_sym_is, + STATE(2083), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + 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(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, - ACTIONS(27), 4, + 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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 5, + 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, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41813] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [38013] = 22, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2415), 1, + anon_sym_STAR_STAR, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(930), 1, + ACTIONS(2425), 1, + anon_sym_PIPE, + ACTIONS(2427), 1, + anon_sym_AMP, + ACTIONS(2429), 1, + anon_sym_CARET, + ACTIONS(2437), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2495), 1, anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1340), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, + ACTIONS(2499), 1, + anon_sym_is, + STATE(2083), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + 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(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, - ACTIONS(27), 4, + sym_float, + ACTIONS(2489), 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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 5, + 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, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41928] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [38121] = 27, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(930), 1, + 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(1426), 1, + ACTIONS(1698), 1, sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1337), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1414), 1, + STATE(4082), 1, sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, + STATE(4214), 1, + sym_selector_expression, + STATE(4910), 1, sym_expression, - STATE(3261), 1, + 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(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59396,7 +83025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59413,427 +83042,687 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42043] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + [38239] = 4, + STATE(784), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 27, + sym__newline, sym_string_start, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1412), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, + [38311] = 7, + ACTIONS(89), 1, + anon_sym_if, + ACTIONS(2401), 1, + anon_sym_and, + ACTIONS(2405), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42158] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(2481), 26, + sym__newline, sym_string_start, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1334), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1235), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42273] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, + [38389] = 4, + STATE(783), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 27, + sym__newline, sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1277), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1561), 1, - sym_call, - STATE(1609), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(1283), 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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1854), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42388] = 26, - ACTIONS(409), 1, + [38461] = 4, + STATE(784), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2538), 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(2536), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(419), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(427), 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(439), 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, + [38533] = 4, + STATE(784), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2534), 27, + sym__newline, sym_string_start, - ACTIONS(1259), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1261), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1271), 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(1418), 1, + ACTIONS(2532), 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, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2335), 1, - sym_dotted_name, - STATE(2547), 1, - sym_expression, - STATE(3180), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [38605] = 4, + ACTIONS(2592), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(2528), 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(2526), 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, + [38677] = 5, + ACTIONS(2594), 1, + anon_sym_PIPE, + STATE(807), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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_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(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42503] = 26, - ACTIONS(449), 1, + [38751] = 4, + ACTIONS(2597), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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(2483), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(457), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(475), 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, + [38823] = 4, + ACTIONS(2599), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 26, + sym__newline, sym_string_start, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(571), 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(928), 1, + 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, + [38895] = 26, + ACTIONS(57), 1, sym_identifier, - ACTIONS(930), 1, + 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(75), 1, anon_sym_not, - STATE(1198), 1, + 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_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(739), 1, + sym_expression, + STATE(1129), 1, sym_selector_expression, - STATE(1414), 1, + STATE(1533), 1, sym_call, - STATE(2034), 1, - sym_primary_expression, - STATE(2537), 1, + STATE(5044), 1, sym_dotted_name, - STATE(2580), 1, - sym_expression, - STATE(3261), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2086), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59841,7 +83730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59858,71 +83747,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42618] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [39010] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(1418), 1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1357), 1, sym_identifier, - STATE(1227), 1, + ACTIONS(1363), 1, + anon_sym_not, + STATE(232), 1, + sym_expression, + STATE(2396), 1, sym_call, - STATE(1229), 1, + STATE(2835), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3023), 1, sym_selector_expression, - STATE(2367), 1, + STATE(5088), 1, sym_dotted_name, - STATE(2543), 1, - sym_expression, - STATE(3180), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(662), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59930,7 +83819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -59947,71 +83836,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42733] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [39125] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(177), 1, sym_float, - ACTIONS(1110), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(201), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(205), 1, anon_sym_not, - STATE(1176), 1, - sym_expression, - STATE(1544), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(1900), 1, sym_primary_expression, - STATE(1660), 1, - sym_selector_expression, - STATE(1661), 1, + STATE(2072), 1, sym_call, - STATE(2489), 1, + STATE(2095), 1, + sym_expression, + STATE(2102), 1, + sym_selector_expression, + STATE(5047), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(207), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2240), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60019,7 +83908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60036,71 +83925,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42848] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + [39240] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(526), 1, sym_float, - STATE(1561), 1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + 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(1616), 1, + STATE(2850), 1, sym_primary_expression, - STATE(1802), 1, + STATE(3017), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5087), 1, sym_dotted_name, - STATE(2588), 1, - sym_expression, - STATE(3130), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1853), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(1283), 3, + ACTIONS(662), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(3124), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60108,7 +83997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60125,71 +84014,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42963] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [39355] = 26, + ACTIONS(578), 1, + sym_identifier, + ACTIONS(586), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(590), 1, + anon_sym_not, + ACTIONS(598), 1, sym_string_start, - ACTIONS(1273), 1, - sym_identifier, - ACTIONS(1275), 1, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(2611), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(2613), 1, sym_float, - STATE(1561), 1, - sym_call, - STATE(1618), 1, + STATE(2678), 1, sym_primary_expression, - STATE(1802), 1, + STATE(2682), 1, + sym_expression, + STATE(2837), 1, sym_selector_expression, - STATE(2537), 1, + STATE(2870), 1, + sym_call, + STATE(5051), 1, sym_dotted_name, - STATE(2571), 1, - sym_expression, - STATE(3130), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1853), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - ACTIONS(1283), 3, + STATE(3056), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2609), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(3009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(596), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60197,7 +84086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60214,71 +84103,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43078] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + [39470] = 26, + ACTIONS(448), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(464), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(470), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, + anon_sym_DOT, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + STATE(88), 1, + sym_expression, + STATE(2672), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2680), 1, sym_selector_expression, - STATE(2391), 1, - sym_expression, - STATE(2454), 1, + STATE(2707), 1, + sym_call, + STATE(5072), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5958), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(466), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2839), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(468), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60286,7 +84175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60303,71 +84192,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43193] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [39585] = 26, + ACTIONS(506), 1, + sym_identifier, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(518), 1, + anon_sym_not, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_not, - STATE(1544), 1, - sym_primary_expression, - STATE(1570), 1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + STATE(2396), 1, + sym_call, + STATE(2617), 1, sym_expression, - STATE(1660), 1, + STATE(2669), 1, + sym_primary_expression, + STATE(2681), 1, sym_selector_expression, - STATE(1661), 1, - sym_call, - STATE(2489), 1, + STATE(5056), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2849), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60375,7 +84264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60392,71 +84281,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43308] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [39700] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(642), 1, + anon_sym_not, + ACTIONS(644), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(650), 1, sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, - anon_sym_not, - STATE(1335), 1, - sym_primary_expression, - STATE(1363), 1, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(742), 1, + anon_sym_QMARK_DOT, + STATE(101), 1, sym_expression, - STATE(1414), 1, + STATE(2793), 1, + sym_primary_expression, + STATE(3027), 1, sym_call, - STATE(1475), 1, + STATE(3040), 1, sym_selector_expression, - STATE(2532), 1, + STATE(5079), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5965), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(646), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(3169), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(648), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60464,7 +84353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60481,71 +84370,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43423] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + [39815] = 26, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(424), 1, + anon_sym_not, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(432), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + STATE(2310), 1, + sym_expression, + STATE(2314), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2338), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2365), 1, + sym_call, + STATE(5063), 1, sym_dotted_name, - STATE(2541), 1, - sym_expression, - STATE(3180), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(428), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2536), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60553,7 +84442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60570,71 +84459,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43538] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [39930] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1110), 1, + 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(1112), 1, + ACTIONS(1389), 1, anon_sym_not, - STATE(1509), 1, - sym_expression, - STATE(1544), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1660), 1, - sym_selector_expression, - STATE(1661), 1, + STATE(4082), 1, sym_call, - STATE(2489), 1, + STATE(4214), 1, + sym_selector_expression, + STATE(4937), 1, + sym_expression, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60642,7 +84531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60659,71 +84548,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43653] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [40045] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(730), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(1236), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2380), 1, + STATE(4935), 1, sym_expression, - STATE(2454), 1, + STATE(5012), 1, sym_dotted_name, - STATE(3180), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60731,7 +84620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60748,71 +84637,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43768] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + [40160] = 26, + ACTIONS(710), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(730), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(3872), 1, sym_primary_expression, - STATE(1236), 1, + STATE(4071), 1, + sym_expression, + STATE(4082), 1, + sym_call, + STATE(4242), 1, sym_selector_expression, - STATE(2454), 1, + STATE(5026), 1, sym_dotted_name, - STATE(2536), 1, - sym_expression, - STATE(3180), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(4249), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60820,7 +84709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60837,71 +84726,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43883] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1231), 1, + [40275] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(83), 1, sym_float, - STATE(430), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(794), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_not, + STATE(124), 1, sym_expression, - STATE(498), 1, + STATE(779), 1, sym_primary_expression, - STATE(881), 1, + STATE(1533), 1, sym_call, - STATE(884), 1, + STATE(1614), 1, sym_selector_expression, - STATE(2504), 1, + STATE(5082), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + STATE(2067), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(2073), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60909,7 +84798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -60926,71 +84815,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43998] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [40390] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(612), 1, sym_identifier, - STATE(1789), 1, + ACTIONS(618), 1, + anon_sym_not, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3729), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2526), 1, + STATE(3742), 1, sym_expression, - STATE(2529), 1, + STATE(4027), 1, + sym_selector_expression, + STATE(4111), 1, + sym_call, + STATE(5069), 1, sym_dotted_name, - STATE(3226), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(622), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(4142), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60998,7 +84887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61015,71 +84904,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44113] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [40505] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1462), 1, + 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(1027), 1, + STATE(4053), 1, sym_primary_expression, - STATE(1078), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(4082), 1, sym_call, - STATE(2537), 1, + STATE(4140), 1, + sym_selector_expression, + STATE(5113), 1, sym_dotted_name, - STATE(2583), 1, + STATE(5193), 1, sym_expression, - STATE(3063), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61087,7 +84976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61104,71 +84993,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44228] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [40620] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(692), 1, + 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(1435), 1, - sym_call, - STATE(1488), 1, + STATE(4052), 1, sym_primary_expression, - STATE(1601), 1, + STATE(4082), 1, + sym_call, + STATE(4140), 1, sym_selector_expression, - STATE(2464), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2496), 1, + STATE(5193), 1, sym_expression, - STATE(3198), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61176,7 +85065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61193,71 +85082,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44343] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [40735] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - STATE(1354), 1, + 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(4049), 1, sym_primary_expression, - STATE(1414), 1, + STATE(4082), 1, sym_call, - STATE(1427), 1, + STATE(4140), 1, sym_selector_expression, - STATE(2492), 1, - sym_expression, - STATE(2507), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5193), 1, + sym_expression, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61265,7 +85154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61282,71 +85171,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44458] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [40850] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1462), 1, + 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(1025), 1, + STATE(4045), 1, sym_primary_expression, - STATE(1078), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(4082), 1, sym_call, - STATE(2537), 1, + STATE(4140), 1, + sym_selector_expression, + STATE(5113), 1, sym_dotted_name, - STATE(2583), 1, + STATE(5193), 1, sym_expression, - STATE(3063), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61354,7 +85243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61371,71 +85260,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44573] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [40965] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1667), 1, + ACTIONS(2615), 1, + sym_identifier, + STATE(4030), 1, sym_primary_expression, - STATE(1718), 1, - sym_expression, - STATE(1791), 1, + STATE(4082), 1, sym_call, - STATE(1885), 1, + STATE(4140), 1, sym_selector_expression, - STATE(2468), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5193), 1, + sym_expression, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61443,7 +85332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61460,71 +85349,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44688] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [41080] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1462), 1, + 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(1055), 1, + STATE(4024), 1, sym_primary_expression, - STATE(1078), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(4082), 1, sym_call, - STATE(2537), 1, + STATE(4140), 1, + sym_selector_expression, + STATE(5113), 1, sym_dotted_name, - STATE(2583), 1, + STATE(5193), 1, sym_expression, - STATE(3063), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61532,7 +85421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61549,71 +85438,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44803] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [41195] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1462), 1, + 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(1038), 1, + STATE(4023), 1, sym_primary_expression, - STATE(1078), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(4082), 1, sym_call, - STATE(2537), 1, + STATE(4140), 1, + sym_selector_expression, + STATE(5113), 1, sym_dotted_name, - STATE(2583), 1, + STATE(5193), 1, sym_expression, - STATE(3063), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61621,7 +85510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61638,71 +85527,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44918] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [41310] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(177), 1, sym_float, - ACTIONS(1462), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(806), 1, sym_identifier, - STATE(1024), 1, + ACTIONS(812), 1, + anon_sym_not, + STATE(129), 1, + sym_expression, + STATE(1464), 1, sym_primary_expression, - STATE(1078), 1, + STATE(2035), 1, sym_selector_expression, - STATE(1082), 1, + STATE(2072), 1, sym_call, - STATE(2537), 1, + STATE(5083), 1, sym_dotted_name, - STATE(2583), 1, - sym_expression, - STATE(3063), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(2210), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61710,7 +85599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61727,71 +85616,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45033] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [41425] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(464), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(470), 1, sym_float, - ACTIONS(1462), 1, - sym_identifier, - STATE(1043), 1, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, + anon_sym_DOT, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + STATE(2629), 1, + sym_expression, + STATE(2672), 1, sym_primary_expression, - STATE(1078), 1, + STATE(2680), 1, sym_selector_expression, - STATE(1082), 1, + STATE(2707), 1, sym_call, - STATE(2537), 1, + STATE(5072), 1, sym_dotted_name, - STATE(2583), 1, - sym_expression, - STATE(3063), 1, + STATE(5958), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(466), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(2839), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(468), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61799,7 +85688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61816,71 +85705,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45148] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [41540] = 26, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(690), 1, + anon_sym_not, + ACTIONS(692), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(698), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1392), 1, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(736), 1, + anon_sym_DOT, + ACTIONS(738), 1, + anon_sym_QMARK_DOT, + STATE(105), 1, + sym_expression, + STATE(2766), 1, sym_primary_expression, - STATE(1414), 1, + STATE(2993), 1, sym_call, - STATE(2537), 1, + STATE(3042), 1, + sym_selector_expression, + STATE(5059), 1, sym_dotted_name, - STATE(2585), 1, - sym_expression, - STATE(3261), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(694), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3144), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(696), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61888,7 +85777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61905,71 +85794,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45263] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [41655] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(642), 1, + anon_sym_not, + ACTIONS(644), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(650), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1426), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1333), 1, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(742), 1, + anon_sym_QMARK_DOT, + STATE(2793), 1, sym_primary_expression, - STATE(1414), 1, + STATE(2883), 1, + sym_expression, + STATE(3027), 1, sym_call, - STATE(2537), 1, + STATE(3040), 1, + sym_selector_expression, + STATE(5079), 1, sym_dotted_name, - STATE(2569), 1, - sym_expression, - STATE(3261), 1, + STATE(5965), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(646), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3169), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(648), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61977,7 +85866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -61994,71 +85883,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45378] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [41770] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(1462), 1, - sym_identifier, - STATE(1050), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(3), 1, + sym_expression, + STATE(726), 1, sym_primary_expression, - STATE(1078), 1, + STATE(1144), 1, sym_selector_expression, - STATE(1082), 1, + STATE(1659), 1, sym_call, - STATE(2537), 1, + STATE(5099), 1, sym_dotted_name, - STATE(2583), 1, - sym_expression, - STATE(3063), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(2056), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62066,7 +85955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62083,138 +85972,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45493] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(541), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1536), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [41885] = 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, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(77), 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(83), 1, sym_float, - ACTIONS(1534), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [45564] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(1120), 1, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(794), 1, sym_identifier, - ACTIONS(1122), 1, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(1309), 1, - anon_sym_LPAREN, - ACTIONS(1311), 1, - anon_sym_LBRACK, - ACTIONS(1313), 1, - anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, - anon_sym_DQUOTE, - ACTIONS(1321), 1, - sym_float, - STATE(1023), 1, + STATE(779), 1, sym_primary_expression, - STATE(1029), 1, - sym_expression, - STATE(1070), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(1533), 1, sym_call, - STATE(2493), 1, + STATE(1614), 1, + sym_selector_expression, + STATE(3283), 1, + sym_expression, + STATE(5082), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(2073), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62222,7 +86044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62239,71 +86061,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45679] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [42000] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(151), 1, sym_float, - STATE(1057), 1, - sym_primary_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, - sym_call, - STATE(2052), 1, + 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(6), 1, sym_expression, - STATE(2457), 1, + STATE(1064), 1, + sym_primary_expression, + STATE(1901), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62311,7 +86133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62328,71 +86150,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45794] = 26, - ACTIONS(1010), 1, - sym_identifier, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, - anon_sym_lambda, - ACTIONS(1022), 1, - anon_sym_not, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(1309), 1, + [42115] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(177), 1, sym_float, - STATE(1057), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, + anon_sym_not, + STATE(1943), 1, sym_primary_expression, - STATE(1066), 1, - sym_selector_expression, - STATE(1082), 1, + STATE(2072), 1, sym_call, - STATE(2054), 1, + STATE(2208), 1, + sym_selector_expression, + STATE(3368), 1, sym_expression, - STATE(2457), 1, + STATE(5092), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, - sym_binary_operator, - sym_subscript, - STATE(1125), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(207), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1128), 4, + STATE(2237), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62400,7 +86222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62417,71 +86239,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45909] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [42230] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(151), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(127), 1, + sym_expression, + STATE(1411), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2336), 1, - sym_expression, - STATE(2454), 1, + STATE(2027), 1, + sym_call, + STATE(5035), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62489,7 +86311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62506,71 +86328,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46024] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1146), 1, + [42345] = 26, + ACTIONS(678), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(690), 1, + anon_sym_not, + ACTIONS(692), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(698), 1, sym_float, - STATE(327), 1, - sym_expression, - STATE(498), 1, + 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(881), 1, + STATE(2855), 1, + sym_expression, + STATE(2993), 1, sym_call, - STATE(884), 1, + STATE(3042), 1, sym_selector_expression, - STATE(2504), 1, + STATE(5059), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(3223), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(694), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(3144), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(696), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62578,7 +86400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62595,71 +86417,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46139] = 26, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + [42460] = 26, + ACTIONS(578), 1, + sym_identifier, + ACTIONS(586), 1, anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(590), 1, + anon_sym_not, + ACTIONS(598), 1, sym_string_start, - ACTIONS(1309), 1, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(2611), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(2613), 1, sym_float, - ACTIONS(1462), 1, - sym_identifier, - ACTIONS(1538), 1, - anon_sym_not, - STATE(1061), 1, + STATE(94), 1, + sym_expression, + STATE(2678), 1, sym_primary_expression, - STATE(1078), 1, + STATE(2837), 1, sym_selector_expression, - STATE(1082), 1, + STATE(2870), 1, sym_call, - STATE(2537), 1, + STATE(5051), 1, sym_dotted_name, - STATE(2583), 1, - sym_expression, - STATE(3063), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(2609), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(3009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(596), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62667,7 +86489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62684,71 +86506,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46254] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [42575] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(1540), 1, - sym_identifier, - STATE(747), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(726), 1, sym_primary_expression, - STATE(888), 1, + STATE(730), 1, + sym_expression, + STATE(1144), 1, sym_selector_expression, - STATE(905), 1, + STATE(1659), 1, sym_call, - STATE(2537), 1, + STATE(5099), 1, sym_dotted_name, - STATE(2565), 1, - sym_expression, - STATE(3096), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(2056), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62756,7 +86578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62773,71 +86595,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46369] = 26, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1018), 1, + [42690] = 26, + ACTIONS(586), 1, anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(598), 1, sym_string_start, - ACTIONS(1309), 1, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(2611), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(2613), 1, sym_float, - ACTIONS(1462), 1, - sym_identifier, - STATE(1061), 1, + STATE(227), 1, + sym_expression, + STATE(2751), 1, sym_primary_expression, - STATE(1078), 1, + STATE(2824), 1, sym_selector_expression, - STATE(1082), 1, + STATE(2870), 1, sym_call, - STATE(2537), 1, + STATE(5115), 1, sym_dotted_name, - STATE(2583), 1, - sym_expression, - STATE(3063), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(2609), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1118), 4, + STATE(3057), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(596), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62845,7 +86667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62862,71 +86684,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46484] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [42805] = 26, + ACTIONS(129), 1, + sym_identifier, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(143), 1, + anon_sym_not, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1879), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2027), 1, + sym_call, + STATE(2043), 1, + sym_expression, + STATE(2204), 1, sym_selector_expression, - STATE(2366), 1, + STATE(5104), 1, sym_dotted_name, - STATE(2472), 1, - sym_expression, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(147), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2236), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62934,7 +86756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -62951,144 +86773,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46599] = 10, - ACTIONS(1347), 1, + [42920] = 26, + ACTIONS(506), 1, + sym_identifier, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(1349), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(1355), 1, - anon_sym_STAR_STAR, - ACTIONS(1357), 1, - anon_sym_QMARK_DOT, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - STATE(952), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1544), 21, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(518), 1, + anon_sym_not, + ACTIONS(520), 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(526), 1, sym_float, - ACTIONS(1542), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [46682] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, - anon_sym_not, - STATE(1335), 1, - sym_primary_expression, - STATE(1388), 1, + STATE(91), 1, sym_expression, - STATE(1414), 1, + STATE(2396), 1, sym_call, - STATE(1475), 1, + STATE(2669), 1, + sym_primary_expression, + STATE(2681), 1, sym_selector_expression, - STATE(2532), 1, + STATE(5056), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(2849), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63096,7 +86845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63113,71 +86862,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46797] = 26, - ACTIONS(13), 1, + [43035] = 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(19), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(2619), 1, + anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(2627), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(2629), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(894), 1, - anon_sym_not, - STATE(1495), 1, + STATE(3775), 1, + sym_expression, + STATE(3807), 1, sym_call, - STATE(1549), 1, + STATE(3841), 1, sym_primary_expression, - STATE(1614), 1, - sym_expression, - STATE(1753), 1, + STATE(4000), 1, sym_selector_expression, - STATE(2463), 1, + STATE(5108), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5996), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(4239), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(2625), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(4229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(574), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63185,7 +86934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63202,71 +86951,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46912] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [43150] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(928), 1, + 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(930), 1, + ACTIONS(776), 1, anon_sym_not, - STATE(1198), 1, + STATE(123), 1, + sym_expression, + STATE(780), 1, + sym_primary_expression, + STATE(1655), 1, sym_selector_expression, - STATE(1414), 1, + STATE(1659), 1, sym_call, - STATE(1989), 1, - sym_primary_expression, - STATE(2537), 1, + STATE(5130), 1, sym_dotted_name, - STATE(2569), 1, - sym_expression, - STATE(3261), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(1980), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63274,7 +87023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63291,71 +87040,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47027] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [43265] = 26, + ACTIONS(586), 1, anon_sym_lambda, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(958), 1, + ACTIONS(598), 1, sym_string_start, - ACTIONS(1275), 1, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(2611), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(2613), 1, sym_float, - STATE(1551), 1, + STATE(2751), 1, sym_primary_expression, - STATE(1561), 1, - sym_call, - STATE(1842), 1, + STATE(2824), 1, sym_selector_expression, - STATE(2377), 1, + STATE(2870), 1, + sym_call, + STATE(4204), 1, sym_expression, - STATE(2527), 1, + STATE(5115), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(2609), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(3057), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(596), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63363,7 +87112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63380,71 +87129,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47142] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, + [43380] = 26, + ACTIONS(416), 1, + anon_sym_LPAREN, + ACTIONS(418), 1, + anon_sym_LBRACK, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(958), 1, + ACTIONS(422), 1, + anon_sym_LBRACE, + ACTIONS(426), 1, + anon_sym_DQUOTE, + ACTIONS(432), 1, + sym_float, + ACTIONS(434), 1, sym_string_start, - ACTIONS(1042), 1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(834), 1, sym_identifier, - ACTIONS(1044), 1, + ACTIONS(840), 1, anon_sym_not, - ACTIONS(1275), 1, + 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(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, + [43495] = 26, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(502), 1, sym_float, - STATE(1561), 1, - sym_call, - STATE(1573), 1, - sym_primary_expression, - STATE(1632), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3593), 1, sym_expression, - STATE(1801), 1, + STATE(3608), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3832), 1, sym_selector_expression, - STATE(2470), 1, + STATE(5122), 1, sym_dotted_name, - STATE(3130), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(4009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63452,7 +87290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63469,71 +87307,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47257] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [43610] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1291), 1, sym_identifier, - STATE(1435), 1, + ACTIONS(1297), 1, + anon_sym_not, + STATE(218), 1, + sym_expression, + STATE(2396), 1, sym_call, - STATE(1477), 1, + STATE(2590), 1, sym_primary_expression, - STATE(1520), 1, + STATE(2738), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5127), 1, sym_dotted_name, - STATE(2564), 1, - sym_expression, - STATE(3198), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1732), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + ACTIONS(522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(2856), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63541,7 +87379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63558,71 +87396,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47372] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [43725] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1291), 1, sym_identifier, - STATE(1435), 1, + ACTIONS(1297), 1, + anon_sym_not, + STATE(2396), 1, sym_call, - STATE(1447), 1, + STATE(2590), 1, sym_primary_expression, - STATE(1520), 1, + STATE(2738), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2575), 1, + STATE(3876), 1, sym_expression, - STATE(3198), 1, + STATE(5127), 1, + sym_dotted_name, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1732), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + ACTIONS(522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(2856), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63630,7 +87468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63647,71 +87485,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47487] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1275), 1, + [43840] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(730), 1, sym_float, - STATE(1551), 1, + 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(3914), 1, sym_primary_expression, - STATE(1561), 1, + STATE(4082), 1, sym_call, - STATE(1842), 1, + STATE(4140), 1, sym_selector_expression, - STATE(2340), 1, - sym_expression, - STATE(2527), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5193), 1, + sym_expression, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63719,7 +87557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63736,71 +87574,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47602] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1275), 1, + [43955] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(730), 1, sym_float, - STATE(1551), 1, + 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(3911), 1, sym_primary_expression, - STATE(1561), 1, + STATE(4082), 1, sym_call, - STATE(1629), 1, - sym_expression, - STATE(1842), 1, + STATE(4140), 1, sym_selector_expression, - STATE(2527), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5172), 1, + sym_expression, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + STATE(4296), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(4275), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63808,7 +87646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63825,71 +87663,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47717] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, + [44070] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(416), 1, + anon_sym_LPAREN, + ACTIONS(418), 1, + anon_sym_LBRACK, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(475), 1, + 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(555), 1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [44185] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1156), 1, - sym_identifier, - ACTIONS(1158), 1, + 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, - STATE(1414), 1, - sym_call, - STATE(1992), 1, + ACTIONS(2631), 1, + sym_identifier, + STATE(778), 1, sym_primary_expression, - STATE(2039), 1, - sym_expression, - STATE(2059), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2494), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5164), 1, + sym_expression, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2066), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63897,7 +87824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -63914,71 +87841,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47832] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(990), 1, + [44300] = 26, + ACTIONS(384), 1, sym_identifier, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(1245), 1, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(398), 1, + anon_sym_not, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(406), 1, sym_float, - STATE(704), 1, + 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(905), 1, + STATE(3438), 1, + sym_expression, + STATE(3460), 1, sym_call, - STATE(907), 1, + STATE(3558), 1, sym_selector_expression, - STATE(1163), 1, - sym_expression, - STATE(2517), 1, + STATE(5136), 1, sym_dotted_name, - STATE(3096), 1, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(3679), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3699), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(3592), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63986,7 +87913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64003,71 +87930,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47947] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [44415] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(1418), 1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1357), 1, sym_identifier, - STATE(1227), 1, + ACTIONS(1363), 1, + anon_sym_not, + STATE(2396), 1, sym_call, - STATE(1229), 1, + STATE(2835), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3023), 1, sym_selector_expression, - STATE(2357), 1, - sym_dotted_name, - STATE(2469), 1, + STATE(4330), 1, sym_expression, - STATE(3180), 1, + STATE(5088), 1, + sym_dotted_name, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(662), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64075,7 +88002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64092,71 +88019,144 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48062] = 26, - ACTIONS(449), 1, + [44530] = 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 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(2518), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(457), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 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, + [44613] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + 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, - STATE(1544), 1, + ACTIONS(2643), 1, + sym_identifier, + STATE(865), 1, sym_primary_expression, - STATE(1560), 1, - sym_expression, - STATE(1660), 1, + STATE(1880), 1, sym_selector_expression, - STATE(1661), 1, + STATE(2027), 1, sym_call, - STATE(2489), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5174), 1, + sym_expression, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64164,7 +88164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64181,71 +88181,235 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48177] = 26, - ACTIONS(449), 1, + [44728] = 12, + 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, + 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, + 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, + anon_sym_import, anon_sym_DOT, - ACTIONS(457), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, anon_sym_lambda, - ACTIONS(463), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(555), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [44815] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, + 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(1427), 1, + STATE(4088), 1, + sym_primary_expression, + STATE(4140), 1, sym_selector_expression, - STATE(2288), 1, - sym_expression, - STATE(2507), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5193), 1, + sym_expression, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + 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, + 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, - ACTIONS(567), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(428), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2536), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64253,7 +88417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64270,72 +88434,142 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48292] = 21, - ACTIONS(1347), 1, + [45045] = 16, + ACTIONS(2633), 1, anon_sym_LPAREN, - ACTIONS(1349), 1, + ACTIONS(2635), 1, anon_sym_LBRACK, - ACTIONS(1355), 1, + ACTIONS(2637), 1, anon_sym_STAR_STAR, - ACTIONS(1357), 1, + ACTIONS(2639), 1, anon_sym_QMARK_DOT, - ACTIONS(1365), 1, - anon_sym_PIPE, - ACTIONS(1367), 1, + ACTIONS(2641), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2651), 1, anon_sym_AMP, - ACTIONS(1369), 1, + ACTIONS(2653), 1, anon_sym_CARET, - ACTIONS(1377), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1452), 1, - anon_sym_not, - ACTIONS(1456), 1, - anon_sym_is, - STATE(952), 1, + STATE(2195), 1, sym_argument_list, - STATE(1109), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1353), 2, + ACTIONS(2645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1361), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1363), 2, + ACTIONS(2647), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1371), 2, + ACTIONS(2649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2655), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1454), 4, + 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, - ACTIONS(1448), 8, - sym__dedent, + 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, + [45140] = 15, + 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(2653), 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(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(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(1343), 25, + 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, @@ -64344,81 +88578,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [48397] = 26, - ACTIONS(409), 1, + [45233] = 14, + 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, + 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(2520), 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(2518), 30, + anon_sym_import, anon_sym_DOT, - ACTIONS(419), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, anon_sym_lambda, - ACTIONS(427), 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(439), 1, - sym_string_start, - ACTIONS(972), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1259), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45324] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(432), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(1236), 1, + STATE(2365), 1, + sym_call, + STATE(2402), 1, sym_selector_expression, - STATE(2429), 1, - sym_expression, - STATE(2454), 1, + STATE(5145), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(428), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2453), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64426,7 +88740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64443,71 +88757,147 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48512] = 26, - ACTIONS(449), 1, + [45439] = 13, + 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, + 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(2520), 17, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2518), 30, + anon_sym_import, anon_sym_DOT, - ACTIONS(457), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, + anon_sym_else, anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 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, + [45528] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(1110), 1, + 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(1112), 1, + ACTIONS(820), 1, anon_sym_not, - STATE(1510), 1, - sym_expression, - STATE(1544), 1, + STATE(1411), 1, sym_primary_expression, - STATE(1660), 1, + STATE(1911), 1, sym_selector_expression, - STATE(1661), 1, + STATE(2027), 1, sym_call, - STATE(2489), 1, + STATE(3339), 1, + sym_expression, + STATE(5035), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64515,7 +88905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64532,71 +88922,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48627] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, + [45643] = 22, + ACTIONS(2495), 1, anon_sym_not, - ACTIONS(439), 1, + ACTIONS(2499), 1, + anon_sym_is, + 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, + 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_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(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_string_start, - ACTIONS(972), 1, + ts_builtin_sym_end, + 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, - ACTIONS(1259), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [45750] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(177), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, + 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(2454), 1, + STATE(1924), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2466), 1, + STATE(5161), 1, sym_expression, - STATE(3180), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(207), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64604,7 +89079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64621,71 +89096,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48742] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [45865] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(432), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(1236), 1, + STATE(2365), 1, + sym_call, + STATE(2402), 1, sym_selector_expression, - STATE(2432), 1, + STATE(3511), 1, sym_expression, - STATE(2454), 1, + STATE(5145), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(428), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2453), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64693,7 +89168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64710,143 +89185,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48857] = 9, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1237), 1, + [45980] = 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(2637), 1, + anon_sym_STAR_STAR, + ACTIONS(2639), 1, anon_sym_QMARK_DOT, - ACTIONS(1293), 1, - anon_sym_and, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(1552), 1, - anon_sym_or, + 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, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 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, + ACTIONS(2645), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2647), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2655), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + 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, - anon_sym_QMARK_LBRACK, + 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(1548), 29, + ACTIONS(2489), 20, 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_rule, anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [48938] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [46087] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(1110), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(181), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(185), 1, anon_sym_not, - STATE(1544), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1064), 1, sym_primary_expression, - STATE(1615), 1, + STATE(1076), 1, sym_expression, - STATE(1660), 1, + STATE(1901), 1, sym_selector_expression, - STATE(1661), 1, + STATE(2027), 1, sym_call, - STATE(2489), 1, + STATE(5065), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64854,7 +89342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64871,71 +89359,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49053] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [46202] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(151), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(1236), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2465), 1, + STATE(2027), 1, + sym_call, + STATE(3340), 1, sym_expression, - STATE(3180), 1, + STATE(5035), 1, + sym_dotted_name, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64943,7 +89431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -64960,71 +89448,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49168] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1275), 1, + [46317] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(406), 1, sym_float, - STATE(1551), 1, - sym_primary_expression, - STATE(1561), 1, + 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(1625), 1, - sym_expression, - STATE(1842), 1, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, sym_selector_expression, - STATE(2527), 1, + STATE(4909), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5011), 1, + sym_expression, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65032,7 +89520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65049,71 +89537,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49283] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [46432] = 26, + ACTIONS(506), 1, + sym_identifier, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(512), 1, + anon_sym_LBRACK, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(518), 1, + anon_sym_not, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, - sym_identifier, - STATE(1495), 1, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + STATE(92), 1, + sym_expression, + STATE(2396), 1, sym_call, - STATE(1539), 1, + STATE(2669), 1, sym_primary_expression, - STATE(1830), 1, + STATE(2681), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5056), 1, sym_dotted_name, - STATE(2579), 1, - sym_expression, - STATE(3186), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(2849), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65121,7 +89609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65138,71 +89626,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49398] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [46547] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1054), 1, + 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(1056), 1, + ACTIONS(1389), 1, anon_sym_not, - STATE(1587), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1661), 1, + STATE(4082), 1, sym_call, - STATE(1786), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2361), 1, + STATE(4967), 1, sym_expression, - STATE(2531), 1, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65210,7 +89698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65227,71 +89715,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49513] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [46662] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(996), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(814), 1, sym_identifier, - ACTIONS(998), 1, + ACTIONS(820), 1, anon_sym_not, - STATE(1667), 1, + STATE(1411), 1, sym_primary_expression, - STATE(1717), 1, - sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2468), 1, + STATE(2027), 1, + sym_call, + STATE(3295), 1, + sym_expression, + STATE(5035), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65299,7 +89787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65316,71 +89804,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49628] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [46777] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1667), 1, + ACTIONS(2663), 1, + sym_identifier, + STATE(900), 1, sym_primary_expression, - STATE(1779), 1, - sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2468), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65388,7 +89876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65405,71 +89893,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49743] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [46892] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(418), 1, + anon_sym_LBRACK, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(424), 1, + anon_sym_not, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(894), 1, - anon_sym_not, - STATE(1495), 1, - sym_call, - STATE(1549), 1, - sym_primary_expression, - STATE(1610), 1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + STATE(106), 1, sym_expression, - STATE(1753), 1, + STATE(2314), 1, + sym_primary_expression, + STATE(2338), 1, sym_selector_expression, - STATE(2463), 1, + STATE(2365), 1, + sym_call, + STATE(5063), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(428), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(2536), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65477,7 +89965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65494,71 +89982,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49858] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [47007] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(2663), 1, sym_identifier, - STATE(1789), 1, + ACTIONS(2665), 1, + anon_sym_not, + STATE(900), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2524), 1, - sym_expression, - STATE(2529), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65566,7 +90054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65583,71 +90071,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49973] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, + [47122] = 26, + ACTIONS(564), 1, anon_sym_lambda, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(924), 1, + ACTIONS(576), 1, sym_string_start, - ACTIONS(1245), 1, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(2621), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(2627), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(2629), 1, sym_float, - STATE(568), 1, + STATE(3807), 1, + sym_call, + STATE(3825), 1, sym_primary_expression, - STATE(651), 1, - sym_expression, - STATE(879), 1, + STATE(4004), 1, sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2479), 1, + STATE(4867), 1, + sym_expression, + STATE(5150), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5996), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - STATE(929), 2, + STATE(4239), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + ACTIONS(2625), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(4208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(574), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65655,7 +90143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65672,71 +90160,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50088] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [47237] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(1054), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(764), 1, sym_identifier, - ACTIONS(1056), 1, + ACTIONS(770), 1, anon_sym_not, - STATE(1168), 1, - sym_expression, - STATE(1587), 1, + STATE(1426), 1, sym_primary_expression, - STATE(1661), 1, + STATE(1659), 1, sym_call, - STATE(1786), 1, + STATE(1916), 1, sym_selector_expression, - STATE(2531), 1, + STATE(3293), 1, + sym_expression, + STATE(5053), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(2194), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65744,7 +90232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65761,71 +90249,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50203] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(1245), 1, + [47352] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(526), 1, sym_float, - STATE(397), 1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1357), 1, + sym_identifier, + ACTIONS(1363), 1, + anon_sym_not, + STATE(234), 1, sym_expression, - STATE(568), 1, + STATE(2396), 1, + sym_call, + STATE(2835), 1, sym_primary_expression, - STATE(879), 1, + STATE(3023), 1, sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2479), 1, + STATE(5088), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(929), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + ACTIONS(662), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65833,7 +90321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65850,71 +90338,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50318] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [47467] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(121), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(1080), 1, sym_primary_expression, - STATE(1601), 1, + STATE(1094), 1, + sym_expression, + STATE(1659), 1, + sym_call, + STATE(1897), 1, sym_selector_expression, - STATE(2464), 1, + STATE(5071), 1, sym_dotted_name, - STATE(2481), 1, - sym_expression, - STATE(3198), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65922,7 +90410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -65939,138 +90427,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50433] = 4, - ACTIONS(1554), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1337), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(103), 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(109), 1, sym_float, - ACTIONS(1335), 34, - anon_sym_import, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(195), 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(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_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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1950), 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, - [50504] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(1245), 1, + 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, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(109), 1, sym_float, - STATE(330), 1, - sym_expression, - STATE(568), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2663), 1, + sym_identifier, + STATE(907), 1, sym_primary_expression, - STATE(879), 1, + STATE(1317), 1, sym_selector_expression, - STATE(905), 1, + STATE(1659), 1, sym_call, - STATE(2479), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66078,7 +90588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66095,143 +90605,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50619] = 9, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1301), 1, - anon_sym_and, - ACTIONS(1303), 1, - anon_sym_PLUS, - ACTIONS(1556), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 24, + [47812] = 26, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(598), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(610), 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, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2607), 1, + anon_sym_QMARK_DOT, + ACTIONS(2611), 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(2613), 1, sym_float, - ACTIONS(1548), 29, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [50700] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, + ACTIONS(2667), 1, sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + STATE(2753), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(2804), 1, sym_selector_expression, - STATE(2482), 1, - sym_expression, - STATE(2507), 1, + STATE(2870), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5158), 1, + sym_expression, + STATE(5934), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(2609), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2989), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(596), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66239,7 +90677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66256,71 +90694,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50815] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [47927] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(962), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(964), 1, + ACTIONS(1369), 1, anon_sym_not, - STATE(1335), 1, + STATE(3761), 1, sym_primary_expression, - STATE(1375), 1, - sym_expression, - STATE(1414), 1, - sym_call, - STATE(1475), 1, + STATE(3981), 1, sym_selector_expression, - STATE(2532), 1, + STATE(4111), 1, + sym_call, + STATE(4906), 1, + sym_expression, + STATE(4995), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(622), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(4187), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66328,7 +90766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66345,71 +90783,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50930] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [48042] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - STATE(1354), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2663), 1, + sym_identifier, + STATE(910), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2296), 1, - sym_expression, - STATE(2507), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66417,7 +90855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66434,71 +90872,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51045] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [48157] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - STATE(1176), 1, - sym_expression, - STATE(1354), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2663), 1, + sym_identifier, + STATE(911), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2507), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66506,7 +90944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66523,71 +90961,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51160] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [48272] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(1054), 1, - sym_identifier, - ACTIONS(1056), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1176), 1, - sym_expression, - STATE(1587), 1, + ACTIONS(2663), 1, + sym_identifier, + STATE(912), 1, sym_primary_expression, - STATE(1661), 1, - sym_call, - STATE(1786), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2531), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66595,7 +91033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66612,71 +91050,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51275] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [48387] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(101), 1, + anon_sym_not, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(5), 1, + sym_expression, + STATE(726), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1144), 1, sym_selector_expression, - STATE(2331), 1, + STATE(1659), 1, + sym_call, + STATE(5099), 1, sym_dotted_name, - STATE(2500), 1, - sym_expression, - STATE(3180), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2056), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66684,7 +91122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66701,71 +91139,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51390] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [48502] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(1054), 1, - sym_identifier, - ACTIONS(1056), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1587), 1, + ACTIONS(2663), 1, + sym_identifier, + STATE(914), 1, sym_primary_expression, - STATE(1661), 1, - sym_call, - STATE(1786), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2339), 1, - sym_expression, - STATE(2531), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66773,7 +91211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66790,71 +91228,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51505] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [48617] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_not, - STATE(1544), 1, - sym_primary_expression, - STATE(1564), 1, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(3859), 1, sym_expression, - STATE(1660), 1, - sym_selector_expression, - STATE(1661), 1, + STATE(3872), 1, + sym_primary_expression, + STATE(4082), 1, sym_call, - STATE(2489), 1, + STATE(4242), 1, + sym_selector_expression, + STATE(5026), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(4249), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66862,7 +91300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -66879,139 +91317,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51620] = 5, - ACTIONS(1558), 1, - anon_sym_PIPE, - STATE(660), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1385), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [48732] = 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_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_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(1383), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [51693] = 26, - ACTIONS(449), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, + ACTIONS(2663), 1, sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + STATE(916), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2486), 1, - sym_expression, - STATE(2507), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67019,7 +91389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67036,138 +91406,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51808] = 4, - ACTIONS(1561), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1392), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [48847] = 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, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(77), 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(83), 1, sym_float, - ACTIONS(1390), 34, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [51879] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(794), 1, + sym_identifier, + ACTIONS(798), 1, anon_sym_not, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, + STATE(121), 1, + sym_expression, + STATE(779), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1533), 1, sym_call, - STATE(1642), 1, + STATE(1614), 1, sym_selector_expression, - STATE(2485), 1, - sym_expression, - STATE(2552), 1, + STATE(5082), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2067), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(2073), 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(1973), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67175,7 +91478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67192,71 +91495,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51994] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [48962] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(1054), 1, + 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(1056), 1, + ACTIONS(1389), 1, anon_sym_not, - STATE(1587), 1, + STATE(4056), 1, sym_primary_expression, - STATE(1661), 1, + STATE(4082), 1, sym_call, - STATE(1786), 1, + STATE(4214), 1, sym_selector_expression, - STATE(2358), 1, + STATE(4982), 1, sym_expression, - STATE(2531), 1, + STATE(5012), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67264,7 +91567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67281,71 +91584,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52109] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [49077] = 22, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(2409), 1, + anon_sym_LBRACK, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(2437), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2495), 1, anon_sym_not, - ACTIONS(49), 1, + 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, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(53), 1, + anon_sym_TILDE, sym_float, - ACTIONS(55), 1, + 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, sym_string_start, - ACTIONS(180), 1, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - STATE(1494), 1, + 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(95), 1, + sym_expression, + STATE(2678), 1, sym_primary_expression, - STATE(1495), 1, - sym_call, - STATE(1642), 1, + STATE(2837), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2552), 1, + STATE(2870), 1, + sym_call, + STATE(5051), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3056), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2609), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(3009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(596), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67353,7 +91741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67370,71 +91758,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52224] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [49299] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(1418), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(1309), 1, + anon_sym_not, + STATE(3716), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, sym_selector_expression, - STATE(2324), 1, - sym_dotted_name, - STATE(2503), 1, + STATE(4949), 1, sym_expression, - STATE(3180), 1, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67442,7 +91830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67459,71 +91847,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52339] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [49414] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(109), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2663), 1, + sym_identifier, + STATE(919), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2389), 1, - sym_expression, - STATE(2454), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5177), 1, + sym_expression, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(1950), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67531,7 +91919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67548,71 +91936,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52454] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + [49529] = 26, + ACTIONS(448), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(464), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(470), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, + anon_sym_DOT, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + STATE(93), 1, + sym_expression, + STATE(2672), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2680), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2707), 1, + sym_call, + STATE(5072), 1, sym_dotted_name, - STATE(2506), 1, - sym_expression, - STATE(3180), 1, + STATE(5958), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(466), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2839), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(468), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67620,7 +92008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67637,71 +92025,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52569] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(1245), 1, + [49644] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(151), 1, sym_float, - STATE(411), 1, + 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(8), 1, sym_expression, - STATE(568), 1, + STATE(1064), 1, sym_primary_expression, - STATE(879), 1, + STATE(1901), 1, sym_selector_expression, - STATE(905), 1, + STATE(2027), 1, sym_call, - STATE(2479), 1, + STATE(5065), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(2168), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67709,7 +92097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67726,71 +92114,217 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52684] = 26, - ACTIONS(409), 1, + [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, - ACTIONS(419), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(427), 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(439), 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, + [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, - ACTIONS(972), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, - ACTIONS(1259), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [49925] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(526), 1, sym_float, - STATE(1227), 1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 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(1229), 1, + STATE(2560), 1, sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2381), 1, - sym_expression, - STATE(2454), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5167), 1, + sym_expression, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2618), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67798,7 +92332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67815,71 +92349,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52799] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + [50040] = 26, + ACTIONS(530), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(550), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + STATE(3588), 1, + sym_expression, + STATE(3717), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3719), 1, + sym_call, + STATE(3835), 1, sym_selector_expression, - STATE(2454), 1, + STATE(5121), 1, sym_dotted_name, - STATE(2508), 1, - sym_expression, - STATE(3180), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(4019), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67887,7 +92421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -67904,29 +92438,40 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52914] = 5, - ACTIONS(1303), 1, - anon_sym_PLUS, + [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, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 25, + 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_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -67937,32 +92482,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(1428), 32, + ACTIONS(2518), 29, 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_rule, anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -67972,160 +92513,228 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [52987] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1275), 1, + [50242] = 16, + ACTIONS(2407), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(2409), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, - anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - ACTIONS(1285), 1, - anon_sym_DQUOTE, - ACTIONS(1287), 1, - sym_float, - STATE(1551), 1, - sym_primary_expression, - STATE(1561), 1, - sym_call, - STATE(1842), 1, - sym_selector_expression, - STATE(2378), 1, - sym_expression, - STATE(2527), 1, - sym_dotted_name, - STATE(3130), 1, - sym_quant_op, + 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, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1283), 3, + 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, - ACTIONS(27), 4, + 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, - STATE(1913), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(956), 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(1861), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1862), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [53102] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, + [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, - ACTIONS(910), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(914), 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(924), 1, - sym_string_start, - ACTIONS(1245), 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, + [50430] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(177), 1, sym_float, - STATE(568), 1, - sym_primary_expression, - STATE(696), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_not, + STATE(126), 1, sym_expression, - STATE(879), 1, + STATE(1464), 1, + sym_primary_expression, + STATE(2035), 1, sym_selector_expression, - STATE(905), 1, + STATE(2072), 1, sym_call, - STATE(2479), 1, + STATE(5083), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - STATE(929), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(2210), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68133,7 +92742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68150,71 +92759,148 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53217] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, + [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, - ACTIONS(910), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(914), 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(924), 1, - sym_string_start, - ACTIONS(1245), 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, + [50636] = 26, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(169), 1, + anon_sym_not, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(177), 1, sym_float, - STATE(568), 1, - sym_primary_expression, - STATE(734), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(11), 1, sym_expression, - STATE(879), 1, + STATE(1125), 1, + sym_primary_expression, + STATE(1878), 1, sym_selector_expression, - STATE(905), 1, + STATE(2072), 1, sym_call, - STATE(2479), 1, + STATE(5096), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - STATE(929), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(2154), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68222,7 +92908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68239,71 +92925,147 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53332] = 26, - ACTIONS(449), 1, + [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, - ACTIONS(457), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 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, + [50840] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1385), 1, sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1547), 1, + ACTIONS(1389), 1, + anon_sym_not, + STATE(4056), 1, sym_primary_expression, - STATE(1661), 1, + STATE(4082), 1, sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2569), 1, + STATE(4214), 1, + sym_selector_expression, + STATE(4987), 1, sym_expression, - STATE(3261), 1, + STATE(5012), 1, + sym_dotted_name, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(4297), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68311,7 +93073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68328,71 +93090,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53447] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [50955] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(764), 1, sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1546), 1, + ACTIONS(770), 1, + anon_sym_not, + STATE(1426), 1, sym_primary_expression, - STATE(1661), 1, + STATE(1659), 1, sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2567), 1, + STATE(1916), 1, + sym_selector_expression, + STATE(3309), 1, sym_expression, - STATE(3261), 1, + STATE(5053), 1, + sym_dotted_name, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2194), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68400,7 +93162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68417,71 +93179,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53562] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, + [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(439), 1, + 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, - ACTIONS(972), 1, + 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, - ACTIONS(1259), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [51177] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(464), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(470), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, + anon_sym_DOT, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_not, + STATE(221), 1, + sym_expression, + STATE(2538), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2706), 1, sym_selector_expression, - STATE(2433), 1, - sym_expression, - STATE(2454), 1, + STATE(2707), 1, + sym_call, + STATE(5068), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5958), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(466), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2838), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(468), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68489,7 +93336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68506,138 +93353,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53677] = 4, - ACTIONS(1563), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1412), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [51292] = 22, + ACTIONS(2407), 1, anon_sym_LPAREN, + ACTIONS(2409), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + 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, - anon_sym_TILDE, + 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, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1410), 34, - anon_sym_import, + ACTIONS(2365), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, - anon_sym_EQ, + 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_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [53748] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [51399] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(121), 1, sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1528), 1, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(1078), 1, + sym_expression, + STATE(1080), 1, sym_primary_expression, - STATE(1661), 1, + STATE(1659), 1, sym_call, - STATE(2537), 1, + STATE(1897), 1, + sym_selector_expression, + STATE(5071), 1, sym_dotted_name, - STATE(2567), 1, - sym_expression, - STATE(3261), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68645,7 +93510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68662,71 +93527,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53863] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [51514] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(764), 1, sym_identifier, - STATE(1789), 1, + ACTIONS(770), 1, + anon_sym_not, + STATE(1426), 1, sym_primary_expression, - STATE(1791), 1, + STATE(1659), 1, sym_call, - STATE(1889), 1, + STATE(1916), 1, sym_selector_expression, - STATE(2448), 1, + STATE(3321), 1, sym_expression, - STATE(2529), 1, + STATE(5053), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2194), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68734,7 +93599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68751,71 +93616,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53978] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [51629] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(930), 1, + 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(1500), 1, + ACTIONS(2687), 1, sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1527), 1, + STATE(2253), 1, sym_primary_expression, - STATE(1661), 1, + STATE(2326), 1, + sym_selector_expression, + STATE(2365), 1, sym_call, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2567), 1, + STATE(5179), 1, sym_expression, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(428), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68823,7 +93688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68840,71 +93705,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54093] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [51744] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(464), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(470), 1, sym_float, - STATE(1168), 1, - sym_expression, - STATE(1354), 1, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, + anon_sym_DOT, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_not, + STATE(2538), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(2706), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2707), 1, + sym_call, + STATE(3883), 1, + sym_expression, + STATE(5068), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5958), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2832), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(466), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2838), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(468), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2820), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68912,7 +93777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -68929,71 +93794,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54208] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [51859] = 26, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1526), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + STATE(2), 1, + sym_expression, + STATE(724), 1, sym_primary_expression, - STATE(1661), 1, + STATE(1129), 1, + sym_selector_expression, + STATE(1533), 1, sym_call, - STATE(2537), 1, + STATE(5044), 1, sym_dotted_name, - STATE(2567), 1, - sym_expression, - STATE(3261), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2086), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69001,7 +93866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69018,71 +93883,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54323] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [51974] = 26, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1525), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + STATE(4), 1, + sym_expression, + STATE(724), 1, sym_primary_expression, - STATE(1661), 1, + STATE(1129), 1, + sym_selector_expression, + STATE(1533), 1, sym_call, - STATE(2537), 1, + STATE(5044), 1, sym_dotted_name, - STATE(2567), 1, - sym_expression, - STATE(3261), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2067), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2086), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69090,7 +93955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69107,71 +93972,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54438] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [52089] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(764), 1, sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1524), 1, + ACTIONS(770), 1, + anon_sym_not, + STATE(1426), 1, sym_primary_expression, - STATE(1661), 1, + STATE(1659), 1, sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2567), 1, + STATE(1916), 1, + sym_selector_expression, + STATE(3336), 1, sym_expression, - STATE(3261), 1, + STATE(5053), 1, + sym_dotted_name, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2194), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69179,7 +94044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69196,71 +94061,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54553] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [52204] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(930), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1273), 1, anon_sym_not, - ACTIONS(1500), 1, + ACTIONS(1299), 1, sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1522), 1, + STATE(3657), 1, sym_primary_expression, - STATE(1661), 1, + STATE(3663), 1, sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2567), 1, + STATE(3781), 1, + sym_selector_expression, + STATE(5084), 1, sym_expression, - STATE(3261), 1, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3939), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69268,7 +94133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69285,71 +94150,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54668] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [52319] = 26, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(169), 1, + anon_sym_not, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(177), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1521), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(7), 1, + sym_expression, + STATE(1125), 1, sym_primary_expression, - STATE(1661), 1, + STATE(1878), 1, + sym_selector_expression, + STATE(2072), 1, sym_call, - STATE(2537), 1, + STATE(5096), 1, sym_dotted_name, - STATE(2567), 1, - sym_expression, - STATE(3261), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2154), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69357,7 +94222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69374,71 +94239,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54783] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [52434] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + 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, - STATE(1544), 1, - sym_primary_expression, - STATE(1565), 1, - sym_expression, - STATE(1660), 1, + ACTIONS(2689), 1, + sym_identifier, + STATE(2326), 1, sym_selector_expression, - STATE(1661), 1, + STATE(2365), 1, sym_call, - STATE(2489), 1, + STATE(3008), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5181), 1, + sym_expression, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69446,7 +94311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69463,71 +94328,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54898] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [52549] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(273), 1, sym_float, - ACTIONS(1054), 1, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(842), 1, sym_identifier, - ACTIONS(1056), 1, + ACTIONS(848), 1, anon_sym_not, - STATE(1587), 1, + STATE(125), 1, + sym_expression, + STATE(2399), 1, sym_primary_expression, - STATE(1661), 1, + STATE(2407), 1, sym_call, - STATE(1786), 1, + STATE(2505), 1, sym_selector_expression, - STATE(2362), 1, - sym_expression, - STATE(2531), 1, + STATE(5000), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(2743), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69535,7 +94400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69552,71 +94417,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55013] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [52664] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(1054), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(2689), 1, sym_identifier, - ACTIONS(1056), 1, + ACTIONS(2691), 1, anon_sym_not, - STATE(1587), 1, - sym_primary_expression, - STATE(1661), 1, - sym_call, - STATE(1786), 1, + STATE(2326), 1, sym_selector_expression, - STATE(2354), 1, - sym_expression, - STATE(2531), 1, + STATE(2365), 1, + sym_call, + STATE(3008), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5181), 1, + sym_expression, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1891), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69624,7 +94489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69641,71 +94506,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55128] = 26, - ACTIONS(449), 1, + [52779] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1500), 1, - sym_identifier, - ACTIONS(1565), 1, - anon_sym_not, - STATE(1198), 1, - sym_selector_expression, - STATE(1507), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + STATE(3862), 1, sym_primary_expression, - STATE(1661), 1, + STATE(3874), 1, sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2567), 1, + STATE(4139), 1, + sym_selector_expression, + STATE(4960), 1, sym_expression, - STATE(3261), 1, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(4382), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(4378), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69713,7 +94578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69730,71 +94595,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55243] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [52894] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(692), 1, + 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(1435), 1, + STATE(2326), 1, + sym_selector_expression, + STATE(2365), 1, sym_call, - STATE(1488), 1, + STATE(3020), 1, sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2464), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2555), 1, + STATE(5181), 1, sym_expression, - STATE(3198), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69802,7 +94667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69819,71 +94684,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55358] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [53009] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(432), 1, sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + 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(2507), 1, + STATE(2365), 1, + sym_call, + STATE(3052), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(2556), 1, + STATE(5181), 1, sym_expression, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69891,7 +94756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69908,71 +94773,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55473] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [53124] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(642), 1, + anon_sym_not, + ACTIONS(644), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(650), 1, sym_float, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1500), 1, - sym_identifier, - STATE(1198), 1, - sym_selector_expression, - STATE(1507), 1, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(742), 1, + anon_sym_QMARK_DOT, + STATE(107), 1, + sym_expression, + STATE(2793), 1, sym_primary_expression, - STATE(1661), 1, + STATE(3027), 1, sym_call, - STATE(2537), 1, + STATE(3040), 1, + sym_selector_expression, + STATE(5079), 1, sym_dotted_name, - STATE(2567), 1, - sym_expression, - STATE(3261), 1, + STATE(5965), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + ACTIONS(646), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3169), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(648), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69980,7 +94845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -69997,145 +94862,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55588] = 11, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1301), 1, - anon_sym_and, - ACTIONS(1303), 1, - anon_sym_PLUS, - ACTIONS(1556), 1, - anon_sym_or, - ACTIONS(1571), 1, - anon_sym_as, - ACTIONS(1573), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 24, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [53239] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(426), 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(432), 1, sym_float, - ACTIONS(1569), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [55673] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, + ACTIONS(1395), 1, anon_sym_not, - STATE(1335), 1, - sym_primary_expression, - STATE(1350), 1, - sym_expression, - STATE(1414), 1, - sym_call, - STATE(1475), 1, + ACTIONS(2689), 1, + sym_identifier, + STATE(2326), 1, sym_selector_expression, - STATE(2532), 1, + STATE(2365), 1, + sym_call, + STATE(3053), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5181), 1, + sym_expression, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70143,7 +94934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70160,71 +94951,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55788] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [53354] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(692), 1, + 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(1435), 1, + STATE(2326), 1, + sym_selector_expression, + STATE(2365), 1, sym_call, - STATE(1488), 1, + STATE(3061), 1, sym_primary_expression, - STATE(1601), 1, - sym_selector_expression, - STATE(2464), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2467), 1, + STATE(5181), 1, sym_expression, - STATE(3198), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70232,7 +95023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70249,71 +95040,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55903] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [53469] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, + 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, - STATE(1198), 1, + ACTIONS(2689), 1, + sym_identifier, + STATE(2326), 1, sym_selector_expression, - STATE(1414), 1, + STATE(2365), 1, sym_call, - STATE(2034), 1, + STATE(3088), 1, sym_primary_expression, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2577), 1, + STATE(5181), 1, sym_expression, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70321,7 +95112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70338,71 +95129,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56018] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [53584] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(928), 1, - sym_identifier, - ACTIONS(930), 1, + 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, - STATE(1198), 1, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, sym_selector_expression, - STATE(1414), 1, - sym_call, - STATE(2034), 1, + STATE(3744), 1, sym_primary_expression, - STATE(2537), 1, + STATE(4111), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2562), 1, + STATE(5191), 1, sym_expression, - STATE(3261), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1408), 3, + ACTIONS(622), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1235), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70410,7 +95201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70427,71 +95218,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56133] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [53699] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(716), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, - sym_identifier, - STATE(1495), 1, - sym_call, - STATE(1543), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(3872), 1, sym_primary_expression, - STATE(1830), 1, + STATE(3972), 1, + sym_expression, + STATE(4082), 1, + sym_call, + STATE(4242), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5026), 1, sym_dotted_name, - STATE(2579), 1, - sym_expression, - STATE(3186), 1, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(4297), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(4249), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70499,7 +95290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70516,71 +95307,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56248] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [53814] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(418), 1, + anon_sym_LBRACK, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1464), 1, - sym_identifier, - ACTIONS(1575), 1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1495), 1, + ACTIONS(2689), 1, + sym_identifier, + STATE(2326), 1, + sym_selector_expression, + STATE(2365), 1, sym_call, - STATE(1519), 1, + STATE(3038), 1, sym_primary_expression, - STATE(1830), 1, - sym_selector_expression, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2579), 1, + STATE(5181), 1, sym_expression, - STATE(3186), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70588,7 +95379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70605,71 +95396,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56363] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [53929] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(998), 1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1667), 1, - sym_primary_expression, - STATE(1702), 1, - sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, + ACTIONS(2689), 1, + sym_identifier, + STATE(2326), 1, sym_selector_expression, - STATE(2468), 1, + STATE(2365), 1, + sym_call, + STATE(3066), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5181), 1, + sym_expression, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70677,7 +95468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70694,155 +95485,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56478] = 21, - ACTIONS(1502), 1, + [54044] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, - anon_sym_QMARK_DOT, - ACTIONS(1514), 1, - anon_sym_not, - ACTIONS(1520), 1, - anon_sym_PIPE, - ACTIONS(1522), 1, - anon_sym_AMP, - ACTIONS(1524), 1, - anon_sym_CARET, - ACTIONS(1530), 1, - anon_sym_is, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(1132), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1508), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1516), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1518), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1526), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1506), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 8, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(426), 1, anon_sym_DQUOTE, - anon_sym_TILDE, + ACTIONS(432), 1, sym_float, - ACTIONS(1343), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [56583] = 26, - ACTIONS(449), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, + ACTIONS(2689), 1, sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(2326), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2365), 1, + sym_call, + STATE(3001), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(2522), 1, + STATE(5181), 1, sym_expression, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2621), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70850,7 +95557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70867,71 +95574,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56698] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [54159] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(718), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(720), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(724), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(730), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(732), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1385), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1445), 1, + ACTIONS(1389), 1, + anon_sym_not, + STATE(4056), 1, sym_primary_expression, - STATE(1520), 1, + STATE(4082), 1, + sym_call, + STATE(4214), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2575), 1, + STATE(5004), 1, sym_expression, - STATE(3198), 1, + STATE(5012), 1, + sym_dotted_name, + STATE(6132), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1732), 2, + STATE(4296), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + STATE(4297), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(726), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(4299), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(728), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4268), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70939,7 +95646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(4260), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -70956,71 +95663,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56813] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [54274] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(702), 1, sym_identifier, - STATE(1435), 1, + ACTIONS(706), 1, + anon_sym_not, + STATE(2365), 1, sym_call, - STATE(1443), 1, + STATE(2973), 1, + sym_expression, + STATE(3010), 1, sym_primary_expression, - STATE(1520), 1, + STATE(3224), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5095), 1, sym_dotted_name, - STATE(2575), 1, - sym_expression, - STATE(3198), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - STATE(1732), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(3233), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71028,7 +95735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71045,14 +95752,14 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56928] = 26, + [54389] = 26, ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, ACTIONS(43), 1, anon_sym_QMARK_DOT, @@ -71062,43 +95769,43 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(55), 1, sym_string_start, - ACTIONS(180), 1, + ACTIONS(219), 1, anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, + ACTIONS(664), 1, sym_identifier, - STATE(1495), 1, + ACTIONS(670), 1, + anon_sym_not, + STATE(3874), 1, sym_call, - STATE(1538), 1, + STATE(4043), 1, sym_primary_expression, - STATE(1830), 1, + STATE(4062), 1, + sym_expression, + STATE(4224), 1, sym_selector_expression, - STATE(2537), 1, + STATE(4990), 1, sym_dotted_name, - STATE(2579), 1, - sym_expression, - STATE(3186), 1, + STATE(6288), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(4382), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(4390), 2, sym_binary_operator, sym_subscript, ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(4339), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -71109,7 +95816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71117,7 +95824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71134,71 +95841,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57043] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [54504] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(177), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(930), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(2695), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1442), 1, + STATE(993), 1, sym_primary_expression, - STATE(1520), 1, + STATE(1899), 1, sym_selector_expression, - STATE(2537), 1, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2575), 1, + STATE(5202), 1, sym_expression, - STATE(3198), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1732), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71206,7 +95913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71223,71 +95930,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57158] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [54619] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(536), 1, + anon_sym_LBRACK, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - STATE(1495), 1, - sym_call, - STATE(1537), 1, + ACTIONS(1309), 1, + anon_sym_not, + STATE(3716), 1, sym_primary_expression, - STATE(1830), 1, + STATE(3719), 1, + sym_call, + STATE(3727), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2579), 1, + STATE(5073), 1, sym_expression, - STATE(3186), 1, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71295,7 +96002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71312,71 +96019,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57273] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [54734] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(512), 1, + anon_sym_LBRACK, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1357), 1, sym_identifier, - STATE(1495), 1, + ACTIONS(1363), 1, + anon_sym_not, + STATE(2396), 1, sym_call, - STATE(1536), 1, + STATE(2835), 1, sym_primary_expression, - STATE(1830), 1, + STATE(3023), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2579), 1, + STATE(4358), 1, sym_expression, - STATE(3186), 1, + STATE(5088), 1, + sym_dotted_name, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(662), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71384,7 +96091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71401,160 +96108,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57388] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [54849] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(644), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(650), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(652), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(742), 1, + anon_sym_QMARK_DOT, + ACTIONS(1371), 1, sym_identifier, - STATE(1418), 1, + ACTIONS(1377), 1, + anon_sym_not, + STATE(237), 1, + sym_expression, + STATE(2840), 1, sym_primary_expression, - STATE(1435), 1, + STATE(3027), 1, sym_call, - STATE(1520), 1, + STATE(3028), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5014), 1, sym_dotted_name, - STATE(2575), 1, - sym_expression, - STATE(3198), 1, + STATE(5965), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1732), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1805), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(543), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1747), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [57503] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, - sym_identifier, - STATE(1495), 1, - sym_call, - STATE(1535), 1, - sym_primary_expression, - STATE(1830), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2579), 1, - sym_expression, - STATE(3186), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1272), 2, + STATE(3211), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(47), 3, + ACTIONS(646), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(648), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71562,7 +96180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71579,138 +96197,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57618] = 4, - STATE(848), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1434), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [54964] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 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(1432), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(514), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [57689] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1464), 1, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1357), 1, sym_identifier, - STATE(1495), 1, + ACTIONS(1363), 1, + anon_sym_not, + STATE(2396), 1, sym_call, - STATE(1534), 1, + STATE(2835), 1, sym_primary_expression, - STATE(1830), 1, + STATE(3023), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2579), 1, + STATE(4363), 1, sym_expression, - STATE(3186), 1, + STATE(5088), 1, + sym_dotted_name, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(662), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71718,7 +96269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71735,71 +96286,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57804] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [55079] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(273), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(850), 1, sym_identifier, - STATE(1426), 1, + ACTIONS(854), 1, + anon_sym_not, + STATE(140), 1, + sym_expression, + STATE(2313), 1, sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1520), 1, + STATE(2328), 1, sym_selector_expression, - STATE(2537), 1, + STATE(2407), 1, + sym_call, + STATE(5009), 1, sym_dotted_name, - STATE(2575), 1, - sym_expression, - STATE(3198), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - STATE(1732), 2, + STATE(2458), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + ACTIONS(269), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(2543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71807,7 +96358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71824,71 +96375,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57919] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [55194] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(514), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(526), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(528), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1357), 1, sym_identifier, - STATE(1435), 1, + ACTIONS(1363), 1, + anon_sym_not, + STATE(2396), 1, sym_call, - STATE(1441), 1, + STATE(2835), 1, sym_primary_expression, - STATE(1520), 1, + STATE(3023), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2575), 1, + STATE(4369), 1, sym_expression, - STATE(3198), 1, + STATE(5088), 1, + sym_dotted_name, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - STATE(1732), 2, + STATE(2588), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + ACTIONS(662), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(3222), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71896,7 +96447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -71913,71 +96464,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58034] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [55309] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(464), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(470), 1, sym_float, - ACTIONS(1418), 1, + 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, sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + STATE(2535), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2677), 1, sym_selector_expression, - STATE(2342), 1, + STATE(2707), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2447), 1, + STATE(5212), 1, sym_expression, - STATE(3180), 1, + STATE(5958), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2826), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(466), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2927), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(468), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71985,7 +96536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2819), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72002,71 +96553,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58149] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [55424] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(644), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(650), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(652), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(742), 1, + anon_sym_QMARK_DOT, + ACTIONS(1371), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1481), 1, + ACTIONS(1377), 1, + anon_sym_not, + STATE(2840), 1, sym_primary_expression, - STATE(1520), 1, + STATE(3027), 1, + sym_call, + STATE(3028), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2575), 1, + STATE(4255), 1, sym_expression, - STATE(3198), 1, + STATE(5014), 1, + sym_dotted_name, + STATE(5965), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1732), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + STATE(3211), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(646), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(3213), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(648), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3207), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72074,7 +96625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72091,71 +96642,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58264] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [55539] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(137), 1, + anon_sym_LBRACK, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, - sym_identifier, - ACTIONS(894), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1495), 1, - sym_call, - STATE(1531), 1, - sym_expression, - STATE(1549), 1, + ACTIONS(2643), 1, + sym_identifier, + STATE(870), 1, sym_primary_expression, - STATE(1753), 1, + STATE(1880), 1, sym_selector_expression, - STATE(2463), 1, + STATE(2027), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5174), 1, + sym_expression, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72163,7 +96714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72180,71 +96731,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58379] = 26, - ACTIONS(1086), 1, + [55654] = 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(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, + 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_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(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, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2524), 8, sym_string_start, - ACTIONS(1146), 1, + ts_builtin_sym_end, + 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, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1231), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [55761] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(177), 1, sym_float, - STATE(431), 1, - sym_expression, - STATE(498), 1, + 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(2695), 1, + sym_identifier, + STATE(989), 1, sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(884), 1, + STATE(1899), 1, sym_selector_expression, - STATE(2504), 1, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5202), 1, + sym_expression, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72252,7 +96888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72269,138 +96905,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58494] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1438), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [55876] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(145), 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(151), 1, sym_float, - ACTIONS(1436), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [58565] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(215), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, + ACTIONS(2643), 1, + sym_identifier, + STATE(868), 1, sym_primary_expression, - STATE(1495), 1, - sym_call, - STATE(1642), 1, + STATE(1880), 1, sym_selector_expression, - STATE(2350), 1, - sym_expression, - STATE(2552), 1, + STATE(2027), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5174), 1, + sym_expression, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72408,7 +96977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72425,71 +96994,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58680] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [55991] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1062), 1, - sym_identifier, - ACTIONS(1070), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1432), 1, + ACTIONS(2699), 1, + sym_identifier, + STATE(3678), 1, sym_primary_expression, - STATE(1435), 1, + STATE(3719), 1, sym_call, - STATE(1478), 1, - sym_expression, - STATE(1579), 1, + STATE(3726), 1, sym_selector_expression, - STATE(2455), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5178), 1, + sym_expression, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, - sym_binary_operator, - sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + STATE(3920), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72497,7 +97066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72514,71 +97083,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58795] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(1245), 1, + [56106] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(550), 1, sym_float, - STATE(568), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(2699), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_not, + STATE(3678), 1, sym_primary_expression, - STATE(722), 1, - sym_expression, - STATE(879), 1, - sym_selector_expression, - STATE(905), 1, + STATE(3719), 1, sym_call, - STATE(2479), 1, + STATE(3726), 1, + sym_selector_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5178), 1, + sym_expression, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - STATE(929), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72586,7 +97155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72603,138 +97172,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58910] = 4, - STATE(848), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1442), 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(1440), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [58981] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [56221] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(177), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(2695), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(2703), 1, + anon_sym_not, + STATE(989), 1, sym_primary_expression, - STATE(1601), 1, + STATE(1899), 1, sym_selector_expression, - STATE(2310), 1, - sym_expression, - STATE(2464), 1, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5202), 1, + sym_expression, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72742,7 +97244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72759,71 +97261,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59096] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [56336] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(692), 1, + 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(1435), 1, - sym_call, - STATE(1488), 1, + STATE(866), 1, sym_primary_expression, - STATE(1601), 1, + STATE(1880), 1, sym_selector_expression, - STATE(2299), 1, - sym_expression, - STATE(2464), 1, + STATE(2027), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5174), 1, + sym_expression, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72831,7 +97333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72848,71 +97350,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59211] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1231), 1, + [56451] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(406), 1, sym_float, - STATE(498), 1, - sym_primary_expression, - STATE(742), 1, - sym_expression, - STATE(881), 1, + 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(884), 1, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, sym_selector_expression, - STATE(2504), 1, + STATE(4837), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5010), 1, + sym_expression, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + STATE(3679), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + STATE(3699), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72920,7 +97422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -72937,71 +97439,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59326] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1146), 1, + [56566] = 26, + ACTIONS(155), 1, sym_identifier, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(169), 1, + anon_sym_not, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(177), 1, sym_float, - STATE(472), 1, - sym_expression, - STATE(498), 1, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(1125), 1, sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(884), 1, + STATE(1198), 1, + sym_expression, + STATE(1878), 1, sym_selector_expression, - STATE(2504), 1, + STATE(2072), 1, + sym_call, + STATE(5096), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(2154), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73009,7 +97511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73026,71 +97528,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59441] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [56681] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(550), 1, sym_float, - STATE(1354), 1, + 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(1414), 1, + STATE(3719), 1, sym_call, - STATE(1427), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(2515), 1, + STATE(4784), 1, sym_expression, - STATE(3261), 1, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73098,7 +97600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73115,138 +97617,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59556] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [56796] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(544), 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(550), 1, sym_float, - ACTIONS(1444), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [59627] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(990), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - ACTIONS(992), 1, + ACTIONS(1309), 1, anon_sym_not, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1247), 1, - anon_sym_LBRACK, - ACTIONS(1249), 1, - anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, - anon_sym_DQUOTE, - ACTIONS(1257), 1, - sym_float, - STATE(704), 1, + STATE(3716), 1, sym_primary_expression, - STATE(722), 1, - sym_expression, - STATE(905), 1, + STATE(3719), 1, sym_call, - STATE(907), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2517), 1, + STATE(4785), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3096), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73254,7 +97689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73271,207 +97706,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59742] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 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(1444), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [59813] = 6, - ACTIONS(1301), 1, - anon_sym_and, - ACTIONS(1303), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1333), 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(1331), 31, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [56911] = 26, + ACTIONS(530), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [59888] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(1546), 1, - sym_identifier, - ACTIONS(1577), 1, - anon_sym_not, - STATE(1428), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + STATE(3661), 1, + sym_expression, + STATE(3717), 1, sym_primary_expression, - STATE(1435), 1, + STATE(3719), 1, sym_call, - STATE(1520), 1, + STATE(3835), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5121), 1, sym_dotted_name, - STATE(2575), 1, - sym_expression, - STATE(3198), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1732), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(4019), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73479,7 +97778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73496,71 +97795,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60003] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [57026] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(177), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(930), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(2695), 1, sym_identifier, - STATE(1428), 1, + STATE(992), 1, sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1520), 1, + STATE(1899), 1, sym_selector_expression, - STATE(2537), 1, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2575), 1, + STATE(5202), 1, sym_expression, - STATE(3198), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1732), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73568,7 +97867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73585,71 +97884,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60118] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(990), 1, - sym_identifier, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(1245), 1, + [57141] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(692), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(698), 1, sym_float, - STATE(704), 1, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(736), 1, + anon_sym_DOT, + ACTIONS(738), 1, + anon_sym_QMARK_DOT, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1383), 1, + anon_sym_not, + STATE(239), 1, + sym_expression, + STATE(2879), 1, sym_primary_expression, - STATE(905), 1, + STATE(2993), 1, sym_call, - STATE(907), 1, + STATE(3005), 1, sym_selector_expression, - STATE(1169), 1, - sym_expression, - STATE(2517), 1, + STATE(5067), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - STATE(929), 2, + STATE(3223), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + ACTIONS(694), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(3176), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(696), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73657,7 +97956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73674,71 +97973,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60233] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [57256] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(536), 1, + anon_sym_LBRACK, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2699), 1, + sym_identifier, + STATE(3641), 1, sym_primary_expression, - STATE(1495), 1, + STATE(3719), 1, sym_call, - STATE(1642), 1, + STATE(3726), 1, sym_selector_expression, - STATE(2332), 1, - sym_expression, - STATE(2552), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5178), 1, + sym_expression, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73746,7 +98045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73763,71 +98062,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60348] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [57371] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(1418), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2699), 1, sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + STATE(3640), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3719), 1, + sym_call, + STATE(3726), 1, sym_selector_expression, - STATE(2346), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2487), 1, + STATE(5178), 1, sym_expression, - STATE(3180), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(3920), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73835,7 +98134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -73852,212 +98151,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60463] = 4, - STATE(848), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1337), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [57486] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 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(1335), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(538), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [60534] = 11, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1293), 1, - anon_sym_and, - ACTIONS(1295), 1, - anon_sym_PLUS, - ACTIONS(1552), 1, - anon_sym_or, - ACTIONS(1579), 1, - anon_sym_as, - ACTIONS(1581), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 24, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(540), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(544), 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(550), 1, sym_float, - ACTIONS(1569), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [60619] = 26, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(626), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1494), 1, + ACTIONS(2699), 1, + sym_identifier, + STATE(3636), 1, sym_primary_expression, - STATE(1495), 1, + STATE(3719), 1, sym_call, - STATE(1642), 1, + STATE(3726), 1, sym_selector_expression, - STATE(2449), 1, - sym_expression, - STATE(2552), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5178), 1, + sym_expression, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74065,7 +98223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74082,73 +98240,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60734] = 27, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [57601] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(536), 1, + anon_sym_LBRACK, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1583), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2699), 1, sym_identifier, - STATE(1494), 1, + STATE(3634), 1, sym_primary_expression, - STATE(1495), 1, + STATE(3719), 1, sym_call, - STATE(1997), 1, + STATE(3726), 1, sym_selector_expression, - STATE(2058), 1, - sym_schema_instantiation, - STATE(2430), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2460), 1, + STATE(5178), 1, sym_expression, - STATE(3186), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - STATE(1970), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1967), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74156,8 +98312,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 15, + STATE(3903), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74172,71 +98329,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60851] = 26, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(1146), 1, - sym_identifier, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1231), 1, + [57716] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(550), 1, sym_float, - STATE(442), 1, - sym_expression, - STATE(498), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2699), 1, + sym_identifier, + STATE(3632), 1, sym_primary_expression, - STATE(881), 1, + STATE(3719), 1, sym_call, - STATE(884), 1, + STATE(3726), 1, sym_selector_expression, - STATE(2504), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5178), 1, + sym_expression, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(910), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - STATE(940), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74244,7 +98401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74261,71 +98418,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60966] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [57831] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(550), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2699), 1, + sym_identifier, + STATE(3630), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3719), 1, + sym_call, + STATE(3726), 1, sym_selector_expression, - STATE(2405), 1, - sym_expression, - STATE(2454), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5178), 1, + sym_expression, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(3920), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74333,7 +98490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74350,144 +98507,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61081] = 10, - ACTIONS(1502), 1, + [57946] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, - anon_sym_QMARK_DOT, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1544), 21, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(544), 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(550), 1, sym_float, - ACTIONS(1542), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [61164] = 26, - ACTIONS(409), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + ACTIONS(2699), 1, sym_identifier, - ACTIONS(1259), 1, - anon_sym_LPAREN, - ACTIONS(1261), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + STATE(3629), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3719), 1, + sym_call, + STATE(3726), 1, sym_selector_expression, - STATE(2454), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2477), 1, + STATE(5178), 1, sym_expression, - STATE(3180), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(3920), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74495,7 +98579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74512,71 +98596,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61279] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1259), 1, + [58061] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(692), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(698), 1, sym_float, - ACTIONS(1305), 1, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(736), 1, + anon_sym_DOT, + ACTIONS(738), 1, + anon_sym_QMARK_DOT, + ACTIONS(1379), 1, sym_identifier, - STATE(1225), 1, + ACTIONS(1383), 1, + anon_sym_not, + STATE(236), 1, + sym_expression, + STATE(2879), 1, sym_primary_expression, - STATE(1227), 1, + STATE(2993), 1, sym_call, - STATE(1311), 1, + STATE(3005), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5067), 1, sym_dotted_name, - STATE(2568), 1, - sym_expression, - STATE(3180), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - STATE(1355), 2, + STATE(3223), 2, sym_binary_operator, sym_subscript, - ACTIONS(1267), 3, + ACTIONS(694), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1336), 4, + STATE(3176), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(696), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74584,7 +98668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74601,71 +98685,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61394] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [58176] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(177), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(2695), 1, + sym_identifier, + STATE(995), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1899), 1, sym_selector_expression, - STATE(2280), 1, - sym_expression, - STATE(2454), 1, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5202), 1, + sym_expression, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74673,7 +98757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74690,71 +98774,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61509] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [58291] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(177), 1, sym_float, - ACTIONS(1540), 1, + 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(2695), 1, sym_identifier, - STATE(839), 1, + STATE(996), 1, sym_primary_expression, - STATE(888), 1, + STATE(1899), 1, sym_selector_expression, - STATE(905), 1, + STATE(2072), 1, sym_call, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2565), 1, + STATE(5202), 1, sym_expression, - STATE(3096), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74762,7 +98846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74779,71 +98863,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61624] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [58406] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(644), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(650), 1, sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(742), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - STATE(1335), 1, + ACTIONS(2705), 1, + sym_identifier, + STATE(2853), 1, sym_primary_expression, - STATE(1387), 1, - sym_expression, - STATE(1414), 1, + STATE(3027), 1, sym_call, - STATE(1475), 1, + STATE(3073), 1, sym_selector_expression, - STATE(2532), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5190), 1, + sym_expression, + STATE(5965), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3210), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(646), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(3220), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(648), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74851,7 +98935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3203), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74868,71 +98952,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61739] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(1245), 1, + [58521] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(273), 1, sym_float, - ACTIONS(1540), 1, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1585), 1, + ACTIONS(378), 1, anon_sym_not, - STATE(839), 1, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + STATE(2351), 1, sym_primary_expression, - STATE(888), 1, - sym_selector_expression, - STATE(905), 1, + STATE(2374), 1, + sym_expression, + STATE(2407), 1, sym_call, - STATE(2537), 1, + STATE(2660), 1, + sym_selector_expression, + STATE(5040), 1, sym_dotted_name, - STATE(2565), 1, - sym_expression, - STATE(3096), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(2691), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74940,7 +99024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -74957,71 +99041,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61854] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [58636] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(177), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(2695), 1, + sym_identifier, + STATE(997), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1899), 1, sym_selector_expression, - STATE(2406), 1, - sym_expression, - STATE(2454), 1, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5202), 1, + sym_expression, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75029,7 +99113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75046,138 +99130,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61969] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1460), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [58751] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(171), 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(177), 1, sym_float, - ACTIONS(1458), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [62040] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, + ACTIONS(1395), 1, anon_sym_not, - STATE(1335), 1, + ACTIONS(2695), 1, + sym_identifier, + STATE(1002), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1475), 1, + STATE(1899), 1, sym_selector_expression, - STATE(1856), 1, - sym_expression, - STATE(2532), 1, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5202), 1, + sym_expression, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75185,7 +99202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75202,71 +99219,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62155] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(990), 1, - sym_identifier, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(1245), 1, + [58866] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(177), 1, sym_float, - STATE(704), 1, + 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(2695), 1, + sym_identifier, + STATE(1003), 1, sym_primary_expression, - STATE(734), 1, - sym_expression, - STATE(905), 1, - sym_call, - STATE(907), 1, + STATE(1899), 1, sym_selector_expression, - STATE(2517), 1, + STATE(2072), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5202), 1, + sym_expression, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75274,7 +99291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75291,71 +99308,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62270] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [58981] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(420), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(434), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1587), 1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1341), 1, sym_identifier, - STATE(1791), 1, + ACTIONS(1345), 1, + anon_sym_not, + STATE(2365), 1, sym_call, - STATE(1843), 1, + STATE(3007), 1, sym_primary_expression, - STATE(1937), 1, + STATE(3219), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2570), 1, + STATE(4271), 1, sym_expression, - STATE(3226), 1, + STATE(5058), 1, + sym_dotted_name, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - STATE(2002), 2, + STATE(2455), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(3246), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75363,7 +99380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75380,160 +99397,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62385] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [59096] = 22, + ACTIONS(2495), 1, + anon_sym_not, + ACTIONS(2499), 1, + anon_sym_is, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, - anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(790), 1, - anon_sym_DQUOTE, - ACTIONS(794), 1, - sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(1587), 1, - sym_identifier, - ACTIONS(1589), 1, - anon_sym_not, - STATE(1791), 1, - sym_call, - STATE(1843), 1, - sym_primary_expression, - STATE(1937), 1, - sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2570), 1, - sym_expression, - STATE(3226), 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(2116), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - ACTIONS(788), 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(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, - ACTIONS(27), 4, + 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, - STATE(1990), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(792), 5, + 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, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(2008), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [62500] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(990), 1, - sym_identifier, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(1245), 1, + [59203] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(406), 1, sym_float, - STATE(704), 1, - sym_primary_expression, - STATE(905), 1, + 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(907), 1, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, sym_selector_expression, - STATE(1158), 1, - sym_expression, - STATE(2517), 1, + STATE(4827), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5001), 1, + sym_expression, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(3679), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3699), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75541,7 +99554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75558,71 +99571,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62615] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(1245), 1, + [59318] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(177), 1, sym_float, - STATE(568), 1, + 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(2695), 1, + sym_identifier, + STATE(1004), 1, sym_primary_expression, - STATE(735), 1, - sym_expression, - STATE(879), 1, + STATE(1899), 1, sym_selector_expression, - STATE(905), 1, + STATE(2072), 1, sym_call, - STATE(2479), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5202), 1, + sym_expression, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(2199), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75630,7 +99643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75647,249 +99660,217 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62730] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [59433] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, - sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2476), 1, - sym_expression, - STATE(3180), 1, - sym_quant_op, + 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, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1267), 3, + 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, - ACTIONS(27), 4, + 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, - STATE(1360), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(437), 5, - sym_integer, - sym_true, - sym_false, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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(1348), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1339), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [62845] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [59516] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(2713), 1, + anon_sym_STAR_STAR, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - ACTIONS(962), 1, - sym_identifier, - ACTIONS(964), 1, - anon_sym_not, - STATE(1176), 1, - sym_expression, - STATE(1335), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1475), 1, - sym_selector_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, + 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, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, + 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, - ACTIONS(27), 4, + 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, - STATE(1599), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 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(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [62960] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [59599] = 26, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, + ACTIONS(690), 1, anon_sym_not, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(698), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(700), 1, sym_string_start, - ACTIONS(976), 1, - sym_identifier, - STATE(1789), 1, + ACTIONS(736), 1, + anon_sym_DOT, + ACTIONS(738), 1, + anon_sym_QMARK_DOT, + STATE(103), 1, + sym_expression, + STATE(2766), 1, sym_primary_expression, - STATE(1791), 1, + STATE(2993), 1, sym_call, - STATE(1889), 1, + STATE(3042), 1, sym_selector_expression, - STATE(2462), 1, - sym_expression, - STATE(2529), 1, + STATE(5059), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(694), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3144), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(696), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75897,7 +99878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -75914,75 +99895,217 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63075] = 22, - ACTIONS(1359), 1, + [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, - ACTIONS(1375), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - ACTIONS(1502), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59801] = 16, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(1510), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(1512), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(1520), 1, - anon_sym_PIPE, - ACTIONS(1522), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1524), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1532), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(941), 1, + STATE(2116), 1, sym_argument_list, - STATE(2266), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1508), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1516), 2, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1518), 2, + ACTIONS(2719), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1526), 2, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1351), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 4, + 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, - ACTIONS(1343), 5, + 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, - ACTIONS(1345), 8, + 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, - 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(1341), 20, + 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, @@ -75991,79 +100114,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [63182] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [59989] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(550), 1, sym_float, - STATE(1354), 1, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2699), 1, + sym_identifier, + STATE(3619), 1, sym_primary_expression, - STATE(1414), 1, + STATE(3719), 1, sym_call, - STATE(1427), 1, + STATE(3726), 1, sym_selector_expression, - STATE(2507), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2519), 1, + STATE(5178), 1, sym_expression, - STATE(3261), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(3920), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76071,7 +100199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76088,71 +100216,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63297] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [60104] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2699), 1, sym_identifier, - STATE(1789), 1, + STATE(3612), 1, sym_primary_expression, - STATE(1791), 1, + STATE(3719), 1, sym_call, - STATE(1889), 1, + STATE(3726), 1, sym_selector_expression, - STATE(2408), 1, - sym_expression, - STATE(2529), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5183), 1, + sym_expression, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + STATE(3920), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3947), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76160,7 +100288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76177,71 +100305,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63412] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [60219] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(698), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(700), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(736), 1, + anon_sym_DOT, + ACTIONS(738), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2731), 1, sym_identifier, - STATE(1789), 1, + STATE(2942), 1, sym_primary_expression, - STATE(1791), 1, + STATE(2993), 1, sym_call, - STATE(1889), 1, + STATE(3094), 1, sym_selector_expression, - STATE(2398), 1, - sym_expression, - STATE(2529), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(3223), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(694), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3230), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(696), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76249,7 +100377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76266,71 +100394,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63527] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [60334] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(686), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(698), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(700), 1, sym_string_start, - ACTIONS(996), 1, + ACTIONS(736), 1, + anon_sym_DOT, + ACTIONS(738), 1, + anon_sym_QMARK_DOT, + ACTIONS(1379), 1, sym_identifier, - ACTIONS(998), 1, + ACTIONS(1383), 1, anon_sym_not, - STATE(1667), 1, + STATE(2879), 1, sym_primary_expression, - STATE(1716), 1, - sym_expression, - STATE(1791), 1, + STATE(2993), 1, sym_call, - STATE(1885), 1, + STATE(3005), 1, sym_selector_expression, - STATE(2468), 1, + STATE(4318), 1, + sym_expression, + STATE(5067), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5976), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + STATE(3221), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(694), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(3176), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(696), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3226), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76338,7 +100466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3227), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76355,73 +100483,227 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63642] = 22, - ACTIONS(1359), 1, + [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(1375), 1, + ACTIONS(2499), 1, anon_sym_is, - ACTIONS(1502), 1, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(1510), 1, + ACTIONS(2713), 1, anon_sym_STAR_STAR, - ACTIONS(1512), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(1520), 1, + ACTIONS(2721), 1, anon_sym_PIPE, - ACTIONS(1522), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1524), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1532), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(941), 1, + STATE(2116), 1, sym_argument_list, - STATE(2266), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1508), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1516), 2, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1518), 2, + ACTIONS(2719), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1526), 2, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1351), 3, + ACTIONS(2493), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1373), 4, + ACTIONS(2497), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1343), 5, + ACTIONS(2365), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(1381), 8, + ACTIONS(2503), 8, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(1379), 20, + ACTIONS(2501), 20, anon_sym_import, anon_sym_assert, + anon_sym_rule, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -76432,7 +100714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, sym_integer, sym_identifier, @@ -76440,71 +100721,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [63749] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [60736] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(394), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(406), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(408), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1105), 1, sym_identifier, - STATE(1435), 1, + ACTIONS(1109), 1, + anon_sym_not, + STATE(3460), 1, sym_call, - STATE(1488), 1, + STATE(3464), 1, sym_primary_expression, - STATE(1601), 1, + STATE(3508), 1, sym_selector_expression, - STATE(2464), 1, - sym_dotted_name, - STATE(2528), 1, + STATE(4998), 1, sym_expression, - STATE(3198), 1, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76512,7 +100793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76529,71 +100810,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63864] = 26, - ACTIONS(770), 1, + [60851] = 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, - ACTIONS(774), 1, + 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, + anon_sym_all, + 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, + [60958] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(394), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(406), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(408), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1587), 1, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1105), 1, sym_identifier, - STATE(1791), 1, + ACTIONS(1109), 1, + anon_sym_not, + STATE(3460), 1, sym_call, - STATE(1834), 1, + STATE(3464), 1, sym_primary_expression, - STATE(1937), 1, + STATE(3508), 1, sym_selector_expression, - STATE(2537), 1, - sym_dotted_name, - STATE(2570), 1, + STATE(4996), 1, sym_expression, - STATE(3226), 1, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2002), 2, + STATE(3679), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + STATE(3699), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76601,7 +100967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76618,71 +100984,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63979] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [61073] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(930), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1587), 1, + ACTIONS(2643), 1, sym_identifier, - STATE(1791), 1, - sym_call, - STATE(1832), 1, + STATE(864), 1, sym_primary_expression, - STATE(1937), 1, + STATE(1880), 1, sym_selector_expression, - STATE(2537), 1, + STATE(2027), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2570), 1, + STATE(5174), 1, sym_expression, - STATE(3226), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2002), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76690,7 +101056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76707,71 +101073,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64094] = 26, - ACTIONS(770), 1, + [61188] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(930), 1, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1587), 1, + ACTIONS(2733), 1, sym_identifier, - STATE(1791), 1, + STATE(3874), 1, sym_call, - STATE(1828), 1, + STATE(4126), 1, sym_primary_expression, - STATE(1937), 1, + STATE(4230), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2570), 1, + STATE(5199), 1, sym_expression, - STATE(3226), 1, + STATE(6288), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - STATE(2002), 2, + STATE(4390), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(4294), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76779,7 +101145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76796,71 +101162,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64209] = 26, - ACTIONS(770), 1, + [61303] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(25), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(930), 1, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1587), 1, + ACTIONS(2733), 1, sym_identifier, - STATE(1791), 1, + STATE(3874), 1, sym_call, - STATE(1817), 1, + STATE(4125), 1, sym_primary_expression, - STATE(1937), 1, + STATE(4230), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2570), 1, + STATE(5187), 1, sym_expression, - STATE(3226), 1, + STATE(6288), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - STATE(2002), 2, + STATE(4390), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(4294), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76868,7 +101234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76885,71 +101251,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64324] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [61418] = 26, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(165), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(167), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(169), 1, + anon_sym_not, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(177), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(179), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1587), 1, - sym_identifier, - STATE(1791), 1, - sym_call, - STATE(1816), 1, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(1125), 1, sym_primary_expression, - STATE(1937), 1, + STATE(1155), 1, + sym_expression, + STATE(1878), 1, sym_selector_expression, - STATE(2537), 1, + STATE(2072), 1, + sym_call, + STATE(5096), 1, sym_dotted_name, - STATE(2570), 1, - sym_expression, - STATE(3226), 1, + STATE(5909), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2149), 2, sym_in_operation, sym_not_in_operation, - STATE(2002), 2, + STATE(2150), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(2154), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(175), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2227), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76957,7 +101323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2233), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -76974,71 +101340,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64439] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [61533] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1587), 1, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(772), 1, sym_identifier, - STATE(1791), 1, - sym_call, - STATE(1810), 1, + ACTIONS(776), 1, + anon_sym_not, + STATE(120), 1, + sym_expression, + STATE(780), 1, sym_primary_expression, - STATE(1937), 1, + STATE(1655), 1, sym_selector_expression, - STATE(2537), 1, + STATE(1659), 1, + sym_call, + STATE(5130), 1, sym_dotted_name, - STATE(2570), 1, - sym_expression, - STATE(3226), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2002), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + STATE(1969), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(1980), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77046,7 +101412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77063,71 +101429,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64554] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [61648] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(930), 1, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1587), 1, + ACTIONS(2735), 1, sym_identifier, - STATE(1791), 1, - sym_call, - STATE(1809), 1, + STATE(1028), 1, sym_primary_expression, - STATE(1937), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2537), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2570), 1, + STATE(5157), 1, sym_expression, - STATE(3226), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2002), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77135,7 +101501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77152,71 +101518,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64669] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(990), 1, - sym_identifier, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(1245), 1, + [61763] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(83), 1, sym_float, - STATE(704), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(2735), 1, + sym_identifier, + ACTIONS(2737), 1, + anon_sym_not, + STATE(1028), 1, sym_primary_expression, - STATE(905), 1, - sym_call, - STATE(907), 1, + STATE(1210), 1, sym_selector_expression, - STATE(1156), 1, - sym_expression, - STATE(2517), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5157), 1, + sym_expression, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77224,7 +101590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77241,71 +101607,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64784] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(990), 1, - sym_identifier, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(1245), 1, + [61878] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(83), 1, sym_float, - STATE(704), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + STATE(1127), 1, sym_primary_expression, - STATE(905), 1, + STATE(1199), 1, + sym_expression, + STATE(1533), 1, sym_call, - STATE(907), 1, + STATE(2098), 1, sym_selector_expression, - STATE(1157), 1, - sym_expression, - STATE(2517), 1, + STATE(5107), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(2067), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(2155), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77313,7 +101679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77330,71 +101696,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64899] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [61993] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(25), 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(180), 1, - anon_sym_LBRACK, - ACTIONS(930), 1, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1464), 1, + ACTIONS(2739), 1, sym_identifier, - STATE(1495), 1, - sym_call, - STATE(1519), 1, + STATE(781), 1, sym_primary_expression, - STATE(1830), 1, + STATE(1317), 1, sym_selector_expression, - STATE(2537), 1, + STATE(1659), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2579), 1, + STATE(5186), 1, sym_expression, - STATE(3186), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1916), 4, + STATE(1950), 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(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77402,7 +101768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77419,138 +101785,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65014] = 4, - STATE(848), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1385), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [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, - 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(1383), 33, - anon_sym_import, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + ACTIONS(772), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [65085] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(776), 1, anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + STATE(780), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(1655), 1, sym_selector_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(2534), 1, + STATE(1659), 1, + sym_call, + STATE(3267), 1, sym_expression, - STATE(3261), 1, + STATE(5130), 1, + sym_dotted_name, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(105), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(1980), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77558,7 +101857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77575,71 +101874,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65200] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [62223] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1418), 1, + 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(2735), 1, sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2374), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2546), 1, + STATE(5157), 1, sym_expression, - STATE(3180), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77647,7 +101946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77664,71 +101963,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65315] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [62338] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1418), 1, + 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(2735), 1, sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2333), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2545), 1, + STATE(5157), 1, sym_expression, - STATE(3180), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77736,7 +102035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77753,71 +102052,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65430] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [62453] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(2735), 1, + sym_identifier, + STATE(1033), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2435), 1, - sym_expression, - STATE(2454), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5157), 1, + sym_expression, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77825,7 +102124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77842,71 +102141,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65545] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [62568] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(2735), 1, + sym_identifier, + STATE(1036), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2454), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2540), 1, + STATE(5157), 1, sym_expression, - STATE(3180), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77914,7 +102213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -77931,71 +102230,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65660] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [62683] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(151), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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(861), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1880), 1, sym_selector_expression, - STATE(2437), 1, - sym_expression, - STATE(2454), 1, + STATE(2027), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5174), 1, + sym_expression, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78003,7 +102302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78020,71 +102319,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65775] = 26, - ACTIONS(902), 1, - sym_identifier, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(1245), 1, + [62798] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(550), 1, sym_float, - STATE(342), 1, - sym_expression, - STATE(568), 1, + 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(879), 1, - sym_selector_expression, - STATE(905), 1, + STATE(3719), 1, sym_call, - STATE(2479), 1, + STATE(3727), 1, + sym_selector_expression, + STATE(4798), 1, + sym_expression, + STATE(5075), 1, sym_dotted_name, - STATE(3096), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78092,7 +102391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78109,71 +102408,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65890] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [62913] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(930), 1, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1546), 1, + ACTIONS(2735), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1485), 1, + STATE(1037), 1, sym_primary_expression, - STATE(1520), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2537), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2575), 1, + STATE(5157), 1, sym_expression, - STATE(3198), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1732), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(537), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1805), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78181,7 +102480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78198,71 +102497,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66005] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [63028] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2735), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + STATE(1038), 1, sym_primary_expression, - STATE(1601), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2319), 1, - sym_expression, - STATE(2464), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5157), 1, + sym_expression, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78270,7 +102569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78287,138 +102586,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66120] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(821), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1536), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [63143] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(145), 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(151), 1, sym_float, - ACTIONS(1534), 32, - anon_sym_import, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [66191] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + ACTIONS(2643), 1, sym_identifier, - ACTIONS(1259), 1, - anon_sym_LPAREN, - ACTIONS(1261), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + STATE(859), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1880), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2027), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2539), 1, + STATE(5174), 1, sym_expression, - STATE(3180), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78426,7 +102658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78443,71 +102675,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66306] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [63258] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(85), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2735), 1, sym_identifier, - STATE(1789), 1, + STATE(1040), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2529), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2530), 1, + STATE(5157), 1, sym_expression, - STATE(3226), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78515,7 +102747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78532,71 +102764,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66421] = 26, - ACTIONS(1086), 1, + [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, + 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, - ACTIONS(1092), 1, - anon_sym_lambda, - ACTIONS(1106), 1, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2524), 9, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(1146), 1, + 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, - ACTIONS(1148), 1, - anon_sym_not, - ACTIONS(1231), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [63480] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1241), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1243), 1, + ACTIONS(83), 1, sym_float, - STATE(326), 1, - sym_expression, - STATE(498), 1, + 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(2735), 1, + sym_identifier, + STATE(1043), 1, sym_primary_expression, - STATE(881), 1, - sym_call, - STATE(884), 1, + STATE(1210), 1, sym_selector_expression, - STATE(2504), 1, + STATE(1533), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(3024), 1, + STATE(5157), 1, + sym_expression, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(910), 2, - sym_in_operation, - sym_not_in_operation, - STATE(940), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(1239), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(975), 4, + STATE(1993), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1104), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(939), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78604,7 +102921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(937), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78621,71 +102938,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66536] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [63595] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(814), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(820), 1, + anon_sym_not, + STATE(128), 1, + sym_expression, + STATE(1411), 1, sym_primary_expression, - STATE(1601), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2464), 1, + STATE(2027), 1, + sym_call, + STATE(5035), 1, sym_dotted_name, - STATE(2512), 1, - sym_expression, - STATE(3198), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78693,7 +103010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78710,71 +103027,292 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66651] = 26, - ACTIONS(1012), 1, + [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, - ACTIONS(1018), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(1032), 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, + [63793] = 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, - ACTIONS(1120), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(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, - ACTIONS(1122), 1, + 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, + 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(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, + 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, - ACTIONS(1309), 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, + [63963] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1311), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1313), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(1319), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1321), 1, + ACTIONS(151), 1, sym_float, - STATE(1023), 1, - sym_primary_expression, - STATE(1031), 1, - sym_expression, - STATE(1070), 1, + 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, + sym_identifier, + STATE(1880), 1, sym_selector_expression, - STATE(1082), 1, + STATE(2016), 1, + sym_primary_expression, + STATE(2027), 1, sym_call, - STATE(2493), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3063), 1, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1123), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1125), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1317), 3, + ACTIONS(147), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1107), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1030), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1121), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78782,7 +103320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1088), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78799,71 +103337,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66766] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [64078] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(1540), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(822), 1, sym_identifier, - STATE(819), 1, + ACTIONS(826), 1, + anon_sym_not, + STATE(2027), 1, + sym_call, + STATE(2033), 1, sym_primary_expression, - STATE(888), 1, + STATE(2164), 1, sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(3352), 1, sym_expression, - STATE(3096), 1, + STATE(5144), 1, + sym_dotted_name, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(147), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(2239), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78871,7 +103409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78888,71 +103426,305 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66881] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [64193] = 16, + ACTIONS(2369), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(2371), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + 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, - ACTIONS(784), 1, + 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, + [64288] = 15, + ACTIONS(2369), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_LBRACK, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - ACTIONS(790), 1, + 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, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(794), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(796), 1, + 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, + [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, + 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), 16, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(930), 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(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, - ACTIONS(1587), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1791), 1, - sym_call, - STATE(1794), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [64472] = 26, + ACTIONS(530), 1, + sym_identifier, + 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(542), 1, + anon_sym_not, + 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, + STATE(3586), 1, + sym_expression, + STATE(3717), 1, sym_primary_expression, - STATE(1937), 1, + STATE(3719), 1, + sym_call, + STATE(3835), 1, sym_selector_expression, - STATE(2537), 1, + STATE(5121), 1, sym_dotted_name, - STATE(2570), 1, - sym_expression, - STATE(3226), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2002), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + STATE(3921), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(4019), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78960,7 +103732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -78977,71 +103749,147 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66996] = 26, - ACTIONS(770), 1, + [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, - ACTIONS(774), 1, + 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, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(930), 1, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1587), 1, + ACTIONS(2759), 1, sym_identifier, - STATE(1791), 1, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, sym_call, - STATE(1793), 1, + STATE(3696), 1, sym_primary_expression, - STATE(1937), 1, - sym_selector_expression, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2574), 1, + STATE(5163), 1, sym_expression, - STATE(3226), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - STATE(2002), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79049,7 +103897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79066,71 +103914,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67111] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [64791] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(550), 1, sym_float, - STATE(1354), 1, + 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(1414), 1, + STATE(3719), 1, sym_call, - STATE(1427), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2400), 1, + STATE(4804), 1, sym_expression, - STATE(2507), 1, + STATE(5075), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79138,7 +103986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79155,71 +104003,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67226] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, + [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(439), 1, + 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, - ACTIONS(972), 1, + 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, - ACTIONS(1259), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [65013] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(502), 1, sym_float, - STATE(1227), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(2759), 1, + sym_identifier, + ACTIONS(2761), 1, + anon_sym_not, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, sym_call, - STATE(1229), 1, + STATE(3696), 1, sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2326), 1, - sym_expression, - STATE(2454), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5163), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79227,7 +104160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79244,71 +104177,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67341] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [65128] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(502), 1, sym_float, - STATE(1354), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, sym_primary_expression, - STATE(1414), 1, + STATE(3663), 1, sym_call, - STATE(1427), 1, + STATE(3781), 1, sym_selector_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(2510), 1, + STATE(4919), 1, sym_expression, - STATE(3261), 1, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3939), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79316,7 +104249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79333,71 +104266,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67456] = 26, - ACTIONS(904), 1, + [65243] = 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, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2491), 9, + sym__newline, + sym__dedent, sym_string_start, - ACTIONS(990), 1, + 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, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(1245), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [65350] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(69), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(77), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(83), 1, sym_float, - STATE(704), 1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + STATE(1127), 1, sym_primary_expression, - STATE(905), 1, + STATE(1173), 1, + sym_expression, + STATE(1533), 1, sym_call, - STATE(907), 1, + STATE(2098), 1, sym_selector_expression, - STATE(1160), 1, - sym_expression, - STATE(2517), 1, + STATE(5107), 1, sym_dotted_name, - STATE(3096), 1, + STATE(5858), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_in_operation, - sym_not_in_operation, - STATE(929), 2, + STATE(2066), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + STATE(2067), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(2155), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(81), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2062), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79405,7 +104423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2057), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79422,71 +104440,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67571] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, + [65465] = 26, + ACTIONS(251), 1, sym_identifier, - ACTIONS(555), 1, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(273), 1, sym_float, - STATE(1354), 1, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + STATE(2287), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2501), 1, + STATE(2304), 1, sym_expression, - STATE(2507), 1, + STATE(2329), 1, + sym_selector_expression, + STATE(2407), 1, + sym_call, + STATE(4999), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(269), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79494,7 +104512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79511,71 +104529,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67686] = 26, - ACTIONS(770), 1, + [65580] = 26, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - ACTIONS(774), 1, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(2611), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(2613), 1, sym_float, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(976), 1, - sym_identifier, - STATE(1789), 1, + STATE(230), 1, + sym_expression, + STATE(2751), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(2824), 1, sym_selector_expression, - STATE(2393), 1, - sym_expression, - STATE(2529), 1, + STATE(2870), 1, + sym_call, + STATE(5115), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5934), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(3055), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3056), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(2609), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3057), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(596), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3063), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79583,7 +104601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3051), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79600,71 +104618,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67801] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [65695] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(273), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1587), 1, - sym_identifier, - STATE(1791), 1, - sym_call, - STATE(1803), 1, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + STATE(2287), 1, sym_primary_expression, - STATE(1937), 1, + STATE(2319), 1, + sym_expression, + STATE(2329), 1, sym_selector_expression, - STATE(2537), 1, + STATE(2407), 1, + sym_call, + STATE(4999), 1, sym_dotted_name, - STATE(2570), 1, - sym_expression, - STATE(3226), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1272), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - STATE(2002), 2, + STATE(2458), 2, sym_binary_operator, sym_subscript, - ACTIONS(788), 3, + ACTIONS(269), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1990), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79672,7 +104690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79689,71 +104707,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67916] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [65810] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(151), 1, sym_float, - STATE(1354), 1, + 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(1167), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, + STATE(1880), 1, sym_selector_expression, - STATE(2507), 1, + STATE(2027), 1, + sym_call, + STATE(5113), 1, sym_dotted_name, - STATE(2511), 1, + STATE(5174), 1, sym_expression, - STATE(3261), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79761,7 +104779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79778,71 +104796,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68031] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1259), 1, + [65925] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(273), 1, sym_float, - ACTIONS(1418), 1, - sym_identifier, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + STATE(2287), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2301), 1, + sym_expression, + STATE(2329), 1, sym_selector_expression, - STATE(2365), 1, + STATE(2407), 1, + sym_call, + STATE(4999), 1, sym_dotted_name, - STATE(2483), 1, - sym_expression, - STATE(3180), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(269), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79850,7 +104868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79867,71 +104885,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68146] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [66040] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(406), 1, sym_float, - ACTIONS(1540), 1, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1105), 1, sym_identifier, - STATE(818), 1, + ACTIONS(1109), 1, + anon_sym_not, + STATE(3460), 1, + sym_call, + STATE(3464), 1, sym_primary_expression, - STATE(888), 1, + STATE(3508), 1, sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(4844), 1, sym_expression, - STATE(3096), 1, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79939,7 +104957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -79956,302 +104974,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68261] = 13, - ACTIONS(1502), 1, + [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, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, + ACTIONS(2621), 1, + anon_sym_LBRACE, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1508), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1516), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1518), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 17, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [68350] = 14, - ACTIONS(1502), 1, - anon_sym_LPAREN, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, - anon_sym_QMARK_DOT, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1508), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1516), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1518), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1526), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 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(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [68441] = 15, - ACTIONS(1502), 1, - anon_sym_LPAREN, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, - anon_sym_QMARK_DOT, - ACTIONS(1524), 1, - anon_sym_CARET, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1508), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1516), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1518), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1526), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 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(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [68534] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(2627), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(2629), 1, sym_float, - ACTIONS(1110), 1, + ACTIONS(2763), 1, sym_identifier, - ACTIONS(1112), 1, - anon_sym_not, - STATE(1544), 1, + STATE(3771), 1, sym_primary_expression, - STATE(1558), 1, - sym_expression, - STATE(1660), 1, - sym_selector_expression, - STATE(1661), 1, + STATE(3807), 1, sym_call, - STATE(2489), 1, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5200), 1, + sym_expression, + STATE(5996), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1400), 3, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(4164), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(574), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80259,7 +105046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80276,225 +105063,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68649] = 16, - ACTIONS(1502), 1, - anon_sym_LPAREN, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, - anon_sym_QMARK_DOT, - ACTIONS(1522), 1, - anon_sym_AMP, - ACTIONS(1524), 1, - anon_sym_CARET, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1508), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1516), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1518), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1526), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1396), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + [66270] = 26, + ACTIONS(564), 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [68744] = 12, - ACTIONS(1502), 1, - anon_sym_LPAREN, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, - anon_sym_QMARK_DOT, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1508), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1518), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 19, + ACTIONS(576), 1, 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(1396), 30, - anon_sym_import, + ACTIONS(734), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(1347), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [68831] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, + ACTIONS(1351), 1, anon_sym_not, - ACTIONS(1245), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(2619), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(2621), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(2627), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(2629), 1, sym_float, - ACTIONS(1540), 1, - sym_identifier, - STATE(816), 1, + STATE(3807), 1, + sym_call, + STATE(3825), 1, sym_primary_expression, - STATE(888), 1, + STATE(4004), 1, sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(4829), 1, sym_expression, - STATE(3096), 1, + STATE(5150), 1, + sym_dotted_name, + STATE(5996), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(4220), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(4208), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(574), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(4192), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80502,7 +105135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(4160), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80519,217 +105152,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68946] = 10, - ACTIONS(1502), 1, - anon_sym_LPAREN, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, - anon_sym_QMARK_DOT, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1398), 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(1396), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + [66385] = 26, + ACTIONS(251), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [69029] = 10, - ACTIONS(1502), 1, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 1, - anon_sym_QMARK_DOT, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1398), 21, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 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(273), 1, sym_float, - ACTIONS(1396), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [69112] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + STATE(2287), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2495), 1, + STATE(2297), 1, sym_expression, - STATE(2507), 1, + STATE(2329), 1, + sym_selector_expression, + STATE(2407), 1, + sym_call, + STATE(4999), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(269), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80737,7 +105224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80754,140 +105241,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69227] = 6, - ACTIONS(1591), 1, - anon_sym_DOT, - ACTIONS(1594), 1, - anon_sym_QMARK_DOT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(821), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [66500] = 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_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(1468), 31, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [69302] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(1259), 1, - anon_sym_LPAREN, - ACTIONS(1261), 1, - anon_sym_LBRACK, - ACTIONS(1263), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, - ACTIONS(1269), 1, - anon_sym_DQUOTE, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1418), 1, + ACTIONS(1391), 1, sym_identifier, - STATE(1227), 1, + ACTIONS(1395), 1, + anon_sym_not, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, sym_call, - STATE(1229), 1, + STATE(4313), 1, sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2371), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2478), 1, + STATE(5168), 1, sym_expression, - STATE(3180), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(750), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80895,7 +105313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -80912,71 +105330,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69417] = 26, - ACTIONS(902), 1, + [66615] = 26, + ACTIONS(251), 1, sym_identifier, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(914), 1, - anon_sym_not, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(1245), 1, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(273), 1, sym_float, - STATE(329), 1, - sym_expression, - STATE(568), 1, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + STATE(2287), 1, sym_primary_expression, - STATE(879), 1, + STATE(2291), 1, + sym_expression, + STATE(2329), 1, sym_selector_expression, - STATE(905), 1, + STATE(2407), 1, sym_call, - STATE(2479), 1, + STATE(4999), 1, sym_dotted_name, - STATE(3096), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - STATE(929), 2, + STATE(2458), 2, sym_binary_operator, sym_subscript, - ACTIONS(1253), 3, + ACTIONS(269), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(976), 4, + STATE(2558), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(932), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80984,7 +105402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81001,71 +105419,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69532] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [66730] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(538), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(540), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(550), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(552), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + ACTIONS(1303), 1, sym_identifier, - STATE(1789), 1, + ACTIONS(1309), 1, + anon_sym_not, + STATE(3716), 1, sym_primary_expression, - STATE(1791), 1, + STATE(3719), 1, sym_call, - STATE(1889), 1, + STATE(3727), 1, sym_selector_expression, - STATE(2446), 1, + STATE(4809), 1, sym_expression, - STATE(2529), 1, + STATE(5075), 1, sym_dotted_name, - STATE(3226), 1, + STATE(6118), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(3920), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(3921), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(546), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(3929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(548), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(3904), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81073,7 +105491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(3903), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81090,71 +105508,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69647] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [66845] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(962), 1, + 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(964), 1, + ACTIONS(1395), 1, anon_sym_not, - STATE(1168), 1, - sym_expression, - STATE(1335), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1475), 1, + STATE(3446), 1, sym_selector_expression, - STATE(2532), 1, + STATE(3663), 1, + sym_call, + STATE(4314), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5168), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(750), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81162,7 +105580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81179,71 +105597,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69762] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [66960] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(502), 1, sym_float, - STATE(1227), 1, + 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(1229), 1, + STATE(4315), 1, sym_primary_expression, - STATE(1236), 1, - sym_selector_expression, - STATE(2384), 1, - sym_expression, - STATE(2454), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5168), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(750), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81251,7 +105669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81268,71 +105686,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69877] = 26, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1042), 1, - sym_identifier, - ACTIONS(1044), 1, - anon_sym_not, - ACTIONS(1275), 1, + [67075] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(502), 1, sym_float, - STATE(1559), 1, - sym_expression, - STATE(1561), 1, + 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(1573), 1, + STATE(4316), 1, sym_primary_expression, - STATE(1801), 1, - sym_selector_expression, - STATE(2470), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5168), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1908), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + ACTIONS(750), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1897), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81340,7 +105758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81357,71 +105775,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69992] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [67190] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - 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(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1391), 1, sym_identifier, - ACTIONS(894), 1, + ACTIONS(1395), 1, anon_sym_not, - STATE(1495), 1, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, sym_call, - STATE(1496), 1, - sym_expression, - STATE(1549), 1, + STATE(4321), 1, sym_primary_expression, - STATE(1753), 1, - sym_selector_expression, - STATE(2463), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5168), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(750), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(3485), 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(1973), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81429,7 +105847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81446,71 +105864,155 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70107] = 26, - ACTIONS(13), 1, + [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, - ACTIONS(19), 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_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [67410] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(137), 1, + anon_sym_LBRACK, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, + ACTIONS(181), 1, sym_identifier, - ACTIONS(894), 1, + ACTIONS(185), 1, anon_sym_not, - STATE(1495), 1, - sym_call, - STATE(1549), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1064), 1, sym_primary_expression, - STATE(1600), 1, + STATE(1422), 1, sym_expression, - STATE(1753), 1, + STATE(1901), 1, sym_selector_expression, - STATE(2463), 1, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(2168), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81518,7 +106020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81535,71 +106037,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70222] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [67525] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(520), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(526), 1, sym_float, - STATE(1227), 1, + 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(250), 1, + sym_expression, + STATE(2396), 1, sym_call, - STATE(1229), 1, + STATE(2590), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2738), 1, sym_selector_expression, - STATE(2403), 1, - sym_expression, - STATE(2454), 1, + STATE(5127), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5947), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2580), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(522), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2856), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(524), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2596), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81607,7 +106109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2614), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81624,71 +106126,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70337] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(1134), 1, - sym_identifier, - ACTIONS(1136), 1, - anon_sym_not, - ACTIONS(1259), 1, + [67640] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(502), 1, sym_float, - STATE(1182), 1, - sym_primary_expression, - STATE(1193), 1, - sym_expression, - STATE(1227), 1, - sym_call, - STATE(1315), 1, + 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(2452), 1, + STATE(3663), 1, + sym_call, + STATE(4244), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5168), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(750), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1400), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81696,7 +106198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81713,140 +106215,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70452] = 6, - ACTIONS(1597), 1, - anon_sym_DOT, - ACTIONS(1600), 1, - anon_sym_QMARK_DOT, - STATE(832), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1483), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [67755] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(145), 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(151), 1, sym_float, - ACTIONS(1478), 32, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [70527] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(553), 1, + ACTIONS(181), 1, sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(185), 1, + anon_sym_not, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, - anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, + STATE(1064), 1, sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2490), 1, + STATE(1461), 1, sym_expression, - STATE(2507), 1, + STATE(1901), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81854,7 +106287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81871,71 +106304,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70642] = 26, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [67870] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - 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(180), 1, - anon_sym_LBRACK, - ACTIONS(886), 1, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1391), 1, sym_identifier, - ACTIONS(894), 1, + ACTIONS(1395), 1, anon_sym_not, - STATE(1495), 1, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, sym_call, - STATE(1549), 1, + STATE(4329), 1, sym_primary_expression, - STATE(1571), 1, - sym_expression, - STATE(1753), 1, - sym_selector_expression, - STATE(2463), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3186), 1, + STATE(5168), 1, + sym_expression, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1969), 2, - sym_in_operation, - sym_not_in_operation, - STATE(1970), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - ACTIONS(47), 3, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(750), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(3485), 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(1973), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81943,7 +106376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1974), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -81960,139 +106393,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70757] = 5, - ACTIONS(1603), 1, - anon_sym_EQ, - STATE(848), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1490), 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(1488), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [70830] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + [67985] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(539), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(1062), 1, + ACTIONS(181), 1, sym_identifier, - ACTIONS(1070), 1, + ACTIONS(185), 1, anon_sym_not, - STATE(1432), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1064), 1, sym_primary_expression, - STATE(1435), 1, - sym_call, - STATE(1491), 1, + STATE(1470), 1, sym_expression, - STATE(1579), 1, + STATE(1901), 1, sym_selector_expression, - STATE(2455), 1, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3198), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1759), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82100,7 +106465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82117,71 +106482,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70945] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [68100] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(1540), 1, + 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(765), 1, - sym_primary_expression, - STATE(888), 1, + STATE(3446), 1, sym_selector_expression, - STATE(905), 1, + STATE(3663), 1, sym_call, - STATE(2537), 1, + STATE(3713), 1, + sym_primary_expression, + STATE(5113), 1, sym_dotted_name, - STATE(2581), 1, + STATE(5163), 1, sym_expression, - STATE(3096), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82189,7 +106554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82206,71 +106571,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71060] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [68215] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(1540), 1, + 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(770), 1, - sym_primary_expression, - STATE(888), 1, + STATE(3446), 1, sym_selector_expression, - STATE(905), 1, + STATE(3600), 1, + sym_primary_expression, + STATE(3663), 1, sym_call, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2565), 1, + STATE(5163), 1, sym_expression, - STATE(3096), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(3485), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82278,7 +106643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82295,156 +106660,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71175] = 22, - ACTIONS(1359), 1, - anon_sym_not, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(1502), 1, + [68330] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1510), 1, - anon_sym_STAR_STAR, - ACTIONS(1512), 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, - ACTIONS(1520), 1, - anon_sym_PIPE, - ACTIONS(1522), 1, - anon_sym_AMP, - ACTIONS(1524), 1, - anon_sym_CARET, - ACTIONS(1532), 1, - anon_sym_QMARK_LBRACK, - STATE(941), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(5203), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1508), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1516), 2, - anon_sym_PLUS, + 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, - ACTIONS(1518), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1526), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1351), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1406), 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(1404), 20, - anon_sym_import, - anon_sym_assert, - 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_rule, - anon_sym_check, + STATE(3485), 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, - [71282] = 26, - ACTIONS(515), 1, - anon_sym_DOT, - ACTIONS(517), 1, + 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, + [68445] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(519), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(490), 1, anon_sym_lambda, - ACTIONS(527), 1, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_QMARK_DOT, - ACTIONS(535), 1, - anon_sym_not, - ACTIONS(539), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(547), 1, + ACTIONS(504), 1, sym_string_start, - ACTIONS(692), 1, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1365), 1, sym_identifier, - STATE(1435), 1, - sym_call, - STATE(1488), 1, + ACTIONS(1369), 1, + anon_sym_not, + STATE(3761), 1, sym_primary_expression, - STATE(1601), 1, + STATE(3981), 1, sym_selector_expression, - STATE(2385), 1, + STATE(4111), 1, + sym_call, + STATE(4842), 1, sym_expression, - STATE(2464), 1, + STATE(4995), 1, sym_dotted_name, - STATE(3198), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1732), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1737), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(537), 3, + ACTIONS(622), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1735), 4, + STATE(4187), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(543), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1743), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82452,7 +106821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1747), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82469,71 +106838,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71397] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [68560] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(139), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(996), 1, + ACTIONS(181), 1, sym_identifier, - ACTIONS(998), 1, + ACTIONS(185), 1, anon_sym_not, - STATE(1667), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1064), 1, sym_primary_expression, - STATE(1784), 1, + STATE(1473), 1, sym_expression, - STATE(1791), 1, - sym_call, - STATE(1885), 1, + STATE(1901), 1, sym_selector_expression, - STATE(2468), 1, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82541,7 +106910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82558,71 +106927,141 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71512] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [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, - ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(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, - ACTIONS(790), 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, + [68752] = 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(794), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(181), 1, sym_identifier, - STATE(1789), 1, + 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(1791), 1, - sym_call, - STATE(1889), 1, - sym_selector_expression, - STATE(2419), 1, + STATE(1086), 1, sym_expression, - STATE(2529), 1, + STATE(1901), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(5065), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2147), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82630,7 +107069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82647,71 +107086,141 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71627] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [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, anon_sym_LPAREN, - ACTIONS(778), 1, anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_lambda, - ACTIONS(782), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(786), 1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(2479), 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, - ACTIONS(790), 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, + [68944] = 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(794), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(153), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(814), 1, sym_identifier, - STATE(1782), 1, - sym_expression, - STATE(1789), 1, + ACTIONS(820), 1, + anon_sym_not, + STATE(1411), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(1911), 1, sym_selector_expression, - STATE(2529), 1, + STATE(2027), 1, + sym_call, + STATE(3334), 1, + sym_expression, + STATE(5035), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(2168), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2165), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2163), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82719,7 +107228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82736,71 +107245,155 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71742] = 26, - ACTIONS(904), 1, + [69059] = 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(2060), 1, + aux_sym_comparison_operator_repeat1, + STATE(2083), 1, + sym_argument_list, + 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, - ACTIONS(910), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_rule, anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 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, + [69164] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(1540), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(2643), 1, sym_identifier, - STATE(815), 1, + ACTIONS(2791), 1, + anon_sym_not, + STATE(959), 1, sym_primary_expression, - STATE(888), 1, + STATE(1880), 1, sym_selector_expression, - STATE(905), 1, + STATE(2027), 1, sym_call, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2565), 1, + STATE(5174), 1, sym_expression, - STATE(3096), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82808,7 +107401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82825,71 +107418,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71857] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [69279] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(109), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + 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, + anon_sym_QMARK_DOT, + STATE(1080), 1, sym_primary_expression, - STATE(1236), 1, + STATE(1475), 1, + sym_expression, + STATE(1659), 1, + sym_call, + STATE(1897), 1, sym_selector_expression, - STATE(2454), 1, + STATE(5071), 1, sym_dotted_name, - STATE(2474), 1, - sym_expression, - STATE(3180), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82897,7 +107490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -82914,71 +107507,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71972] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [69394] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(151), 1, sym_float, - ACTIONS(1540), 1, + 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(813), 1, + STATE(959), 1, sym_primary_expression, - STATE(888), 1, + STATE(1880), 1, sym_selector_expression, - STATE(905), 1, + STATE(2027), 1, sym_call, - STATE(2537), 1, + STATE(5113), 1, sym_dotted_name, - STATE(2565), 1, + STATE(5174), 1, sym_expression, - STATE(3096), 1, + STATE(5990), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(2167), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(2231), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(149), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82986,7 +107579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2162), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83003,71 +107596,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72087] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [69509] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(97), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(790), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(111), 1, sym_string_start, - ACTIONS(996), 1, + ACTIONS(121), 1, sym_identifier, - ACTIONS(998), 1, + ACTIONS(125), 1, anon_sym_not, - STATE(1667), 1, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(1080), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1823), 1, + STATE(1491), 1, sym_expression, - STATE(1885), 1, + STATE(1659), 1, + sym_call, + STATE(1897), 1, sym_selector_expression, - STATE(2468), 1, + STATE(5071), 1, sym_dotted_name, - STATE(3226), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(2003), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1996), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83075,7 +107668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83092,25 +107685,130 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72202] = 4, - STATE(660), 1, - aux_sym_union_type_repeat1, + [69624] = 26, + 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(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, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1383), 1, + anon_sym_not, + STATE(231), 1, + sym_expression, + STATE(2879), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3005), 1, + sym_selector_expression, + STATE(5067), 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_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3176), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, + sym_integer, + 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, + [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, - ACTIONS(1498), 26, + 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, anon_sym_LPAREN, anon_sym_LBRACK, anon_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, @@ -83118,112 +107816,101 @@ 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(1496), 33, + ACTIONS(2449), 24, 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_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [72273] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [69820] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - STATE(1354), 1, + 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, + anon_sym_QMARK_DOT, + STATE(1080), 1, sym_primary_expression, - STATE(1414), 1, + STATE(1494), 1, + sym_expression, + STATE(1659), 1, sym_call, - STATE(1427), 1, + STATE(1897), 1, sym_selector_expression, - STATE(2484), 1, - sym_expression, - STATE(2507), 1, + STATE(5071), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83231,7 +107918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83248,71 +107935,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72388] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [69935] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(432), 1, sym_float, - ACTIONS(1540), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1341), 1, sym_identifier, - STATE(812), 1, + ACTIONS(1345), 1, + anon_sym_not, + STATE(2365), 1, + sym_call, + STATE(3007), 1, sym_primary_expression, - STATE(888), 1, + STATE(3219), 1, sym_selector_expression, - STATE(905), 1, - sym_call, - STATE(2537), 1, - sym_dotted_name, - STATE(2565), 1, + STATE(4291), 1, sym_expression, - STATE(3096), 1, + STATE(5058), 1, + sym_dotted_name, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(3246), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83320,7 +108007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83337,71 +108024,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72503] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + [70050] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(103), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(109), 1, sym_float, - ACTIONS(962), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(121), 1, sym_identifier, - ACTIONS(964), 1, + ACTIONS(125), 1, anon_sym_not, - STATE(1335), 1, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(1080), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1496), 1, sym_expression, - STATE(1414), 1, + STATE(1659), 1, sym_call, - STATE(1475), 1, + STATE(1897), 1, sym_selector_expression, - STATE(2532), 1, + STATE(5071), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5982), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(1957), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(1969), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(127), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1599), 4, + STATE(2151), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(107), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(1922), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83409,7 +108096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(1921), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83426,71 +108113,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72618] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [70165] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(406), 1, sym_float, - STATE(1354), 1, + 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, + sym_identifier, + STATE(3457), 1, sym_primary_expression, - STATE(1414), 1, + STATE(3460), 1, sym_call, - STATE(1427), 1, + STATE(3554), 1, sym_selector_expression, - STATE(2475), 1, - sym_expression, - STATE(2507), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5170), 1, + sym_expression, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(3679), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3599), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83498,7 +108185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83515,71 +108202,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72733] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [70280] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(400), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(406), 1, sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, + ACTIONS(408), 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, sym_call, - STATE(1427), 1, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, sym_selector_expression, - STATE(2461), 1, + STATE(4763), 1, sym_expression, - STATE(2507), 1, + STATE(5018), 1, sym_dotted_name, - STATE(3261), 1, + STATE(6057), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, + STATE(3679), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3699), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + ACTIONS(402), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3701), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(404), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3671), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83587,7 +108274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(3665), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83604,71 +108291,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72848] = 26, - ACTIONS(936), 1, - sym_identifier, - ACTIONS(938), 1, - anon_sym_DOT, - ACTIONS(944), 1, - anon_sym_lambda, - ACTIONS(948), 1, - anon_sym_not, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1275), 1, + [70395] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(1277), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(1279), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, - anon_sym_QMARK_DOT, - ACTIONS(1285), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(1287), 1, + ACTIONS(432), 1, sym_float, - STATE(1551), 1, - sym_primary_expression, - STATE(1561), 1, + ACTIONS(434), 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, + anon_sym_not, + STATE(2365), 1, sym_call, - STATE(1842), 1, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, sym_selector_expression, - STATE(2352), 1, + STATE(4258), 1, sym_expression, - STATE(2527), 1, + STATE(5058), 1, sym_dotted_name, - STATE(3130), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1853), 2, - sym_binary_operator, - sym_subscript, - STATE(1908), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1283), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1913), 4, + STATE(3246), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(956), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1861), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83676,7 +108363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1862), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83693,71 +108380,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72963] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, + [70510] = 26, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1259), 1, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(424), 1, + anon_sym_not, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(432), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + STATE(2296), 1, + sym_expression, + STATE(2314), 1, sym_primary_expression, - STATE(1236), 1, + STATE(2338), 1, sym_selector_expression, - STATE(2395), 1, - sym_expression, - STATE(2454), 1, + STATE(2365), 1, + sym_call, + STATE(5063), 1, sym_dotted_name, - STATE(3180), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_binary_operator, - sym_subscript, - STATE(1359), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(428), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(2536), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83765,7 +108452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83782,160 +108469,143 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73078] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, + [70625] = 9, + 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(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_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(557), 1, anon_sym_LBRACK, - ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(569), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, - sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, - sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2453), 1, - sym_expression, - STATE(2507), 1, - sym_dotted_name, - STATE(3261), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(567), 3, - anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + 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, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(473), 5, + 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, - STATE(1266), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1264), 16, - sym_schema_expr, - sym_schema_instantiation, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73193] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [70706] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(432), 1, sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(702), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_not, + STATE(2365), 1, sym_call, - STATE(1427), 1, + STATE(2977), 1, + sym_expression, + STATE(3010), 1, + sym_primary_expression, + STATE(3224), 1, sym_selector_expression, - STATE(2507), 1, + STATE(5095), 1, sym_dotted_name, - STATE(2542), 1, - sym_expression, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3233), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83943,7 +108613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -83960,71 +108630,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73308] = 26, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(910), 1, - anon_sym_lambda, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(930), 1, - anon_sym_not, - ACTIONS(1245), 1, + [70821] = 26, + ACTIONS(480), 1, + sym_identifier, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1247), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1249), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1257), 1, + ACTIONS(502), 1, sym_float, - ACTIONS(1540), 1, - sym_identifier, - STATE(811), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3608), 1, sym_primary_expression, - STATE(888), 1, - sym_selector_expression, - STATE(905), 1, + STATE(3633), 1, + sym_expression, + STATE(3663), 1, sym_call, - STATE(2537), 1, + STATE(3832), 1, + sym_selector_expression, + STATE(5122), 1, sym_dotted_name, - STATE(2565), 1, - sym_expression, - STATE(3096), 1, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(929), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1253), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(938), 4, + STATE(4009), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(922), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84032,7 +108702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(934), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -84049,71 +108719,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73423] = 26, - ACTIONS(409), 1, - anon_sym_DOT, - ACTIONS(419), 1, - anon_sym_lambda, - ACTIONS(427), 1, - anon_sym_not, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(972), 1, - sym_identifier, - ACTIONS(1259), 1, + [70936] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(1261), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(1263), 1, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_QMARK_DOT, - ACTIONS(1269), 1, + ACTIONS(496), 1, anon_sym_DQUOTE, - ACTIONS(1271), 1, + ACTIONS(502), 1, sym_float, - STATE(1227), 1, - sym_call, - STATE(1229), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, sym_primary_expression, - STATE(1236), 1, + STATE(3663), 1, + sym_call, + STATE(3781), 1, sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2473), 1, + STATE(4774), 1, sym_expression, - STATE(3180), 1, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, + STATE(3547), 2, sym_binary_operator, sym_subscript, - STATE(1359), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1267), 3, + ACTIONS(498), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1360), 4, + STATE(3939), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(437), 5, + ACTIONS(500), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1348), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84121,7 +108791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1339), 16, + STATE(3535), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -84138,71 +108808,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73538] = 26, - ACTIONS(449), 1, + [71051] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(53), 1, sym_float, - STATE(1354), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2733), 1, + sym_identifier, + ACTIONS(2795), 1, + sym_line_continuation, + STATE(3867), 1, sym_primary_expression, - STATE(1414), 1, + STATE(3874), 1, sym_call, - STATE(1427), 1, + STATE(4230), 1, sym_selector_expression, - STATE(2450), 1, - sym_expression, - STATE(2507), 1, + STATE(5113), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5187), 1, + sym_expression, + STATE(6288), 1, sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(3560), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(4294), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(3542), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84210,7 +108881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(4401), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -84227,71 +108898,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73653] = 26, - ACTIONS(770), 1, - anon_sym_DOT, - ACTIONS(774), 1, + [71168] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(778), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(261), 1, anon_sym_lambda, - ACTIONS(782), 1, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(784), 1, - anon_sym_QMARK_DOT, - ACTIONS(786), 1, - anon_sym_not, - ACTIONS(790), 1, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(794), 1, + ACTIONS(273), 1, sym_float, - ACTIONS(796), 1, + ACTIONS(275), 1, sym_string_start, - ACTIONS(976), 1, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(850), 1, sym_identifier, - STATE(1761), 1, + ACTIONS(854), 1, + anon_sym_not, + STATE(139), 1, sym_expression, - STATE(1789), 1, + STATE(2313), 1, sym_primary_expression, - STATE(1791), 1, - sym_call, - STATE(1889), 1, + STATE(2328), 1, sym_selector_expression, - STATE(2529), 1, + STATE(2407), 1, + sym_call, + STATE(5009), 1, sym_dotted_name, - STATE(3226), 1, + STATE(6187), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2002), 2, - sym_binary_operator, - sym_subscript, - STATE(2003), 2, + STATE(2456), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(788), 3, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(269), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2004), 4, + STATE(2543), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(792), 5, + ACTIONS(271), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1998), 7, + STATE(2510), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84299,7 +108970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(2008), 16, + STATE(2517), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -84316,71 +108987,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73768] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [71283] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(432), 1, sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, + ACTIONS(434), 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, + anon_sym_not, + STATE(2365), 1, sym_call, - STATE(1427), 1, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, sym_selector_expression, - STATE(2451), 1, + STATE(4269), 1, sym_expression, - STATE(2507), 1, + STATE(5058), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3246), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84388,7 +109059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -84405,71 +109076,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73883] = 26, - ACTIONS(449), 1, - anon_sym_DOT, - ACTIONS(457), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, + [71398] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(557), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(559), 1, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_QMARK_DOT, - ACTIONS(569), 1, + ACTIONS(426), 1, anon_sym_DQUOTE, - ACTIONS(571), 1, + ACTIONS(432), 1, sym_float, - STATE(1354), 1, - sym_primary_expression, - STATE(1414), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(702), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_not, + STATE(2365), 1, sym_call, - STATE(1427), 1, - sym_selector_expression, - STATE(2456), 1, + STATE(2987), 1, sym_expression, - STATE(2507), 1, + STATE(3010), 1, + sym_primary_expression, + STATE(3224), 1, + sym_selector_expression, + STATE(5095), 1, sym_dotted_name, - STATE(3261), 1, + STATE(5953), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1271), 2, - sym_binary_operator, - sym_subscript, - STATE(1272), 2, + STATE(2454), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(567), 3, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - ACTIONS(27), 4, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1631), 4, + STATE(3233), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(473), 5, + ACTIONS(430), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1266), 7, + STATE(2459), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84477,7 +109148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1264), 16, + STATE(2463), 16, sym_schema_expr, sym_schema_instantiation, sym_lambda_expr, @@ -84494,11 +109165,20 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73998] = 3, + [71513] = 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, - ACTIONS(1605), 26, + STATE(1539), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -84508,7 +109188,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, @@ -84525,14 +109204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1607), 33, + ACTIONS(2449), 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, @@ -84544,10 +109222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -84559,1336 +109235,2318 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [74066] = 4, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [71590] = 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, - anon_sym_PLUS, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(5112), 1, + sym_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1609), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4378), 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, - [74136] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1613), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [71705] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2793), 1, + sym_identifier, + STATE(3434), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 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, + sym_binary_operator, + sym_subscript, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1615), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74204] = 4, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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(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, + [71820] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(2793), 1, + sym_identifier, + ACTIONS(2797), 1, + anon_sym_not, + STATE(3434), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 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, + sym_binary_operator, + sym_subscript, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1609), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74274] = 4, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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(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, + [71935] = 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 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(4029), 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, + 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, + 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(1609), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4294), 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, - [74344] = 4, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [72050] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(702), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_not, + STATE(2365), 1, + sym_call, + STATE(2988), 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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1609), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3233), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74414] = 4, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [72165] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(186), 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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1609), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2453), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74484] = 4, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [72280] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(1341), 1, + sym_identifier, + ACTIONS(1345), 1, + anon_sym_not, + STATE(2365), 1, + sym_call, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, + sym_selector_expression, + STATE(4287), 1, + sym_expression, + STATE(5058), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1609), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3246), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74554] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1617), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [72395] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_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(4754), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1619), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74622] = 4, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [72510] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_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(4753), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1609), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74692] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1483), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [72625] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(398), 1, + anon_sym_not, + 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_QMARK_DOT, + STATE(3427), 1, + sym_expression, + STATE(3432), 1, + sym_primary_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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1478), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3592), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74760] = 4, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [72740] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(702), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_not, + STATE(2365), 1, + sym_call, + STATE(2975), 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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1609), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3233), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74830] = 4, - ACTIONS(1603), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1490), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [72855] = 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 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(4043), 1, + sym_primary_expression, + STATE(4048), 1, + sym_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1488), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4339), 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, - [74900] = 4, - STATE(848), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1621), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [72970] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - ACTIONS(1623), 32, - anon_sym_import, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(474), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2793), 1, + sym_identifier, + STATE(3435), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(402), 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_rule, - 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [74970] = 8, - ACTIONS(1632), 1, + 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(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, + [73085] = 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, + anon_sym_DOT, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1638), 1, - anon_sym_is, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2793), 1, + sym_identifier, + STATE(3452), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1635), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1625), 22, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3679), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(402), 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 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(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, + [73200] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2793), 1, + sym_identifier, + STATE(3437), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 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, + sym_binary_operator, + sym_subscript, + 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, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1627), 27, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, + STATE(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75048] = 4, - STATE(871), 1, - aux_sym_comparison_operator_repeat1, + 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(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, + [73315] = 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, + anon_sym_DOT, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2793), 1, + sym_identifier, + STATE(3439), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3679), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(402), 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 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(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, + [73430] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2793), 1, + sym_identifier, + STATE(3441), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 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, + sym_binary_operator, + sym_subscript, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1643), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75118] = 8, - ACTIONS(1648), 1, + 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(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, + [73545] = 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, + anon_sym_DOT, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(1654), 1, - anon_sym_is, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2793), 1, + sym_identifier, + STATE(3442), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1625), 22, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(3679), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(402), 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 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(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, + [73660] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2793), 1, + sym_identifier, + STATE(3445), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 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, + sym_binary_operator, + sym_subscript, + 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, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1627), 27, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, + STATE(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75196] = 4, - STATE(953), 1, - sym_dictionary, + 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(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, + [73775] = 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(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(4777), 1, + sym_expression, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [73890] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(1395), 1, + anon_sym_not, + ACTIONS(2699), 1, + sym_identifier, + STATE(3704), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3726), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5178), 1, + sym_expression, + STATE(6118), 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, + sym_binary_operator, + sym_subscript, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1643), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3947), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75266] = 3, + 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(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, + [74005] = 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(4786), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [74120] = 21, + 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, + 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_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(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, - anon_sym_QMARK_LBRACK, + 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(1607), 33, + 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_EQ, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75334] = 3, + [74225] = 26, + ACTIONS(57), 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, + 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_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(747), 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, - ACTIONS(1659), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [74340] = 21, + ACTIONS(2369), 1, anon_sym_LPAREN, + ACTIONS(2371), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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, + 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_DQUOTE, anon_sym_DASH, + ACTIONS(2747), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2755), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + 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, - anon_sym_QMARK_LBRACK, + 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(1657), 33, + ACTIONS(2365), 24, 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_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75402] = 4, - STATE(867), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [74445] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1643), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2240), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75472] = 4, - STATE(2267), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 26, + ACTIONS(221), 27, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -85915,12 +111573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1643), 32, + 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, @@ -85933,7 +111592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -85948,861 +111606,1262 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [75542] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1663), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [74631] = 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(1661), 33, - anon_sym_import, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + STATE(3663), 1, + sym_call, + STATE(4283), 1, + sym_primary_expression, + STATE(4399), 1, + sym_expression, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 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(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, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - 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(4416), 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, - [75610] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1667), 26, - sym__dedent, + 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, - anon_sym_COMMA, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + 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, + sym_binary_operator, + sym_subscript, + STATE(3056), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(2609), 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(1665), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3009), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(596), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75678] = 4, - STATE(2267), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [74861] = 26, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(169), 1, + anon_sym_not, + 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, + STATE(1125), 1, + sym_primary_expression, + STATE(1503), 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(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, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1643), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2154), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75748] = 4, - STATE(560), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1621), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [74976] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2396), 1, + sym_call, + STATE(2552), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1623), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2849), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75818] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1667), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [75091] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(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, + sym_call, + STATE(3301), 1, + sym_expression, + STATE(5083), 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(173), 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(1665), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2210), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75886] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1663), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [75206] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2299), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1661), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2536), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [75954] = 4, - ACTIONS(1492), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1490), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [75321] = 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(612), 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, + sym_primary_expression, + STATE(3823), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1488), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4142), 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, - [76024] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1483), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [75436] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + STATE(2551), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1478), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2839), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76092] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1617), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [75551] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + STATE(2773), 1, + sym_expression, + STATE(2793), 1, + sym_primary_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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1619), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3169), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76160] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1613), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [75666] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + STATE(2766), 1, + sym_primary_expression, + STATE(2776), 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(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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1615), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3144), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76228] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1671), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [75781] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2793), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3466), 1, + sym_primary_expression, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5170), 1, + sym_expression, + STATE(6057), 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, + sym_binary_operator, + sym_subscript, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1669), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76296] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1675), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + 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(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, + [75896] = 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(1673), 33, - anon_sym_import, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(474), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2793), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3467), 1, + sym_primary_expression, + STATE(3554), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5195), 1, + sym_expression, + STATE(6057), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(402), 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_rule, - 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(3599), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76364] = 3, + 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(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, + [76011] = 26, + ACTIONS(155), 1, + sym_identifier, + 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(169), 1, + anon_sym_not, + 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, + STATE(1125), 1, + sym_primary_expression, + STATE(1506), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2149), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(173), 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(2154), 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(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, + [76126] = 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(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, anon_sym_QMARK_DOT, + STATE(726), 1, + sym_primary_expression, + STATE(750), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1669), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2056), 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, - [76432] = 3, + 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, + [76241] = 4, + STATE(1482), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 26, - sym__dedent, + ACTIONS(221), 27, + sym__newline, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86827,14 +112886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1677), 33, + 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_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -86846,7 +112905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -86861,271 +112919,910 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76500] = 3, + [76312] = 26, + ACTIONS(155), 1, + sym_identifier, + 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(169), 1, + anon_sym_not, + 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, + STATE(1125), 1, + sym_primary_expression, + STATE(1507), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(2149), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(173), 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(2154), 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(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, + [76427] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(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, + sym_call, + STATE(3303), 1, + sym_expression, + STATE(5083), 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(173), 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, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [76542] = 26, + ACTIONS(129), 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, + anon_sym_not, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(151), 1, sym_float, - ACTIONS(1673), 33, - anon_sym_import, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1879), 1, + sym_primary_expression, + STATE(2027), 1, + sym_call, + STATE(2058), 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_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_rule, - 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(2236), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76568] = 3, + 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, + [76657] = 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, + anon_sym_DOT, + ACTIONS(211), 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, + sym_call, + STATE(3305), 1, + sym_expression, + STATE(5083), 1, + sym_dotted_name, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 26, + STATE(2149), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(173), 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(2210), 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(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, + [76772] = 26, + ACTIONS(554), 1, + sym_identifier, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(568), 1, + anon_sym_not, + ACTIONS(576), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 1, anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + STATE(3807), 1, + sym_call, + STATE(3815), 1, + sym_expression, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1677), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76636] = 3, + 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, + [76887] = 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(842), 1, + sym_identifier, + ACTIONS(848), 1, + anon_sym_not, + STATE(2399), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(2505), 1, + sym_selector_expression, + STATE(3725), 1, + sym_expression, + STATE(5000), 1, + sym_dotted_name, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 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(2743), 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(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, + [77002] = 26, + ACTIONS(480), 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + STATE(3608), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3832), 1, + sym_selector_expression, + STATE(4202), 1, + sym_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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1681), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4009), 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, - [76704] = 3, + 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, + [77117] = 26, + ACTIONS(384), 1, + sym_identifier, + 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(398), 1, + anon_sym_not, + 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_QMARK_DOT, + STATE(3432), 1, + sym_primary_expression, + STATE(3444), 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, - ACTIONS(1683), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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_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, + sym_integer, + 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, + [77232] = 26, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(169), 1, + anon_sym_not, + 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, + STATE(1125), 1, + sym_primary_expression, + STATE(1509), 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(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, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_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(2154), 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(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, + [77347] = 26, + ACTIONS(530), 1, + sym_identifier, + 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(542), 1, + anon_sym_not, + ACTIONS(544), 1, + anon_sym_DQUOTE, + ACTIONS(550), 1, sym_float, - ACTIONS(1681), 33, - anon_sym_import, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + STATE(3654), 1, + sym_expression, + STATE(3717), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3835), 1, + sym_selector_expression, + STATE(5121), 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_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_rule, - 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(4019), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76772] = 3, + 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, + [77462] = 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, - ACTIONS(1687), 26, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2481), 25, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -87135,7 +113832,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, @@ -87152,14 +113848,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1685), 33, + ACTIONS(2479), 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, @@ -87171,10 +113866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -87186,606 +113879,1009 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76840] = 4, - STATE(943), 1, - sym_dictionary, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [77539] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(724), 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(730), 1, sym_float, - ACTIONS(1643), 32, - anon_sym_import, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(3872), 1, + sym_primary_expression, + STATE(3909), 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(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, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - 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(4249), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76910] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [77654] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(5120), 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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1685), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [76978] = 4, - STATE(1089), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [77769] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(267), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym_float, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(378), 1, + anon_sym_not, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, anon_sym_QMARK_DOT, + STATE(2351), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(2408), 1, + sym_expression, + STATE(2660), 1, + sym_selector_expression, + STATE(5040), 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(380), 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(1643), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2691), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [77048] = 4, - STATE(1108), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [77884] = 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 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(4065), 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, + 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, + 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(1643), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4294), 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, - [77118] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1659), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [77999] = 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 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(4064), 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, + 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, + 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(1657), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4294), 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, - [77186] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1691), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [78114] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(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, + sym_call, + STATE(3308), 1, + sym_expression, + STATE(5083), 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(173), 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(1689), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2210), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [77253] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1693), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [78229] = 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 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(4060), 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, + 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, + 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(1695), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4294), 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, - [77320] = 3, + 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, + [78344] = 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(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 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(4038), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 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(4294), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(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, + [78459] = 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 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, + sym_call, + STATE(2065), 1, + sym_selector_expression, + STATE(3312), 1, + sym_expression, + STATE(5089), 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(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(1699), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2209), 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, - [77387] = 5, - ACTIONS(1701), 1, - anon_sym_in, - ACTIONS(1703), 1, + 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, + [78574] = 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, + anon_sym_DOT, + ACTIONS(476), 1, + 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(4757), 1, + sym_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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_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, + sym_integer, + 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, + [78689] = 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 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, + sym_call, + STATE(2065), 1, + sym_selector_expression, + STATE(3319), 1, + sym_expression, + STATE(5089), 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(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(1643), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2209), 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, - [77458] = 3, + 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, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 26, + ACTIONS(2520), 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, @@ -87801,14 +114897,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(1707), 32, + 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, @@ -87821,7 +114917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -87836,589 +114931,468 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77525] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1709), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [78887] = 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(1711), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(1395), 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(2733), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [77592] = 3, + STATE(3874), 1, + sym_call, + STATE(4026), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 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(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 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(1715), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4294), 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, - [77659] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1717), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [79002] = 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(1719), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(1395), 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(2733), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [77726] = 3, + STATE(3874), 1, + sym_call, + STATE(4025), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 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(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 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(1719), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4294), 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, - [77793] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1721), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [79117] = 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, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(77), 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(83), 1, sym_float, - ACTIONS(1723), 32, - anon_sym_import, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(756), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [77860] = 3, + ACTIONS(762), 1, + anon_sym_not, + STATE(1365), 1, + sym_primary_expression, + STATE(1533), 1, + sym_call, + STATE(2065), 1, + sym_selector_expression, + STATE(3325), 1, + sym_expression, + STATE(5089), 1, + sym_dotted_name, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 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(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(2067), 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(1689), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2209), 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, - [77927] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1725), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [79232] = 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(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(1127), 1, + sym_primary_expression, + STATE(1511), 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(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, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1727), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2155), 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, - [77994] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1729), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [79347] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(464), 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(470), 1, sym_float, - ACTIONS(1731), 32, - anon_sym_import, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + ACTIONS(1311), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [78061] = 3, + ACTIONS(1315), 1, + anon_sym_not, + STATE(220), 1, + sym_expression, + STATE(2538), 1, + sym_primary_expression, + STATE(2706), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5068), 1, + sym_dotted_name, + STATE(5958), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1731), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2838), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [78128] = 3, + 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, + [79462] = 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, - ACTIONS(1733), 26, + STATE(777), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2481), 26, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88426,7 +115400,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, @@ -88443,13 +115416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1735), 32, + ACTIONS(2479), 29, 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, @@ -88461,10 +115433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -88476,919 +115446,1102 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [78195] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1737), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [79539] = 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(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(1127), 1, + sym_primary_expression, + STATE(1514), 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(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, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1739), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2155), 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, - [78262] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1741), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [79654] = 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 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(3958), 1, + sym_expression, + STATE(4043), 1, + sym_primary_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1743), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4339), 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, - [78329] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1745), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [79769] = 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 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(4015), 1, + sym_expression, + STATE(4043), 1, + sym_primary_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1747), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4339), 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, - [78396] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1749), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [79884] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_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(4965), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1751), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [78463] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [79999] = 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, - anon_sym_PLUS, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(4980), 1, + sym_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1643), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4378), 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, - [78530] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1753), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [80114] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(724), 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(730), 1, sym_float, - ACTIONS(1755), 32, - anon_sym_import, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 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(2615), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [78597] = 3, + STATE(4082), 1, + sym_call, + STATE(4109), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1759), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4275), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [78664] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1448), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [80229] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(4970), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1343), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4299), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [78731] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1761), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [80344] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(398), 1, + anon_sym_not, + 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_QMARK_DOT, + STATE(3432), 1, + sym_primary_expression, + STATE(3460), 1, + sym_call, + STATE(3468), 1, + sym_expression, + 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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1763), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3592), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [78798] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [80459] = 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(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, anon_sym_QMARK_DOT, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(776), 1, + anon_sym_not, + STATE(119), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1643), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(1980), 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, - [78865] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1765), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [80574] = 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, - anon_sym_PLUS, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(4977), 1, + sym_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1767), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4378), 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, - [78932] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1769), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [80689] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_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(4748), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1771), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [78999] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [80804] = 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, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(77), 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(83), 1, sym_float, - ACTIONS(1643), 32, - anon_sym_import, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(756), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [79066] = 5, - ACTIONS(1773), 1, - anon_sym_in, - ACTIONS(1775), 1, + ACTIONS(762), 1, anon_sym_not, + STATE(1365), 1, + sym_primary_expression, + STATE(1533), 1, + sym_call, + STATE(2065), 1, + sym_selector_expression, + STATE(3328), 1, + sym_expression, + STATE(5089), 1, + sym_dotted_name, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 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(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(2067), 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(1643), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2209), 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, - [79137] = 3, + 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, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1448), 26, - sym__dedent, + 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, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -89405,12 +116558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1343), 32, + ACTIONS(2467), 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, @@ -89423,11 +116574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -89438,21 +116586,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79204] = 3, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 26, - sym__dedent, + 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_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -89469,13 +116631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1643), 32, + ACTIONS(2467), 26, 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, @@ -89487,11 +116646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -89502,399 +116658,557 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79271] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1777), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [81081] = 26, + ACTIONS(57), 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(745), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1779), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2086), 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, - [79338] = 5, - ACTIONS(1781), 1, - anon_sym_in, - ACTIONS(1783), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 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(1643), 30, - anon_sym_import, + 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, + [81196] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + 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(219), 1, + anon_sym_LBRACK, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(5052), 1, + sym_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 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_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4378), 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, - [79409] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1785), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [81311] = 26, + ACTIONS(57), 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(743), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1787), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2086), 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, - [79476] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1791), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [81426] = 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(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(1127), 1, + sym_primary_expression, + STATE(1519), 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(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, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1789), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2155), 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, - [79543] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1795), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [81541] = 26, + ACTIONS(57), 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(742), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1793), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2086), 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, - [79610] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1795), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [81656] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(1186), 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, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1793), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2147), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [79677] = 3, + 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, + [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, - ACTIONS(1799), 26, - sym__dedent, + 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, @@ -89902,7 +117216,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, @@ -89919,13 +117232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1797), 32, + ACTIONS(2449), 29, 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, @@ -89937,10 +117249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -89952,215 +117262,308 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79744] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1799), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [81848] = 26, + ACTIONS(57), 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(748), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1797), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2086), 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, - [79811] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1801), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [81963] = 26, + ACTIONS(57), 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(740), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1803), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2086), 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, - [79878] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1805), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [82078] = 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, - anon_sym_PLUS, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(5142), 1, + sym_expression, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1807), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4378), 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, - [79945] = 3, + 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, + [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, - ACTIONS(1811), 26, + 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, anon_sym_LPAREN, anon_sym_LBRACK, anon_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, @@ -90168,63 +117571,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1809), 32, + ACTIONS(2449), 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_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [80012] = 3, + [82274] = 9, + 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, - ACTIONS(1777), 26, + 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_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, @@ -90232,125 +117644,241 @@ 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(1779), 32, + ACTIONS(2449), 23, 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_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [80079] = 3, + [82355] = 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(201), 1, + sym_identifier, + ACTIONS(205), 1, + anon_sym_not, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(1900), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2088), 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, - ACTIONS(1785), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [82470] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_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(4742), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1787), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [80146] = 3, + 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, + [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, - ACTIONS(1813), 26, + 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, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -90367,12 +117895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1815), 32, + ACTIONS(2467), 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, @@ -90385,11 +117911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -90400,203 +117923,295 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80213] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1819), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [82666] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(171), 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(177), 1, sym_float, - ACTIONS(1817), 32, - anon_sym_import, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(205), 1, + anon_sym_not, + ACTIONS(209), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(1900), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2091), 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_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_rule, - 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(2240), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [80280] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1823), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [82781] = 27, + 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(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, + anon_sym_LBRACK, + ACTIONS(2825), 1, + sym_identifier, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4250), 1, + sym_selector_expression, + STATE(4415), 1, + sym_schema_instantiation, + STATE(4973), 1, + sym_dotted_name, + STATE(5149), 1, + sym_expression, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1821), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4378), 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, - [80347] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1827), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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), 15, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [82898] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + STATE(1900), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2092), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1825), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2240), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [80414] = 3, + 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, + [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, - ACTIONS(1831), 26, + 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, @@ -90605,8 +118220,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, @@ -90623,13 +118236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1829), 32, + ACTIONS(2467), 26, 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, @@ -90641,11 +118251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -90656,139 +118263,198 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80481] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1835), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [83094] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + STATE(1900), 1, + sym_primary_expression, + STATE(2049), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1833), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - 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(2240), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [80548] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1837), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [83209] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + STATE(1900), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2094), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1839), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - 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(2240), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [80615] = 3, + 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, + [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, - ACTIONS(1843), 26, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 25, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -90798,7 +118464,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, @@ -90815,12 +118480,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1841), 32, + ACTIONS(2449), 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, @@ -90833,10 +118498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -90848,13 +118511,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80682] = 3, + [83401] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 26, + ACTIONS(221), 27, + sym__newline, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90879,12 +118545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1809), 32, + 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, @@ -90897,7 +118564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, anon_sym_and, @@ -90912,11 +118578,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80749] = 3, + [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, - ACTIONS(1847), 26, + STATE(777), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 26, + sym__newline, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -90926,7 +118602,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, @@ -90943,13 +118618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1845), 32, + ACTIONS(2449), 29, 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, @@ -90961,10 +118635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -90976,1615 +118648,2073 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80816] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1849), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [83549] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2313), 1, + sym_primary_expression, + STATE(2328), 1, + sym_selector_expression, + STATE(2407), 1, + sym_call, + STATE(3718), 1, + sym_expression, + STATE(5009), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1851), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [80883] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1791), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [83664] = 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + STATE(3663), 1, + sym_call, + STATE(4283), 1, + sym_primary_expression, + STATE(4342), 1, + sym_expression, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 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(750), 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(1789), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4416), 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, - [80950] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1853), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [83779] = 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + STATE(3663), 1, + sym_call, + STATE(4283), 1, + sym_primary_expression, + STATE(4345), 1, + sym_expression, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 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(750), 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(1855), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4416), 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, - [81017] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1859), 26, - sym__dedent, + 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, + [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, - anon_sym_COMMA, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2611), 1, anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + STATE(2678), 1, + sym_primary_expression, + STATE(2688), 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, + 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(1857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3009), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(596), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [81084] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1863), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [84009] = 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + STATE(3663), 1, + sym_call, + STATE(4283), 1, + sym_primary_expression, + STATE(4348), 1, + sym_expression, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 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(750), 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(1861), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4416), 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, - [81151] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1799), 26, - sym__dedent, + 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, + [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, - anon_sym_COMMA, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2611), 1, anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + STATE(2678), 1, + sym_primary_expression, + STATE(2686), 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, + 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(1797), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3009), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(596), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [81218] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1867), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [84239] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - ACTIONS(1865), 32, - anon_sym_import, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(842), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [81285] = 3, + ACTIONS(848), 1, + anon_sym_not, + STATE(2399), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(2505), 1, + sym_selector_expression, + STATE(3817), 1, + sym_expression, + STATE(5000), 1, + sym_dotted_name, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 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(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 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(1869), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2743), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [81352] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1875), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [84354] = 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, - anon_sym_PLUS, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(4918), 1, + sym_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + 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(1873), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4378), 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, - [81419] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1879), 26, - sym__dedent, + 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, + [84469] = 26, + ACTIONS(578), 1, + sym_identifier, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(590), 1, + anon_sym_not, + ACTIONS(598), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2611), 1, anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + STATE(2678), 1, + sym_primary_expression, + STATE(2685), 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, + 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(1877), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(3009), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(596), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [81486] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1853), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [84584] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(267), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym_float, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(378), 1, + anon_sym_not, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, anon_sym_QMARK_DOT, + STATE(2351), 1, + sym_primary_expression, + STATE(2358), 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(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, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1855), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2691), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [81553] = 5, - ACTIONS(1781), 1, - anon_sym_in, - ACTIONS(1881), 1, + 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, + [84699] = 26, + ACTIONS(578), 1, + sym_identifier, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(590), 1, anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, - sym__dedent, + ACTIONS(598), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2611), 1, anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + STATE(2678), 1, + sym_primary_expression, + STATE(2695), 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, + 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(1643), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3009), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(596), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [81624] = 5, - ACTIONS(1701), 1, - anon_sym_in, - ACTIONS(1883), 1, + 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, + [84814] = 26, + ACTIONS(578), 1, + sym_identifier, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(590), 1, anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1641), 26, + ACTIONS(598), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2611), 1, anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + STATE(2678), 1, + sym_primary_expression, + STATE(2683), 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, + 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(1643), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3009), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(596), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [81695] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1879), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [84929] = 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + STATE(3663), 1, + sym_call, + STATE(4283), 1, + sym_primary_expression, + STATE(4355), 1, + sym_expression, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 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(750), 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(1877), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(4416), 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, - [81762] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1819), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [85044] = 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(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(3720), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5203), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1817), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3485), 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, - [81829] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1875), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [85159] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2396), 1, + sym_call, + STATE(2608), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1873), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(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_rule, - 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(2849), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [81896] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1693), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [85274] = 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + STATE(3663), 1, + sym_call, + STATE(4257), 1, + sym_expression, + STATE(4283), 1, + sym_primary_expression, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 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(750), 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(1695), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4416), 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, - [81963] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1823), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + 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, + [85389] = 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, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_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(526), 1, sym_float, - ACTIONS(1821), 32, - anon_sym_import, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + STATE(2396), 1, + sym_call, + STATE(2610), 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_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_rule, - 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(2849), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82030] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1849), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [85504] = 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(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(1127), 1, + sym_primary_expression, + STATE(1533), 1, + sym_call, + STATE(1540), 1, + sym_expression, + STATE(2098), 1, + sym_selector_expression, + STATE(5107), 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(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(1851), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2155), 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, - [82097] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1871), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [85619] = 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(1869), 32, - anon_sym_import, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1273), 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(1299), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82164] = 3, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(5021), 1, + sym_expression, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1839), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - 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(3939), 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, - [82231] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1813), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [85734] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2396), 1, + sym_call, + STATE(2611), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1815), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2849), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82298] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1805), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [85849] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(4916), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1807), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4299), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82365] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1801), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [85964] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1803), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2849), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82432] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1697), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2396), 1, + sym_call, + STATE(2616), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1699), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2849), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82499] = 3, + 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, + [86194] = 10, + ACTIONS(131), 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, - ACTIONS(1867), 26, + STATE(1539), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 24, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -92593,8 +120723,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, @@ -92611,12 +120739,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1865), 32, + ACTIONS(2355), 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, @@ -92629,11 +120756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -92644,149 +120768,213 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82566] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [86277] = 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(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, anon_sym_QMARK_DOT, + STATE(1080), 1, + sym_primary_expression, + STATE(1187), 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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1707), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2151), 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, - [82633] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1709), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [86392] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(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, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1711), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2536), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82700] = 3, + 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, + anon_sym_QMARK_DOT, + ACTIONS(2777), 1, + anon_sym_if, + ACTIONS(2779), 1, + anon_sym_and, + ACTIONS(2781), 1, + anon_sym_PLUS, + ACTIONS(2829), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 26, - sym__dedent, + STATE(782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 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_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -92803,13 +120991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1715), 32, + ACTIONS(2355), 27, 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, @@ -92821,11 +121007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -92836,651 +121019,916 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82767] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1717), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [86590] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2314), 1, + sym_primary_expression, + STATE(2317), 1, + sym_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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1719), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2536), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82834] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1717), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [86705] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(702), 1, + sym_identifier, + ACTIONS(706), 1, + anon_sym_not, + STATE(2365), 1, + sym_call, + STATE(2976), 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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1719), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3233), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82901] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1721), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [86820] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_QMARK_DOT, + STATE(2276), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1723), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2558), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [82968] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1827), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [86935] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2314), 1, + sym_primary_expression, + STATE(2316), 1, + sym_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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1825), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2536), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [83035] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1725), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [87050] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2314), 1, + sym_primary_expression, + STATE(2338), 1, + sym_selector_expression, + STATE(2365), 1, + sym_call, + STATE(2794), 1, + sym_expression, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1727), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2536), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [83102] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1729), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [87165] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1731), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3233), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [83169] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1729), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + sym_identifier, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(2311), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1731), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2536), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [83236] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1733), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [87395] = 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(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(4311), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5168), 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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1735), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3485), 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, - [83303] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1737), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [87510] = 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(1391), 1, + 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, + 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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1739), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3485), 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, - [83370] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1741), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + sym_identifier, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(169), 1, + anon_sym_not, + 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, + STATE(1125), 1, + sym_primary_expression, + STATE(1202), 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(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, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1743), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2154), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [83437] = 3, + 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, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 26, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 24, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -93489,8 +121937,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, @@ -93507,12 +121953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1747), 32, + ACTIONS(2355), 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, @@ -93525,11 +121970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -93540,535 +121982,1370 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83504] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1749), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [87823] = 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(612), 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, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1751), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4142), 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, - [83571] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1753), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, 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(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + STATE(1127), 1, + sym_primary_expression, + STATE(1206), 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(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, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1755), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(2155), 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, - [83638] = 3, + 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, + [88053] = 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(5185), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [88168] = 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(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(5207), 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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1759), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3485), 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, - [83705] = 3, + 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, + [88283] = 26, + ACTIONS(480), 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + 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, - ACTIONS(1761), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [88398] = 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(612), 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, + sym_primary_expression, + STATE(3737), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1763), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4142), 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, - [83772] = 3, + 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, + [88513] = 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(654), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_not, + STATE(2396), 1, + sym_call, + STATE(2850), 1, + sym_primary_expression, + STATE(2852), 1, + sym_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, - ACTIONS(1765), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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_TILDE, + ACTIONS(29), 4, + 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, + 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, + [88628] = 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(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(3722), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1767), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3485), 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, - [83839] = 3, + 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, + [88743] = 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(1395), 1, + anon_sym_not, + ACTIONS(2759), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, + sym_call, + STATE(3721), 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, - ACTIONS(1769), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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_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, + [88858] = 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(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(3712), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1771), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(3485), 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, - [83906] = 5, - ACTIONS(1773), 1, - anon_sym_in, - ACTIONS(1775), 1, + 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, + 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(1395), 1, anon_sym_not, + ACTIONS(2759), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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_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, + [89088] = 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(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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1643), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3485), 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, - [83977] = 3, + 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_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(1395), 1, + anon_sym_not, + ACTIONS(2759), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, + sym_call, + STATE(3705), 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, - ACTIONS(1799), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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_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, + [89318] = 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(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(3700), 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, - 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(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, + [89433] = 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(1797), 32, - anon_sym_import, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(612), 1, + sym_identifier, + ACTIONS(618), 1, + anon_sym_not, + ACTIONS(672), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3729), 1, + sym_primary_expression, + STATE(3738), 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_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_rule, - 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(4142), 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, - [84044] = 3, + 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, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 26, + STATE(777), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 25, + 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, @@ -94085,13 +123362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1861), 32, + ACTIONS(2355), 27, 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, @@ -94103,11 +123378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -94118,3432 +123390,4561 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84111] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1859), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [89631] = 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(1857), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_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(504), 1, + sym_string_start, + ACTIONS(612), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84178] = 3, + ACTIONS(618), 1, + anon_sym_not, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3729), 1, + sym_primary_expression, + STATE(3806), 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, - ACTIONS(1847), 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(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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1845), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4142), 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, - [84245] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1843), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [89746] = 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(612), 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, + sym_primary_expression, + STATE(3741), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1841), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_rule, - 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(4142), 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, - [84312] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1835), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [89861] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(1102), 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, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1833), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - 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(2147), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [84379] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1831), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + 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, + [89976] = 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(1829), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_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(111), 1, + sym_string_start, + ACTIONS(121), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84446] = 8, - ACTIONS(1885), 1, - sym_isMutableFlag, - ACTIONS(1887), 1, - anon_sym_QMARK_COLON, - STATE(1086), 1, - aux_sym_comparison_operator_repeat1, - STATE(1146), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(1080), 1, + sym_primary_expression, + STATE(1194), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2151), 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, - ACTIONS(748), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [90091] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(464), 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(470), 1, sym_float, - [84518] = 8, - ACTIONS(1885), 1, - sym_isMutableFlag, - ACTIONS(1887), 1, - anon_sym_QMARK_COLON, - STATE(1146), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, + anon_sym_DOT, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + STATE(2622), 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, - ACTIONS(750), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2839), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(748), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [90206] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(426), 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(432), 1, sym_float, - [84590] = 11, - ACTIONS(1327), 1, - anon_sym_EQ, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(1891), 1, - sym_isMutableFlag, - ACTIONS(1893), 1, - anon_sym_QMARK_COLON, - STATE(1942), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2246), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1329), 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(750), 14, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 19, - sym__newline, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, + ACTIONS(444), 1, anon_sym_QMARK_DOT, + ACTIONS(702), 1, + sym_identifier, + ACTIONS(706), 1, 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, - [84668] = 8, - ACTIONS(1885), 1, - sym_isMutableFlag, - ACTIONS(1887), 1, - anon_sym_QMARK_COLON, - STATE(1146), 1, - sym_dict_expr, - STATE(1203), 1, - aux_sym_comparison_operator_repeat1, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, + STATE(2365), 1, + sym_call, + STATE(3010), 1, + sym_primary_expression, + STATE(3071), 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, - ACTIONS(750), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(3233), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(748), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [90321] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(464), 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(470), 1, sym_float, - [84740] = 4, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, + anon_sym_DOT, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + STATE(2625), 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(1044), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1534), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2839), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1536), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [90436] = 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_RBRACE, - anon_sym_STAR_STAR, + 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, - [84801] = 21, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, - anon_sym_QMARK_DOT, - ACTIONS(1907), 1, + ACTIONS(2733), 1, + sym_identifier, + ACTIONS(2837), 1, anon_sym_not, - ACTIONS(1913), 1, - anon_sym_PIPE, - ACTIONS(1915), 1, - anon_sym_AMP, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1923), 1, - anon_sym_is, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1083), 1, - aux_sym_comparison_operator_repeat1, - STATE(1120), 1, - sym_argument_list, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1919), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1899), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1343), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_and, - anon_sym_or, + STATE(4294), 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, - [84896] = 12, - ACTIONS(1895), 1, + 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, + [90551] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + 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_QMARK_DOT, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(2626), 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, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 18, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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(1396), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 4, 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, + STATE(2839), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [84973] = 14, - ACTIONS(1895), 1, + 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, + [90666] = 26, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, + anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_not, + 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(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(1125), 1, + sym_primary_expression, + STATE(1209), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + STATE(2149), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(173), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1919), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 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(1396), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 4, 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, + STATE(2154), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [85054] = 4, - STATE(1063), 1, - aux_sym_union_type_repeat1, + 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, + [90781] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, + 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_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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2839), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1385), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [90896] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(462), 1, + anon_sym_not, + ACTIONS(464), 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(470), 1, sym_float, - [85115] = 13, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, + anon_sym_DOT, + ACTIONS(608), 1, anon_sym_QMARK_DOT, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(2628), 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, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + 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_DASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 16, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1396), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 4, 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, + STATE(2839), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [85194] = 11, - ACTIONS(1012), 1, + 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, + [91011] = 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(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, anon_sym_DOT, - ACTIONS(1315), 1, + ACTIONS(199), 1, anon_sym_QMARK_DOT, - ACTIONS(1927), 1, - anon_sym_as, - ACTIONS(1929), 1, - anon_sym_if, - ACTIONS(1931), 1, - anon_sym_and, - ACTIONS(1933), 1, - anon_sym_or, - ACTIONS(1935), 1, - anon_sym_PLUS, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1569), 18, - anon_sym_lambda, - anon_sym_in, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(2067), 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, - anon_sym_STAR, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2155), 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, - ACTIONS(1567), 23, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + 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, - [85269] = 8, - ACTIONS(1931), 1, - anon_sym_and, - ACTIONS(1935), 1, - anon_sym_PLUS, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + STATE(3663), 1, + sym_call, + STATE(4283), 1, + sym_primary_expression, + STATE(4293), 1, + sym_expression, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1291), 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, + 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, - sym_float, - ACTIONS(1299), 12, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - ACTIONS(1289), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, - anon_sym_or, + STATE(4416), 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, - [85338] = 8, - ACTIONS(1291), 1, + 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, + [91241] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, + 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_QMARK_DOT, - ACTIONS(1931), 1, - anon_sym_and, - ACTIONS(1935), 1, - anon_sym_PLUS, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1297), 18, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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, + STATE(3169), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1299), 23, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(426), 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(432), 1, sym_float, - [85407] = 6, - ACTIONS(1931), 1, - anon_sym_and, - ACTIONS(1935), 1, - anon_sym_PLUS, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + 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(3072), 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(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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, + STATE(3233), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1291), 24, - sym_string_start, - anon_sym_COMMA, + 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, + [91471] = 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + 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, - [85472] = 5, - ACTIONS(1935), 1, - anon_sym_PLUS, + 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(4354), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5168), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(3485), 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, - ACTIONS(1430), 24, - sym_string_start, - anon_sym_COMMA, + 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, + [91586] = 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + 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, - [85535] = 6, - ACTIONS(1931), 1, - anon_sym_and, - ACTIONS(1935), 1, - anon_sym_PLUS, + 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(4356), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5203), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1331), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3485), 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, - ACTIONS(1333), 24, - sym_string_start, - anon_sym_COMMA, + 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, + [91701] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(642), 1, + anon_sym_not, + ACTIONS(644), 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(650), 1, sym_float, - [85600] = 5, - ACTIONS(1935), 1, - anon_sym_PLUS, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(742), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(3169), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1291), 24, - sym_string_start, - anon_sym_COMMA, + 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, + [91816] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(642), 1, + anon_sym_not, + ACTIONS(644), 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(650), 1, sym_float, - [85663] = 4, - ACTIONS(1937), 1, - anon_sym_DASH_GT, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(740), 1, + anon_sym_DOT, + ACTIONS(742), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + 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_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(1390), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3169), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [85724] = 5, - ACTIONS(1935), 1, - anon_sym_PLUS, + 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, + 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(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(4773), 1, + sym_expression, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(3939), 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, - ACTIONS(1422), 24, - sym_string_start, - anon_sym_COMMA, + 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, + [92046] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(642), 1, + anon_sym_not, + ACTIONS(644), 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(650), 1, sym_float, - [85787] = 5, - STATE(1037), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1939), 2, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(740), 1, anon_sym_DOT, + ACTIONS(742), 1, anon_sym_QMARK_DOT, - ACTIONS(1478), 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(1483), 32, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_LBRACK, - [85850] = 16, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, - anon_sym_QMARK_DOT, - ACTIONS(1915), 1, - anon_sym_AMP, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(2793), 1, + sym_primary_expression, + STATE(2795), 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, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + 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_DASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1919), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 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(1396), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 4, 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, + STATE(3169), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [85935] = 22, - ACTIONS(1359), 1, - anon_sym_not, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(1895), 1, + 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, + [92161] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(636), 1, anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + 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_QMARK_DOT, - ACTIONS(1913), 1, - anon_sym_PIPE, - ACTIONS(1915), 1, - anon_sym_AMP, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(2793), 1, + sym_primary_expression, + STATE(2885), 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, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + 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_DASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1919), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1351), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1345), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1341), 11, - anon_sym_lambda, + ACTIONS(29), 4, 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, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [86032] = 4, - STATE(1063), 1, - aux_sym_union_type_repeat1, + 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, + [92276] = 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(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(4770), 1, + sym_expression, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1432), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(3939), 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, - ACTIONS(1434), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [92391] = 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_RBRACE, - anon_sym_STAR_STAR, - 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, - [86093] = 10, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1391), 1, + sym_identifier, + ACTIONS(1395), 1, + anon_sym_not, + STATE(3446), 1, + sym_selector_expression, + STATE(3663), 1, + sym_call, + STATE(4372), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5168), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 20, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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(1542), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3485), 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, - [86166] = 4, - STATE(1054), 1, - aux_sym_dotted_name_repeat1, + 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, + [92506] = 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, + 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(2882), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_TILDE, + ACTIONS(29), 4, 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(3144), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1329), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [92621] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(145), 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(151), 1, sym_float, - [86227] = 10, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, anon_sym_QMARK_DOT, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(3332), 1, + sym_expression, + STATE(5035), 1, + sym_dotted_name, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 20, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1396), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2165), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [86300] = 6, - ACTIONS(1942), 1, + 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, + [92736] = 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(1945), 1, + ACTIONS(195), 1, 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(3298), 1, + sym_expression, + STATE(5053), 1, + sym_dotted_name, + STATE(5982), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1044), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1468), 22, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2194), 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, - ACTIONS(1473), 24, - sym_string_start, - anon_sym_COMMA, + 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, + [92851] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS, + ACTIONS(690), 1, + anon_sym_not, + ACTIONS(692), 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(698), 1, sym_float, - [86365] = 4, + 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(2880), 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(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1436), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_TILDE, + ACTIONS(29), 4, 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(3144), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1438), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [92966] = 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_RBRACE, - anon_sym_STAR_STAR, + 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, - [86426] = 6, - ACTIONS(1948), 1, - anon_sym_DOT, - ACTIONS(1951), 1, - anon_sym_QMARK_DOT, - STATE(1046), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(55), 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(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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1478), 23, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4294), 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, - ACTIONS(1483), 24, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS, + ACTIONS(520), 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(526), 1, sym_float, - [86491] = 5, - ACTIONS(1954), 1, - anon_sym_EQ, - STATE(1063), 1, - aux_sym_union_type_repeat1, + 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(219), 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, - ACTIONS(1488), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(2856), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1490), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [93196] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(690), 1, + anon_sym_not, + ACTIONS(692), 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(698), 1, sym_float, - [86554] = 4, - STATE(1063), 1, - aux_sym_union_type_repeat1, + 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(2874), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_TILDE, + ACTIONS(29), 4, 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(3144), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1442), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [93311] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(426), 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(432), 1, sym_float, - [86615] = 22, - ACTIONS(1359), 1, - anon_sym_not, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, anon_sym_QMARK_DOT, - ACTIONS(1913), 1, - anon_sym_PIPE, - ACTIONS(1915), 1, - anon_sym_AMP, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1341), 1, + sym_identifier, + ACTIONS(1345), 1, + anon_sym_not, + STATE(2365), 1, + sym_call, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, + sym_selector_expression, + STATE(4324), 1, + sym_expression, + STATE(5058), 1, + sym_dotted_name, + STATE(5953), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + 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_DASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1919), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1351), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1381), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1379), 11, - anon_sym_lambda, + ACTIONS(29), 4, 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), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [86712] = 10, - ACTIONS(1895), 1, + 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, + [93426] = 26, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + 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_QMARK_DOT, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(2766), 1, + sym_primary_expression, + STATE(2806), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 20, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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(1396), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(3144), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [86785] = 4, - ACTIONS(1956), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1412), 24, - sym_string_start, - anon_sym_COMMA, + 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, + [93541] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(690), 1, + anon_sym_not, + ACTIONS(692), 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(698), 1, sym_float, - ACTIONS(1410), 25, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(736), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(738), 1, + anon_sym_QMARK_DOT, + STATE(2766), 1, + sym_primary_expression, + STATE(2858), 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(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_TILDE, + ACTIONS(29), 4, 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, + STATE(3144), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [86846] = 9, - ACTIONS(1012), 1, + 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, + [93656] = 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(1315), 1, + ACTIONS(674), 1, anon_sym_QMARK_DOT, - ACTIONS(1931), 1, - anon_sym_and, - ACTIONS(1933), 1, - anon_sym_or, - ACTIONS(1935), 1, - anon_sym_PLUS, + ACTIONS(744), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_not, + STATE(3663), 1, + sym_call, + STATE(4283), 1, + sym_primary_expression, + STATE(4341), 1, + sym_expression, + STATE(4414), 1, + sym_selector_expression, + STATE(5041), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 20, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - anon_sym_STAR, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4416), 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, - ACTIONS(1550), 23, - sym_string_start, - anon_sym_COMMA, + 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, + [93771] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(267), 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(273), 1, sym_float, - [86917] = 4, - ACTIONS(1958), 1, - anon_sym_DASH_GT, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(842), 1, + sym_identifier, + ACTIONS(848), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 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(1335), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2743), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [86978] = 4, - STATE(1046), 1, - aux_sym_dotted_name_repeat1, + 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, + 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_QMARK_DOT, + STATE(726), 1, + sym_primary_expression, + STATE(736), 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, - ACTIONS(1323), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2056), 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, - ACTIONS(1325), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [94001] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(518), 1, + anon_sym_not, + ACTIONS(520), 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(526), 1, sym_float, - [87039] = 15, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, anon_sym_QMARK_DOT, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(112), 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, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + 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, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1919), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 13, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1396), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + ACTIONS(29), 4, 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, + STATE(2849), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [87122] = 4, + 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, + [94116] = 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(1395), 1, + anon_sym_not, + ACTIONS(2643), 1, + sym_identifier, + STATE(1418), 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(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2231), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1446), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [94231] = 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(101), 1, + anon_sym_not, + 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, - [87183] = 21, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, anon_sym_QMARK_DOT, - ACTIONS(1907), 1, - anon_sym_not, - ACTIONS(1913), 1, - anon_sym_PIPE, - ACTIONS(1915), 1, - anon_sym_AMP, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1923), 1, - anon_sym_is, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(1200), 1, - aux_sym_comparison_operator_repeat1, + STATE(726), 1, + sym_primary_expression, + STATE(734), 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, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + 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_DASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1919), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1899), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1343), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_and, - anon_sym_or, + STATE(2056), 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, - [87278] = 4, + 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, + [94346] = 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(5209), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1458), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(3485), 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, - ACTIONS(1460), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [94461] = 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_RBRACE, - anon_sym_STAR_STAR, - 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, - [87339] = 5, - ACTIONS(1960), 1, - anon_sym_PIPE, - STATE(1059), 1, - aux_sym_union_type_repeat1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 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, + 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, - ACTIONS(1383), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(1950), 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, - ACTIONS(1385), 24, - sym_string_start, - anon_sym_COMMA, + 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, + [94576] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(273), 1, sym_float, - [87402] = 4, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2558), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1446), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(426), 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(432), 1, sym_float, - [87463] = 22, - ACTIONS(1359), 1, - anon_sym_not, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(1895), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, - anon_sym_LBRACK, - ACTIONS(1903), 1, - anon_sym_STAR_STAR, - ACTIONS(1905), 1, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, anon_sym_QMARK_DOT, - ACTIONS(1913), 1, - anon_sym_PIPE, - ACTIONS(1915), 1, - anon_sym_AMP, - ACTIONS(1917), 1, - anon_sym_CARET, - ACTIONS(1925), 1, - anon_sym_QMARK_LBRACK, - STATE(1120), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2689), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1901), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1909), 2, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(708), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1911), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1919), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1351), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1406), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1404), 11, - anon_sym_lambda, + 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_identifier, sym_true, sym_false, sym_none, sym_undefined, - [87560] = 4, - STATE(1063), 1, - aux_sym_union_type_repeat1, + 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, + 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(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(726), 1, + sym_primary_expression, + STATE(733), 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, - ACTIONS(1335), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2056), 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, - ACTIONS(1337), 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, + 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, + [94921] = 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, - [87621] = 4, - STATE(1059), 1, - aux_sym_union_type_repeat1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1496), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(3939), 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, - ACTIONS(1498), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(171), 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(177), 1, sym_float, - [87682] = 3, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 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, + sym_call, + STATE(3300), 1, + sym_expression, + STATE(5083), 1, + sym_dotted_name, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + STATE(2149), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(173), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2210), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1659), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [95151] = 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(101), 1, + anon_sym_not, + 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, - [87740] = 8, - ACTIONS(1966), 1, - anon_sym_not, - ACTIONS(1972), 1, - anon_sym_is, - STATE(1065), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(726), 1, + sym_primary_expression, + STATE(751), 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, - ACTIONS(1963), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1969), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1627), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, + STATE(2056), 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, - ACTIONS(1625), 21, - sym_string_start, - anon_sym_COMMA, + 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, + [95266] = 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(101), 1, + anon_sym_not, + 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_QMARK_LBRACK, + ACTIONS(109), 1, sym_float, - [87808] = 4, - STATE(1201), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + 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, - ACTIONS(1643), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2056), 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, - ACTIONS(1641), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(77), 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(83), 1, sym_float, - [87868] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1478), 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(1483), 34, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + ACTIONS(756), 1, + sym_identifier, + ACTIONS(762), 1, 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, - [87926] = 3, + STATE(1365), 1, + sym_primary_expression, + STATE(1533), 1, + sym_call, + STATE(2065), 1, + sym_selector_expression, + STATE(3310), 1, + sym_expression, + STATE(5089), 1, + sym_dotted_name, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1478), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(2067), 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, - 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(2209), 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, - ACTIONS(1483), 25, + 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, + [95496] = 4, + STATE(4733), 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, 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, @@ -97562,15 +127963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87984] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1685), 24, + ACTIONS(217), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_EQ, + anon_sym_rule, + anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97578,6 +127978,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, @@ -97591,2439 +127996,3852 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1687), 25, - sym_string_start, - anon_sym_COMMA, + [95567] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(520), 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(526), 1, sym_float, - [88042] = 4, - STATE(1084), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 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, + sym_call, + STATE(2829), 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, - ACTIONS(1643), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2618), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1641), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [95682] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(724), 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(730), 1, sym_float, - [88102] = 3, + 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(5013), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4299), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1605), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [95797] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(544), 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(550), 1, sym_float, - [88160] = 4, - ACTIONS(1954), 1, - anon_sym_EQ, + 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(5034), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(3929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1490), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [95912] = 26, + ACTIONS(129), 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(143), 1, + anon_sym_not, + ACTIONS(145), 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(151), 1, sym_float, - [88220] = 4, - STATE(1063), 1, - aux_sym_union_type_repeat1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1879), 1, + sym_primary_expression, + STATE(2027), 1, + sym_call, + STATE(2054), 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, - ACTIONS(1623), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2236), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1621), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [96027] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 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(273), 1, sym_float, - [88280] = 3, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + 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, - ACTIONS(1681), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2558), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1683), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(494), 1, + anon_sym_not, + 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, - [88338] = 3, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + 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, - ACTIONS(1677), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4009), 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, - ACTIONS(1679), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - [88396] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1673), 24, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + ACTIONS(440), 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, + sym_call, + STATE(3672), 1, + sym_expression, + STATE(5009), 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1675), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(143), 1, + anon_sym_not, + ACTIONS(145), 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(151), 1, sym_float, - [88454] = 3, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + 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, - ACTIONS(1669), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2236), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1671), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - 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, - [88512] = 4, - STATE(2267), 1, - aux_sym_comparison_operator_repeat1, + 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(5211), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(3485), 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, - ACTIONS(1641), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [96602] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(171), 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(177), 1, sym_float, - [88572] = 3, + 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(2695), 1, + sym_identifier, + STATE(1466), 1, + sym_primary_expression, + STATE(1899), 1, + sym_selector_expression, + STATE(2072), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5202), 1, + sym_expression, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(173), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2199), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1667), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [96717] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - [88630] = 3, + 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(2313), 1, + sym_primary_expression, + STATE(2328), 1, + sym_selector_expression, + STATE(2407), 1, + sym_call, + STATE(3674), 1, + sym_expression, + STATE(5009), 1, + sym_dotted_name, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1663), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [96832] = 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(77), 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(83), 1, sym_float, - [88688] = 3, + 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(2735), 1, + sym_identifier, + STATE(1210), 1, + sym_selector_expression, + STATE(1533), 1, + sym_call, + STATE(1534), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5157), 1, + sym_expression, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 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, - 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(1993), 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, - ACTIONS(1617), 25, - sym_string_start, - anon_sym_COMMA, + 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, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [96947] = 26, + ACTIONS(129), 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(143), 1, + anon_sym_not, + ACTIONS(145), 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(151), 1, sym_float, - [88746] = 4, - STATE(1117), 1, - sym_dictionary, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1879), 1, + sym_primary_expression, + STATE(2027), 1, + sym_call, + STATE(2046), 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, - ACTIONS(1643), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2236), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1641), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [97062] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [88806] = 4, - STATE(1065), 1, - aux_sym_comparison_operator_repeat1, + 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, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1611), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(143), 1, + anon_sym_not, + ACTIONS(145), 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(151), 1, sym_float, - [88866] = 4, - STATE(1065), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2236), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1611), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(143), 1, + anon_sym_not, + ACTIONS(145), 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(151), 1, sym_float, - [88926] = 4, - STATE(1065), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + STATE(1879), 1, + sym_primary_expression, + STATE(2027), 1, + sym_call, + STATE(2044), 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, - ACTIONS(1609), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2236), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1611), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [97407] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - [88986] = 4, - STATE(1065), 1, - aux_sym_comparison_operator_repeat1, + 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(2313), 1, + sym_primary_expression, + STATE(2328), 1, + sym_selector_expression, + STATE(2407), 1, + sym_call, + STATE(3675), 1, + sym_expression, + STATE(5009), 1, + sym_dotted_name, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1611), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [97522] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [89046] = 3, + 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, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1613), 25, - sym_string_start, - anon_sym_COMMA, + 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, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [89104] = 3, + ACTIONS(408), 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, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1641), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + 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, + anon_sym_lambda, + ACTIONS(568), 1, + anon_sym_not, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(2617), 1, + anon_sym_LPAREN, + ACTIONS(2619), 1, + anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [89161] = 7, - ACTIONS(1530), 1, - anon_sym_is, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, + STATE(3801), 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, - ACTIONS(1506), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 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, + 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_TILDE, - sym_float, - ACTIONS(1609), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(4229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [89226] = 3, + 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, + [97867] = 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, + anon_sym_DOT, + ACTIONS(476), 1, + 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(5018), 1, + sym_dotted_name, + STATE(5048), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1799), 25, + 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, + [97982] = 26, + ACTIONS(554), 1, + sym_identifier, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(568), 1, + anon_sym_not, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [89283] = 3, + STATE(3794), 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, - ACTIONS(1829), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1831), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [98097] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(520), 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(526), 1, sym_float, - [89340] = 3, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + 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(4327), 1, + sym_expression, + STATE(5088), 1, + sym_dotted_name, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_TILDE, + ACTIONS(29), 4, 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(3222), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1867), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [98212] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(724), 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(730), 1, sym_float, - [89397] = 3, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2841), 1, + anon_sym_not, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4275), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1871), 25, + 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, + [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, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [89454] = 3, + STATE(3792), 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, - ACTIONS(1825), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1827), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [98442] = 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_RBRACE, - anon_sym_STAR_STAR, - 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, - [89511] = 3, + 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(5204), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(3485), 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, - ACTIONS(1875), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [98557] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - [89568] = 3, + 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, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2360), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5188), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(380), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1879), 25, + 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, + [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, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [89625] = 3, + STATE(3796), 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, - ACTIONS(1821), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1823), 25, + 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, + [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, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [89682] = 3, + STATE(3777), 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, - ACTIONS(1855), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1853), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [98902] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - [89739] = 3, + 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, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2361), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(380), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1819), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [99017] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - [89796] = 3, + 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(2313), 1, + sym_primary_expression, + STATE(2328), 1, + sym_selector_expression, + STATE(2407), 1, + sym_call, + STATE(3690), 1, + sym_expression, + STATE(5009), 1, + sym_dotted_name, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2543), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1693), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [99132] = 26, + ACTIONS(480), 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(494), 1, + anon_sym_not, + 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, - [89853] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1851), 23, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3608), 1, + sym_primary_expression, + STATE(3618), 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4009), 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, - ACTIONS(1849), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [99247] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(724), 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(730), 1, sym_float, - [89910] = 3, + 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(5076), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4299), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1835), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [99362] = 26, + ACTIONS(480), 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(494), 1, + anon_sym_not, + 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, - [89967] = 7, - ACTIONS(1456), 1, - anon_sym_is, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3608), 1, + sym_primary_expression, + STATE(3609), 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, - ACTIONS(1450), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1454), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 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, + 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_TILDE, - sym_float, - ACTIONS(1609), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(4009), 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, - [90032] = 3, + 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, + [99477] = 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(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(1385), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(2147), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(149), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1859), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [99592] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(544), 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(550), 1, sym_float, - [90089] = 7, - ACTIONS(1456), 1, - anon_sym_is, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, + 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(5094), 1, + sym_expression, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1454), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 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, + 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_TILDE, - sym_float, - ACTIONS(1609), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [90154] = 3, + 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, + [99707] = 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(121), 1, + sym_identifier, + ACTIONS(125), 1, + anon_sym_not, + ACTIONS(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, + anon_sym_QMARK_DOT, + STATE(1080), 1, + sym_primary_expression, + STATE(1474), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2151), 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, - ACTIONS(1847), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [99822] = 26, + ACTIONS(480), 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(494), 1, + anon_sym_not, + 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, - [90211] = 5, - ACTIONS(1975), 1, - anon_sym_in, - ACTIONS(1977), 1, - anon_sym_not, + ACTIONS(504), 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, + 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, - ACTIONS(1643), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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, + STATE(4009), 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, - ACTIONS(1641), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [99937] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 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(273), 1, sym_float, - [90272] = 7, - ACTIONS(1456), 1, - anon_sym_is, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + STATE(76), 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, - ACTIONS(1450), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1454), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 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, + 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_TILDE, - sym_float, - ACTIONS(1609), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2558), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [90337] = 7, - ACTIONS(1456), 1, - anon_sym_is, - STATE(880), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1450), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1454), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + 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, + [100052] = 26, + ACTIONS(480), 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_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(502), 1, sym_float, - ACTIONS(1609), 26, - anon_sym_import, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [90402] = 3, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3608), 1, + sym_primary_expression, + STATE(3642), 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, - ACTIONS(1839), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4009), 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, - ACTIONS(1837), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [100167] = 26, + ACTIONS(480), 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(494), 1, + anon_sym_not, + 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, - [90459] = 3, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3594), 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, - ACTIONS(1815), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4009), 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, - ACTIONS(1813), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [100282] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - [90516] = 3, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(2843), 1, + sym_identifier, + ACTIONS(2845), 1, + anon_sym_not, + STATE(2352), 1, + sym_selector_expression, + STATE(2386), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(380), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1805), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [100397] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [90573] = 3, + ACTIONS(408), 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, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5147), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1801), 25, + 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, + [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_RBRACE, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -100042,14 +131860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90630] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1699), 23, + ACTIONS(191), 30, + 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, @@ -100057,6 +131873,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, @@ -100070,618 +131891,821 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1697), 25, - sym_string_start, - anon_sym_COMMA, + [100585] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(398), 1, + anon_sym_not, + ACTIONS(400), 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(406), 1, sym_float, - [90687] = 7, - ACTIONS(1530), 1, - anon_sym_is, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, + 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(3453), 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, - ACTIONS(1506), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 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, + 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_TILDE, - sym_float, - ACTIONS(1609), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3592), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [90752] = 3, + 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, + [100700] = 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, + anon_sym_DOT, + ACTIONS(476), 1, + 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(5018), 1, + sym_dotted_name, + STATE(5148), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1843), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [100815] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(398), 1, + anon_sym_not, + ACTIONS(400), 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(406), 1, sym_float, - [90809] = 3, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + STATE(3426), 1, + sym_expression, + STATE(3432), 1, + sym_primary_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, - ACTIONS(1787), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3592), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1785), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [100930] = 21, + ACTIONS(2369), 1, anon_sym_LPAREN, + ACTIONS(2371), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2379), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [90866] = 5, - ACTIONS(1773), 1, - anon_sym_in, - ACTIONS(1775), 1, + ACTIONS(2809), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + ACTIONS(2741), 2, 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(1641), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(2745), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(2747), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2755), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + 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, - anon_sym_QMARK_LBRACK, + 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, - [90927] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1707), 23, + 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_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_not, + 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, - ACTIONS(1705), 25, - sym_string_start, - anon_sym_COMMA, + [101035] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(520), 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(526), 1, sym_float, - [90984] = 3, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(654), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_not, + STATE(2396), 1, + sym_call, + STATE(2850), 1, + sym_primary_expression, + STATE(2859), 1, + sym_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, - ACTIONS(1779), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_TILDE, + ACTIONS(29), 4, 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(3124), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1777), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [101150] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(398), 1, + anon_sym_not, + ACTIONS(400), 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(406), 1, sym_float, - [91041] = 3, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + STATE(3430), 1, + sym_expression, + STATE(3432), 1, + sym_primary_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, - ACTIONS(1343), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3592), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1448), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [101265] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [91098] = 3, + 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, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4858), 1, + sym_dotted_name, + STATE(5097), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1709), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [101380] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(398), 1, + anon_sym_not, + ACTIONS(400), 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(406), 1, sym_float, - [91155] = 3, + 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(3458), 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, - ACTIONS(1643), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3592), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1641), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [101495] = 26, + ACTIONS(384), 1, + sym_identifier, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(398), 1, + anon_sym_not, + ACTIONS(400), 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(406), 1, sym_float, - [91212] = 7, - ACTIONS(1530), 1, - anon_sym_is, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, + 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(3433), 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, - ACTIONS(1506), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 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, + 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_TILDE, - sym_float, - ACTIONS(1609), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3592), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [91277] = 3, + 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, + [101610] = 5, + ACTIONS(2777), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 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(1691), 25, + STATE(782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 27, + 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, @@ -100700,14 +132724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91334] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1715), 23, + ACTIONS(2441), 30, + 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, @@ -100715,6 +132737,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, @@ -100728,724 +132755,1184 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1713), 25, - sym_string_start, - anon_sym_COMMA, + [101683] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [91391] = 3, + 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, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4865), 1, + sym_dotted_name, + STATE(5152), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1863), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [101798] = 26, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(544), 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(550), 1, sym_float, - [91448] = 5, - ACTIONS(1975), 1, - anon_sym_in, - ACTIONS(1979), 1, - anon_sym_not, + ACTIONS(552), 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, + sym_call, + STATE(3835), 1, + sym_selector_expression, + STATE(5121), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + 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, - anon_sym_STAR, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4019), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1641), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [101913] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [91509] = 3, + 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, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4854), 1, + sym_dotted_name, + STATE(5098), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1769), 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, + 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, + [102028] = 26, + ACTIONS(530), 1, + sym_identifier, + 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(542), 1, + anon_sym_not, + ACTIONS(544), 1, + anon_sym_DQUOTE, + ACTIONS(550), 1, sym_float, - [91566] = 3, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + STATE(3570), 1, + sym_expression, + STATE(3717), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3835), 1, + sym_selector_expression, + STATE(5121), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4019), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1717), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [102143] = 26, + ACTIONS(155), 1, + sym_identifier, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, + ACTIONS(165), 1, + anon_sym_lambda, + ACTIONS(167), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(169), 1, + anon_sym_not, + ACTIONS(171), 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(177), 1, sym_float, - [91623] = 3, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(1125), 1, + sym_primary_expression, + STATE(1502), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + STATE(2149), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(173), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2154), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(175), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1717), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [102258] = 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_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(77), 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(83), 1, sym_float, - [91680] = 7, - ACTIONS(1530), 1, - anon_sym_is, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(113), 1, + sym_identifier, + ACTIONS(117), 1, + anon_sym_not, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + STATE(1127), 1, + sym_primary_expression, + STATE(1510), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1506), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 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, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(2067), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1609), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2155), 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, - [91745] = 3, + 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, + [102373] = 26, + ACTIONS(530), 1, + sym_identifier, + 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(542), 1, + anon_sym_not, + 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, + STATE(3695), 1, + sym_expression, + STATE(3717), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3835), 1, + sym_selector_expression, + STATE(5121), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4019), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1721), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [102488] = 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_RBRACE, - anon_sym_STAR_STAR, - 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, - [91802] = 3, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + ACTIONS(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(4778), 1, + sym_expression, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(3939), 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, - ACTIONS(1765), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [102603] = 26, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(544), 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(550), 1, sym_float, - [91859] = 3, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(624), 1, + anon_sym_DOT, + ACTIONS(626), 1, + anon_sym_QMARK_DOT, + STATE(3616), 1, + sym_expression, + STATE(3717), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3835), 1, + sym_selector_expression, + STATE(5121), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4019), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1761), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [102718] = 26, + ACTIONS(530), 1, + sym_identifier, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(542), 1, + anon_sym_not, + ACTIONS(544), 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(550), 1, sym_float, - [91916] = 3, + ACTIONS(552), 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, + sym_call, + STATE(3835), 1, + sym_selector_expression, + STATE(5121), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4019), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1757), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [102833] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [91973] = 3, + ACTIONS(408), 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, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5100), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1753), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [102948] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 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(406), 1, sym_float, - [92030] = 3, + ACTIONS(408), 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, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5102), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_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(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1791), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [103063] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(724), 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(730), 1, sym_float, - [92087] = 3, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(3872), 1, + sym_primary_expression, + STATE(3951), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4249), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1795), 25, + 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, + [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_RBRACE, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -101462,14 +133949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92144] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1751), 23, + ACTIONS(2445), 31, + 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, @@ -101477,6 +133963,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, @@ -101490,2312 +133981,3032 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1749), 25, - sym_string_start, - anon_sym_COMMA, + [103253] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(724), 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(730), 1, sym_float, - [92201] = 3, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(3872), 1, + sym_primary_expression, + STATE(3955), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4249), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1725), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [103368] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(520), 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(526), 1, sym_float, - [92258] = 3, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(654), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_not, + STATE(102), 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, - ACTIONS(1731), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_TILDE, + ACTIONS(29), 4, 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(3124), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1729), 25, + 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, + [103483] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [92315] = 3, + ACTIONS(2763), 1, + sym_identifier, + STATE(3749), 1, + sym_primary_expression, + STATE(3807), 1, + sym_call, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1729), 25, + 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(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, + [103598] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [92372] = 3, + ACTIONS(2763), 1, + sym_identifier, + ACTIONS(2847), 1, + anon_sym_not, + STATE(3749), 1, + sym_primary_expression, + STATE(3807), 1, + sym_call, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1733), 25, - sym_string_start, - anon_sym_COMMA, + 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(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, + [103713] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(265), 1, + anon_sym_not, + ACTIONS(267), 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(273), 1, sym_float, - [92429] = 3, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 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, + sym_call, + STATE(4999), 1, + sym_dotted_name, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(2558), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1799), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [103828] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(724), 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(730), 1, sym_float, - [92486] = 3, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(3872), 1, + sym_primary_expression, + STATE(3962), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4249), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1811), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [103943] = 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, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(267), 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(273), 1, sym_float, - [92543] = 3, + 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, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2363), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(380), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1737), 25, - sym_string_start, - anon_sym_COMMA, + 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, + [104058] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(722), 1, + anon_sym_not, + ACTIONS(724), 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(730), 1, sym_float, - [92600] = 3, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, + anon_sym_DOT, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + STATE(3869), 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, - ACTIONS(1747), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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, - 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(4249), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1745), 25, + 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, + [104173] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [92657] = 3, + STATE(3807), 1, + sym_call, + STATE(3825), 1, + sym_primary_expression, + STATE(4004), 1, + sym_selector_expression, + STATE(4836), 1, + sym_expression, + STATE(5150), 1, + sym_dotted_name, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, 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(4208), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1741), 25, + 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, + [104288] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2627), 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(2629), 1, sym_float, - [92714] = 9, - ACTIONS(1981), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - sym_isMutableFlag, - ACTIONS(1985), 1, - anon_sym_QMARK_COLON, - STATE(1281), 1, - aux_sym_comparison_operator_repeat1, - STATE(1384), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, + STATE(3807), 1, + sym_call, + STATE(3825), 1, + sym_primary_expression, + STATE(4004), 1, + sym_selector_expression, + STATE(4840), 1, + sym_expression, + STATE(5150), 1, + sym_dotted_name, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [92778] = 9, - ACTIONS(1981), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - sym_isMutableFlag, - ACTIONS(1985), 1, - anon_sym_QMARK_COLON, - STATE(1384), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [104403] = 26, + ACTIONS(554), 1, + sym_identifier, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(568), 1, 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, - [92842] = 9, - ACTIONS(1981), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - sym_isMutableFlag, - ACTIONS(1985), 1, - anon_sym_QMARK_COLON, - STATE(1384), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2151), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 31, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(734), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [92906] = 9, - ACTIONS(1987), 1, + ACTIONS(2621), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - sym_isMutableFlag, - ACTIONS(1991), 1, - anon_sym_QMARK_COLON, - STATE(1294), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2623), 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, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [92968] = 5, - ACTIONS(1993), 1, - anon_sym_PLUS, + ACTIONS(2627), 1, + anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + STATE(3773), 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(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 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, + 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_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1428), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(4229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93022] = 9, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(1989), 1, - sym_isMutableFlag, - ACTIONS(1991), 1, - anon_sym_QMARK_COLON, - STATE(1294), 1, - sym_dict_expr, - STATE(1480), 1, - aux_sym_comparison_operator_repeat1, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + 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, + [104518] = 26, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, + anon_sym_LBRACE, + ACTIONS(722), 1, 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, - [93084] = 9, - ACTIONS(904), 1, + ACTIONS(724), 1, + anon_sym_DQUOTE, + ACTIONS(730), 1, + sym_float, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(752), 1, anon_sym_DOT, - ACTIONS(1251), 1, + ACTIONS(754), 1, anon_sym_QMARK_DOT, - ACTIONS(1995), 1, - anon_sym_and, - ACTIONS(1997), 1, - anon_sym_or, - ACTIONS(1999), 1, - anon_sym_PLUS, + STATE(3872), 1, + sym_primary_expression, + STATE(3971), 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(3), 2, sym_comment, sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 11, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, + 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, - sym_float, - ACTIONS(1548), 23, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4249), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93146] = 5, - ACTIONS(1999), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 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, + [104633] = 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, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(267), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(273), 1, sym_float, - ACTIONS(1289), 26, - anon_sym_import, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2843), 1, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2367), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 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(380), 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93200] = 11, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1995), 1, - anon_sym_and, - ACTIONS(1997), 1, - anon_sym_or, - ACTIONS(1999), 1, - anon_sym_PLUS, - ACTIONS(2001), 1, - anon_sym_as, - ACTIONS(2003), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 11, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [104748] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2623), 1, + anon_sym_QMARK_DOT, + ACTIONS(2627), 1, anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3723), 1, + sym_primary_expression, + STATE(3807), 1, + sym_call, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1569), 21, - anon_sym_import, - anon_sym_assert, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93266] = 9, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(1989), 1, - sym_isMutableFlag, - ACTIONS(1991), 1, - anon_sym_QMARK_COLON, - STATE(1294), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2227), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [93328] = 5, - ACTIONS(1999), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 12, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [104863] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, + ACTIONS(2627), 1, anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3787), 1, + sym_primary_expression, + STATE(3807), 1, + sym_call, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1424), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93382] = 11, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1993), 1, - anon_sym_PLUS, - ACTIONS(2005), 1, - anon_sym_as, - ACTIONS(2007), 1, - anon_sym_if, - ACTIONS(2009), 1, - anon_sym_and, - ACTIONS(2011), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 11, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [104978] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2623), 1, + anon_sym_QMARK_DOT, + ACTIONS(2627), 1, anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3802), 1, + sym_primary_expression, + STATE(3807), 1, + sym_call, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1569), 21, - anon_sym_import, - anon_sym_assert, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93448] = 5, - ACTIONS(1993), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 12, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [105093] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, + ACTIONS(2627), 1, anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3807), 1, + sym_call, + STATE(3822), 1, + sym_primary_expression, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1289), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93502] = 5, - ACTIONS(1999), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 12, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [105208] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, + ACTIONS(2627), 1, anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3807), 1, + sym_call, + STATE(3824), 1, + sym_primary_expression, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1428), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93556] = 5, - ACTIONS(1993), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 12, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [105323] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2623), 1, anon_sym_QMARK_DOT, + ACTIONS(2627), 1, anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3807), 1, + sym_call, + STATE(3826), 1, + sym_primary_expression, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1424), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93610] = 9, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1993), 1, - anon_sym_PLUS, - ACTIONS(2009), 1, - anon_sym_and, - ACTIONS(2011), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 11, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [105438] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2623), 1, + anon_sym_QMARK_DOT, + ACTIONS(2627), 1, anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3807), 1, + sym_call, + STATE(3827), 1, + sym_primary_expression, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1548), 23, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93672] = 9, - ACTIONS(2013), 1, - anon_sym_LBRACE, - ACTIONS(2015), 1, - sym_isMutableFlag, - ACTIONS(2017), 1, - anon_sym_QMARK_COLON, - STATE(1712), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2234), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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(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, + [105553] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [93733] = 10, - ACTIONS(2013), 1, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - ACTIONS(2015), 1, - sym_isMutableFlag, - ACTIONS(2017), 1, - anon_sym_QMARK_COLON, - ACTIONS(2019), 1, - anon_sym_COLON, - STATE(1712), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2234), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, + ACTIONS(267), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym_float, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(440), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [93796] = 4, + ACTIONS(2843), 1, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2368), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1436), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1438), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [93847] = 11, - ACTIONS(904), 1, - anon_sym_DOT, - ACTIONS(1251), 1, - anon_sym_QMARK_DOT, - ACTIONS(1995), 1, - anon_sym_and, - ACTIONS(1997), 1, - anon_sym_or, - ACTIONS(1999), 1, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(380), 3, anon_sym_PLUS, - ACTIONS(2001), 1, - anon_sym_as, - ACTIONS(2025), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2021), 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(2023), 21, - anon_sym_import, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [93912] = 9, - ACTIONS(2013), 1, - anon_sym_LBRACE, - ACTIONS(2015), 1, - sym_isMutableFlag, - ACTIONS(2017), 1, - anon_sym_QMARK_COLON, - STATE(1581), 1, - aux_sym_comparison_operator_repeat1, - STATE(1712), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [93973] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1458), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1460), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [105668] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(267), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym_float, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(378), 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, - [94024] = 11, - ACTIONS(904), 1, + ACTIONS(438), 1, anon_sym_DOT, - ACTIONS(1251), 1, + ACTIONS(440), 1, anon_sym_QMARK_DOT, - ACTIONS(1995), 1, - anon_sym_and, - ACTIONS(1997), 1, - anon_sym_or, - ACTIONS(1999), 1, - anon_sym_PLUS, - ACTIONS(2001), 1, - anon_sym_as, - ACTIONS(2031), 1, - anon_sym_COMMA, + STATE(2351), 1, + sym_primary_expression, + STATE(2380), 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(3), 2, sym_comment, sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2027), 10, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2029), 21, - anon_sym_import, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2691), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [94089] = 11, - ACTIONS(1086), 1, - anon_sym_DOT, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1993), 1, - anon_sym_PLUS, - ACTIONS(2005), 1, - anon_sym_as, - ACTIONS(2009), 1, - anon_sym_and, - ACTIONS(2011), 1, - anon_sym_or, - ACTIONS(2033), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(605), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(2027), 10, - sym__dedent, - sym_string_start, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [105783] = 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, - anon_sym_AT, + 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, + anon_sym_not, + ACTIONS(2843), 1, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2369), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 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(380), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2029), 21, - anon_sym_import, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [94154] = 9, - ACTIONS(2013), 1, - anon_sym_LBRACE, - ACTIONS(2015), 1, - sym_isMutableFlag, - ACTIONS(2017), 1, - anon_sym_QMARK_COLON, - STATE(1712), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [105898] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + 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(374), 1, + sym_identifier, + ACTIONS(378), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [94215] = 4, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + STATE(2351), 1, + sym_primary_expression, + STATE(2378), 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(3), 2, sym_comment, sym_line_continuation, - STATE(1180), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1534), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1536), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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), 5, + sym_integer, + 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, + [106013] = 26, + ACTIONS(251), 1, + sym_identifier, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(265), 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, - [94266] = 4, + 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, + STATE(2287), 1, + sym_primary_expression, + STATE(2308), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [106128] = 21, + ACTIONS(2633), 1, anon_sym_LPAREN, + ACTIONS(2635), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, + ACTIONS(2637), 1, anon_sym_STAR_STAR, + ACTIONS(2639), 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, - anon_sym_PIPE, + ACTIONS(2641), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2651), 1, anon_sym_AMP, + ACTIONS(2653), 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(2657), 1, + anon_sym_PIPE, + ACTIONS(2767), 1, + anon_sym_not, + ACTIONS(2771), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [94317] = 9, - ACTIONS(1981), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - sym_isMutableFlag, - ACTIONS(1985), 1, - anon_sym_QMARK_COLON, - STATE(1384), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2151), 1, + STATE(2195), 1, + sym_argument_list, + STATE(3249), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 6, - anon_sym_EQ, + ACTIONS(2645), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - 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, + ACTIONS(2647), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [94378] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 31, + 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_COMMA, - anon_sym_COLON, + 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, + [106233] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(267), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym_float, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(378), 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, - [94429] = 10, - ACTIONS(2013), 1, - anon_sym_LBRACE, - ACTIONS(2015), 1, - sym_isMutableFlag, - ACTIONS(2017), 1, - anon_sym_QMARK_COLON, - ACTIONS(2035), 1, - anon_sym_COLON, - STATE(1712), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2234), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + STATE(2351), 1, + sym_primary_expression, + STATE(2377), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 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(2691), 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(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, + [106348] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, 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, - [94492] = 5, + ACTIONS(2843), 1, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2370), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2037), 2, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(380), 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, + [106463] = 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(374), 1, + sym_identifier, + ACTIONS(378), 1, + anon_sym_not, + ACTIONS(438), 1, anon_sym_DOT, + ACTIONS(440), 1, anon_sym_QMARK_DOT, - STATE(1180), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1468), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2351), 1, + sym_primary_expression, + STATE(2357), 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(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, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1473), 29, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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), 5, + sym_integer, + 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, + [106578] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym_float, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(378), 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, - [94545] = 11, - ACTIONS(1086), 1, + ACTIONS(438), 1, anon_sym_DOT, - ACTIONS(1237), 1, + ACTIONS(440), 1, anon_sym_QMARK_DOT, - ACTIONS(1993), 1, - anon_sym_PLUS, - ACTIONS(2005), 1, - anon_sym_as, - ACTIONS(2009), 1, - anon_sym_and, - ACTIONS(2011), 1, - anon_sym_or, - ACTIONS(2025), 1, - anon_sym_else, + STATE(2351), 1, + sym_primary_expression, + STATE(2375), 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(3), 2, sym_comment, sym_line_continuation, - STATE(605), 2, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 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(2691), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(2021), 10, - sym__dedent, - sym_string_start, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [106693] = 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, - anon_sym_AT, + 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, + anon_sym_not, + ACTIONS(2843), 1, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2371), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 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(380), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2023), 21, - anon_sym_import, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [94610] = 22, - ACTIONS(1343), 1, - anon_sym_EQ, - ACTIONS(2040), 1, + 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, + [106808] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, + 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(2052), 1, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2843), 1, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2372), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 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(380), 3, anon_sym_PLUS, - ACTIONS(2056), 1, anon_sym_DASH, - ACTIONS(2060), 1, - anon_sym_PIPE, - ACTIONS(2062), 1, - anon_sym_AMP, - ACTIONS(2064), 1, - anon_sym_CARET, - ACTIONS(2070), 1, - anon_sym_is, - ACTIONS(2072), 1, + 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, + [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(1257), 1, + STATE(2195), 1, sym_argument_list, - STATE(1290), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, + ACTIONS(2576), 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, - ACTIONS(2066), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1448), 11, + sym_float, + ACTIONS(2574), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_RBRACE, - 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_PLUS_EQ, - [94696] = 5, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 5, - anon_sym_EQ, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [107006] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + ACTIONS(2643), 1, + sym_identifier, + STATE(873), 1, + sym_primary_expression, + STATE(1880), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5165), 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [94748] = 9, - ACTIONS(748), 1, - anon_sym_LF, - ACTIONS(2076), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - sym_isMutableFlag, - ACTIONS(2080), 1, - anon_sym_QMARK_COLON, - STATE(1819), 1, - aux_sym_comparison_operator_repeat1, - STATE(1865), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [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(750), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2562), 26, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -103803,291 +137014,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [94808] = 9, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(1891), 1, - sym_isMutableFlag, - ACTIONS(1893), 1, - anon_sym_QMARK_COLON, - STATE(1942), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, - sym__newline, + sym_float, + ACTIONS(2560), 32, + 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_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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, - [94868] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1436), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1438), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [94918] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 31, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [107194] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(734), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2621), 1, + anon_sym_LBRACE, + ACTIONS(2623), 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [94968] = 8, - ACTIONS(2086), 1, - anon_sym_elif, - ACTIONS(2088), 1, - anon_sym_else, - STATE(1228), 1, - aux_sym_if_statement_repeat1, - STATE(1436), 1, - sym_elif_clause, - STATE(1771), 1, - sym_else_clause, + 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(4892), 1, + sym_expression, + STATE(5150), 1, + sym_dotted_name, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2084), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4208), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [95026] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 31, - anon_sym_DOT, - anon_sym_as, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [107309] = 6, + ACTIONS(131), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [95076] = 10, - ACTIONS(2074), 1, + ACTIONS(2775), 1, anon_sym_PLUS, - ACTIONS(2090), 1, - anon_sym_as, - ACTIONS(2092), 1, - anon_sym_if, - ACTIONS(2094), 1, - anon_sym_and, - ACTIONS(2096), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, + STATE(1539), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1569), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 25, + ACTIONS(2447), 25, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_PLUS_EQ, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -104096,481 +137173,388 @@ 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, - [95138] = 8, - ACTIONS(2098), 1, - anon_sym_elif, - ACTIONS(2100), 1, - anon_sym_else, - STATE(1221), 1, - aux_sym_if_statement_repeat1, - STATE(1438), 1, - sym_elif_clause, - STATE(1800), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2082), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, sym_float, - ACTIONS(2084), 22, + ACTIONS(2449), 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, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [95196] = 6, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2094), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1331), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1333), 30, + [107384] = 26, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - anon_sym_not, - 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, - [95250] = 6, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2094), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, anon_sym_not, - 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, - [95304] = 4, - STATE(1037), 1, - aux_sym_dotted_name_repeat1, + STATE(3874), 1, + sym_call, + STATE(4011), 1, + sym_expression, + STATE(4043), 1, + sym_primary_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 1, + sym_dotted_name, + STATE(6288), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1323), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(4382), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1325), 31, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4339), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(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, + [107499] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(734), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2623), 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [95354] = 5, - ACTIONS(2074), 1, - anon_sym_PLUS, + ACTIONS(2627), 1, + anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3807), 1, + sym_call, + STATE(3843), 1, + sym_primary_expression, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5200), 1, + sym_expression, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1224), 2, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 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(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1422), 31, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [107614] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(734), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2621), 1, + anon_sym_LBRACE, + ACTIONS(2623), 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [95406] = 4, - STATE(1194), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2627), 1, + anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + ACTIONS(2763), 1, + sym_identifier, + STATE(3807), 1, + sym_call, + STATE(3830), 1, + sym_primary_expression, + STATE(3943), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5162), 1, + sym_expression, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4239), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(2625), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1329), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4164), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 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(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, + [107729] = 21, + ACTIONS(2407), 1, anon_sym_LPAREN, + ACTIONS(2409), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2417), 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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(2437), 1, anon_sym_QMARK_LBRACK, - [95456] = 5, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(2671), 1, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2677), 1, anon_sym_PIPE, + ACTIONS(2679), 1, anon_sym_AMP, + ACTIONS(2681), 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(2785), 1, + anon_sym_not, + ACTIONS(2789), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [95508] = 4, - STATE(2267), 1, + STATE(2083), 1, + sym_argument_list, + STATE(3241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 7, - anon_sym_EQ, + ACTIONS(2669), 2, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [95558] = 8, - ACTIONS(2074), 1, + ACTIONS(2673), 2, anon_sym_PLUS, - ACTIONS(2094), 1, - anon_sym_and, - ACTIONS(2096), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1550), 27, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_PLUS_EQ, anon_sym_DASH, + ACTIONS(2675), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2683), 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, - [95616] = 7, - ACTIONS(1923), 1, - anon_sym_is, - STATE(1065), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1899), 3, + ACTIONS(2783), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1921), 4, + ACTIONS(2787), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 13, + ACTIONS(2367), 9, + 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_QMARK_DOT, - anon_sym_PLUS, + anon_sym_AT, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1609), 17, + 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_not, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_and, anon_sym_or, sym_integer, @@ -104579,520 +137563,456 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [95672] = 7, - ACTIONS(1923), 1, - anon_sym_is, - STATE(1065), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1899), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 13, - sym_string_start, - anon_sym_COMMA, + [107834] = 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_RBRACE, - anon_sym_STAR_STAR, + 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(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(4922), 1, + sym_expression, + STATE(5123), 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_TILDE, - sym_float, - ACTIONS(1609), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3939), 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, - [95728] = 7, - ACTIONS(1923), 1, - anon_sym_is, - STATE(1065), 1, - aux_sym_comparison_operator_repeat1, + 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, + [107949] = 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, + anon_sym_DOT, + ACTIONS(476), 1, + 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(4848), 1, + sym_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 13, - sym_string_start, - anon_sym_COMMA, + 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_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, + sym_integer, + 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, + [108064] = 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_RBRACE, - anon_sym_STAR_STAR, + 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(1273), 1, + anon_sym_not, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(5003), 1, + sym_expression, + STATE(5123), 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_TILDE, - sym_float, - ACTIONS(1609), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + ACTIONS(29), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3939), 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, - [95784] = 7, - ACTIONS(1923), 1, - anon_sym_is, - STATE(1065), 1, + 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, + [108179] = 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(1899), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 13, + ACTIONS(2576), 22, + 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_QMARK_DOT, + 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(1609), 17, + 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, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [95840] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1458), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1460), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + [108262] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [95890] = 9, - ACTIONS(748), 1, - anon_sym_LF, - ACTIONS(2076), 1, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - ACTIONS(2078), 1, - sym_isMutableFlag, - ACTIONS(2080), 1, - anon_sym_QMARK_COLON, - STATE(1865), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 32, + ACTIONS(103), 1, + anon_sym_DQUOTE, + ACTIONS(109), 1, + sym_float, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(193), 1, 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, - [95950] = 23, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(2040), 1, - anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, + ACTIONS(195), 1, anon_sym_QMARK_DOT, - ACTIONS(2054), 1, - anon_sym_PLUS, - ACTIONS(2056), 1, - anon_sym_DASH, - ACTIONS(2060), 1, - anon_sym_PIPE, - ACTIONS(2062), 1, - anon_sym_AMP, - ACTIONS(2064), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2102), 1, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2663), 1, + sym_identifier, + STATE(921), 1, + sym_primary_expression, + STATE(1317), 1, + sym_selector_expression, + STATE(1659), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5173), 1, + sym_expression, + STATE(5982), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2046), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2066), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1345), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [96038] = 23, - ACTIONS(1379), 1, - anon_sym_EQ, - ACTIONS(2040), 1, - anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, - anon_sym_QMARK_DOT, - ACTIONS(2054), 1, + STATE(1957), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(127), 3, anon_sym_PLUS, - ACTIONS(2056), 1, anon_sym_DASH, - ACTIONS(2060), 1, - anon_sym_PIPE, - ACTIONS(2062), 1, - anon_sym_AMP, - ACTIONS(2064), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2046), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2066), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1381), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [96126] = 9, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(1989), 1, - sym_isMutableFlag, - ACTIONS(1991), 1, - anon_sym_QMARK_COLON, - STATE(1294), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2227), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 27, - anon_sym_DOT, - anon_sym_as, + 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, + [108377] = 5, + ACTIONS(131), 1, 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, - [96186] = 10, - ACTIONS(2106), 1, - anon_sym_EQ, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(2110), 1, - sym_isMutableFlag, - ACTIONS(2112), 1, - anon_sym_QMARK_COLON, - STATE(2007), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2251), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_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, - [96248] = 9, - ACTIONS(1889), 1, anon_sym_LBRACE, - ACTIONS(1891), 1, - sym_isMutableFlag, - ACTIONS(1893), 1, - anon_sym_QMARK_COLON, - STATE(1847), 1, - aux_sym_comparison_operator_repeat1, - STATE(1942), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -105101,532 +138021,333 @@ 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, - [96308] = 14, - ACTIONS(2040), 1, - anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, - anon_sym_QMARK_DOT, - ACTIONS(2054), 1, - anon_sym_PLUS, - ACTIONS(2056), 1, - anon_sym_DASH, - ACTIONS(2072), 1, anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2046), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 23, + sym_float, + ACTIONS(2453), 31, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_assert, + anon_sym_rule, anon_sym_else, - anon_sym_RBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_for, - 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, - anon_sym_is, - [96378] = 15, - ACTIONS(2040), 1, - anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, - anon_sym_QMARK_DOT, - ACTIONS(2054), 1, - anon_sym_PLUS, - ACTIONS(2056), 1, - anon_sym_DASH, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2046), 2, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2066), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1396), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_for, + anon_sym_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_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, - [96450] = 16, - ACTIONS(2040), 1, - anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, - anon_sym_QMARK_DOT, - ACTIONS(2054), 1, - anon_sym_PLUS, - ACTIONS(2056), 1, - anon_sym_DASH, - ACTIONS(2064), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2046), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2066), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1396), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1398), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_is, - [96524] = 17, - ACTIONS(2040), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [108450] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, - anon_sym_QMARK_DOT, - ACTIONS(2054), 1, - anon_sym_PLUS, - ACTIONS(2056), 1, - anon_sym_DASH, - ACTIONS(2062), 1, - anon_sym_AMP, - ACTIONS(2064), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2046), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2066), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1396), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_for, + 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(374), 1, + sym_identifier, + ACTIONS(378), 1, 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, - anon_sym_is, - [96600] = 12, - ACTIONS(2040), 1, - anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, anon_sym_QMARK_DOT, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(2351), 1, + sym_primary_expression, + STATE(2373), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 4, - anon_sym_EQ, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 3, anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [96666] = 7, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2094), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1224), 2, + anon_sym_TILDE, + ACTIONS(29), 4, + 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), 5, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1297), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1299), 25, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [96722] = 10, - ACTIONS(2040), 1, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [108565] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, + 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(2072), 1, - anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(842), 1, + sym_identifier, + ACTIONS(848), 1, + anon_sym_not, + STATE(2399), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(2505), 1, + sym_selector_expression, + STATE(3831), 1, + sym_expression, + STATE(5000), 1, + sym_dotted_name, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [96784] = 10, - ACTIONS(2040), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [108680] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(21), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_for, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, 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, - [96846] = 5, + STATE(3874), 1, + sym_call, + STATE(4021), 1, + sym_expression, + STATE(4043), 1, + sym_primary_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 1, + sym_dotted_name, + STATE(6288), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1219), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1468), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(4382), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1473), 29, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [96898] = 8, - ACTIONS(1289), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4339), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(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, + [108795] = 5, + ACTIONS(2851), 1, anon_sym_EQ, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2094), 1, - anon_sym_and, + STATE(784), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2562), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_or, - anon_sym_PLUS_EQ, - ACTIONS(1299), 19, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_not, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -105635,1664 +138356,2204 @@ 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, - [96956] = 8, - ACTIONS(2098), 1, - anon_sym_elif, - ACTIONS(2100), 1, - anon_sym_else, - STATE(1242), 1, - aux_sym_if_statement_repeat1, - STATE(1438), 1, - sym_elif_clause, - STATE(1674), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2119), 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(2117), 22, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [97014] = 23, - ACTIONS(1404), 1, - anon_sym_EQ, - ACTIONS(2040), 1, + [108868] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, + 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_QMARK_DOT, - ACTIONS(2054), 1, - anon_sym_PLUS, - ACTIONS(2056), 1, - anon_sym_DASH, - ACTIONS(2060), 1, - anon_sym_PIPE, - ACTIONS(2062), 1, - anon_sym_AMP, - ACTIONS(2064), 1, - anon_sym_CARET, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2102), 1, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2046), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2066), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1406), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [97102] = 8, - ACTIONS(2098), 1, - anon_sym_elif, - ACTIONS(2100), 1, - anon_sym_else, - STATE(1226), 1, - aux_sym_if_statement_repeat1, - STATE(1438), 1, - sym_elif_clause, - STATE(1650), 1, - sym_else_clause, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4955), 1, + sym_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2123), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2121), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [97160] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1219), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1534), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1536), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [97210] = 10, - ACTIONS(2040), 1, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [108983] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, - anon_sym_QMARK_DOT, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1544), 26, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_for, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [97272] = 8, - ACTIONS(2098), 1, - anon_sym_elif, - ACTIONS(2100), 1, - anon_sym_else, - STATE(1242), 1, - aux_sym_if_statement_repeat1, - STATE(1438), 1, - sym_elif_clause, - STATE(1670), 1, - sym_else_clause, + ACTIONS(2689), 1, + sym_identifier, + STATE(2326), 1, + sym_selector_expression, + STATE(2365), 1, + sym_call, + STATE(2991), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5196), 1, + sym_expression, + STATE(5953), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2127), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(2455), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(708), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2125), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2621), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(430), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [97330] = 5, - ACTIONS(2129), 1, - anon_sym_LBRACE, - STATE(1391), 1, - sym_dictionary, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [109098] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(1395), 1, 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, - [97382] = 8, - ACTIONS(2086), 1, - anon_sym_elif, - ACTIONS(2088), 1, - anon_sym_else, - STATE(1247), 1, - aux_sym_if_statement_repeat1, - STATE(1436), 1, - sym_elif_clause, - STATE(1729), 1, - sym_else_clause, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2884), 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, - ACTIONS(2119), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2117), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2618), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [97440] = 22, - ACTIONS(1343), 1, - anon_sym_EQ, - ACTIONS(2040), 1, + 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, + [109213] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2048), 1, - anon_sym_STAR_STAR, - ACTIONS(2050), 1, + 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(2052), 1, + ACTIONS(2839), 1, + sym_identifier, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(2054), 1, - anon_sym_PLUS, - ACTIONS(2056), 1, - anon_sym_DASH, - ACTIONS(2060), 1, - anon_sym_PIPE, - ACTIONS(2062), 1, - anon_sym_AMP, - ACTIONS(2064), 1, - anon_sym_CARET, - ACTIONS(2070), 1, - anon_sym_is, - ACTIONS(2072), 1, - anon_sym_QMARK_LBRACK, - STATE(1257), 1, - sym_argument_list, - STATE(2148), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2046), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2058), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2066), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [97526] = 8, - ACTIONS(2086), 1, - anon_sym_elif, - ACTIONS(2088), 1, - anon_sym_else, - STATE(1231), 1, - aux_sym_if_statement_repeat1, - STATE(1436), 1, - sym_elif_clause, - STATE(1727), 1, - sym_else_clause, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2884), 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, - ACTIONS(2123), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2121), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2618), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [97584] = 8, - ACTIONS(2086), 1, - anon_sym_elif, - ACTIONS(2088), 1, - anon_sym_else, - STATE(1247), 1, - aux_sym_if_statement_repeat1, - STATE(1436), 1, - sym_elif_clause, - STATE(1707), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2127), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [109328] = 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_AT, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(49), 1, anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 1, + anon_sym_not, + STATE(3874), 1, + sym_call, + STATE(4032), 1, + sym_expression, + STATE(4043), 1, + sym_primary_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 1, + sym_dotted_name, + STATE(6288), 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, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2125), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4339), 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, - [97642] = 9, - ACTIONS(748), 1, - anon_sym_LF, - ACTIONS(2076), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - sym_isMutableFlag, - ACTIONS(2080), 1, - anon_sym_QMARK_COLON, - STATE(1865), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2235), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [109443] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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(842), 1, + sym_identifier, + ACTIONS(848), 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, - 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, - [97702] = 4, - ACTIONS(2131), 1, - anon_sym_DASH_GT, + STATE(2399), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(2505), 1, + sym_selector_expression, + STATE(3816), 1, + sym_expression, + STATE(5000), 1, + sym_dotted_name, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2456), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(380), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [109558] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [97751] = 9, - ACTIONS(2108), 1, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - ACTIONS(2110), 1, - sym_isMutableFlag, - ACTIONS(2112), 1, - anon_sym_QMARK_COLON, - STATE(2007), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(520), 1, + anon_sym_DQUOTE, + ACTIONS(526), 1, + sym_float, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, 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, + ACTIONS(602), 1, anon_sym_QMARK_DOT, + ACTIONS(654), 1, + sym_identifier, + ACTIONS(658), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [97810] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2135), 1, - anon_sym_not, + STATE(2396), 1, + sym_call, + STATE(2850), 1, + sym_primary_expression, + STATE(2943), 1, + sym_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, - ACTIONS(1643), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [109673] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - 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, - [97861] = 4, - STATE(2149), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, + ACTIONS(520), 1, + anon_sym_DQUOTE, + ACTIONS(526), 1, + sym_float, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(600), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(602), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [97910] = 3, + 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, - ACTIONS(1711), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1709), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [97957] = 3, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2910), 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, - ACTIONS(1715), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1713), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [109903] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1341), 1, + sym_identifier, + ACTIONS(1345), 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, - [98004] = 3, + STATE(2365), 1, + sym_call, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, + sym_selector_expression, + STATE(4280), 1, + sym_expression, + STATE(5058), 1, + sym_dotted_name, + STATE(5953), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1667), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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), 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, + [110018] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [98051] = 3, + STATE(3716), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(4933), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [110133] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [98098] = 3, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2917), 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, - ACTIONS(1719), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 31, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [110248] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(734), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2623), 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [98145] = 6, - ACTIONS(2139), 1, - anon_sym_elif, - STATE(1242), 1, - aux_sym_if_statement_repeat1, - STATE(1438), 1, - sym_elif_clause, + 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(4900), 1, + sym_expression, + STATE(5150), 1, + sym_dotted_name, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2142), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2137), 23, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4208), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(574), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [98198] = 10, - ACTIONS(1329), 1, - sym_string_start, - ACTIONS(1981), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - sym_isMutableFlag, - ACTIONS(1985), 1, - anon_sym_QMARK_COLON, - STATE(1384), 1, - sym_dict_expr, - STATE(2151), 1, - aux_sym_comparison_operator_repeat1, - STATE(2315), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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, + [110363] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [98259] = 3, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2919), 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, - ACTIONS(1723), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1721), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [110478] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1273), 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, - [98306] = 3, + ACTIONS(1299), 1, + sym_identifier, + STATE(3657), 1, + sym_primary_expression, + STATE(3663), 1, + sym_call, + STATE(3781), 1, + sym_selector_expression, + STATE(4969), 1, + sym_expression, + STATE(5123), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1679), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [110593] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [98353] = 3, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2920), 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, - ACTIONS(1707), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1705), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [110708] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [98400] = 6, - ACTIONS(2144), 1, - anon_sym_elif, - STATE(1247), 1, - aux_sym_if_statement_repeat1, - STATE(1436), 1, - sym_elif_clause, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2929), 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, - ACTIONS(2142), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2137), 23, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2618), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(524), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [98453] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1673), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1675), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [110823] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1377), 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, - [98500] = 3, + STATE(240), 1, + sym_expression, + STATE(2840), 1, + sym_primary_expression, + STATE(3027), 1, + sym_call, + STATE(3028), 1, + sym_selector_expression, + STATE(5014), 1, + sym_dotted_name, + STATE(5965), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1671), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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(648), 5, + sym_integer, + 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, + [110938] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [98547] = 8, - ACTIONS(2147), 1, - sym_isMutableFlag, - ACTIONS(2149), 1, - anon_sym_QMARK_COLON, - STATE(1294), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2236), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2934), 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, - ACTIONS(750), 5, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [111053] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [98604] = 3, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2938), 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, - ACTIONS(1657), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1659), 31, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [111168] = 26, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(43), 1, anon_sym_QMARK_DOT, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 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, - [98651] = 3, + STATE(3874), 1, + sym_call, + STATE(3895), 1, + sym_expression, + STATE(4043), 1, + sym_primary_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 1, + sym_dotted_name, + STATE(6288), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(4382), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 31, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4339), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(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, + [111283] = 26, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(43), 1, anon_sym_QMARK_DOT, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(670), 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, - [98698] = 3, + STATE(3874), 1, + sym_call, + STATE(4043), 1, + sym_primary_expression, + STATE(4047), 1, + sym_expression, + STATE(4224), 1, + sym_selector_expression, + STATE(4990), 1, + sym_dotted_name, + STATE(6288), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(4382), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1725), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_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, - [98745] = 3, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(4339), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(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, + [111398] = 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(794), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_not, + STATE(118), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [111513] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [98792] = 3, + ACTIONS(2839), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2940), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5182), 1, + sym_expression, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107300,131 +140561,423 @@ 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, - [98839] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1731), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [111703] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1341), 1, + sym_identifier, + ACTIONS(1345), 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, - [98886] = 3, + STATE(2365), 1, + sym_call, + STATE(3007), 1, + sym_primary_expression, + STATE(3219), 1, + sym_selector_expression, + STATE(4320), 1, + sym_expression, + STATE(5058), 1, + sym_dotted_name, + STATE(5953), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1777), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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), 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, + [111818] = 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, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(654), 1, + sym_identifier, + ACTIONS(658), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + STATE(2396), 1, + sym_call, + STATE(2850), 1, + sym_primary_expression, + STATE(2944), 1, + sym_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_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [111933] = 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, - anon_sym_LT_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(2729), 1, anon_sym_QMARK_LBRACK, - [98933] = 3, + 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(1735), 7, - anon_sym_EQ, + ACTIONS(2711), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2717), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + 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(1733), 31, + 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_COMMA, - anon_sym_COLON, + 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, + sym_string_start, + ACTIONS(734), 1, + anon_sym_DOT, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_in, + ACTIONS(2623), 1, + anon_sym_QMARK_DOT, + ACTIONS(2627), 1, + anon_sym_DQUOTE, + ACTIONS(2629), 1, + sym_float, + STATE(3799), 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [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, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + 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, @@ -107432,87 +140985,334 @@ 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, + 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, - anon_sym_QMARK_LBRACK, - [98980] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [112236] = 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, + anon_sym_not, + ACTIONS(2843), 1, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2398), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(380), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1737), 31, + 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, + [112351] = 26, + ACTIONS(564), 1, + anon_sym_lambda, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(734), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1347), 1, + sym_identifier, + ACTIONS(1351), 1, + anon_sym_not, + ACTIONS(2617), 1, anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(2621), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2623), 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [99027] = 3, + 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(4885), 1, + sym_expression, + STATE(5150), 1, + sym_dotted_name, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1741), 31, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [112466] = 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, - anon_sym_as, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(842), 1, + sym_identifier, + ACTIONS(848), 1, + anon_sym_not, + STATE(2399), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(2505), 1, + sym_selector_expression, + STATE(3754), 1, + sym_expression, + STATE(5000), 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(380), 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(2743), 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(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, + [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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -107520,89 +141320,135 @@ 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, - [99074] = 5, - ACTIONS(2151), 1, - anon_sym_PIPE, - STATE(1261), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1383), 6, - anon_sym_EQ, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1385), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [99125] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1747), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 31, - anon_sym_DOT, - anon_sym_as, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -107610,43 +141456,66 @@ 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, - [99172] = 4, - STATE(1261), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1496), 6, - anon_sym_EQ, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 31, - anon_sym_DOT, - anon_sym_as, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -107655,43 +141524,69 @@ 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, - [99221] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_as, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107699,43 +141594,68 @@ 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, - [99268] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1751), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 31, - anon_sym_DOT, - anon_sym_as, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107743,43 +141663,64 @@ 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, - [99315] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1343), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1448), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -107787,87 +141728,66 @@ 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, - [99362] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1755), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1753), 31, + sym_float, + ACTIONS(2857), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [99409] = 3, + 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(1699), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1697), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2859), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -107875,87 +141795,66 @@ 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, - [99456] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1759), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1757), 31, + sym_float, + ACTIONS(2857), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [99503] = 3, + 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(1763), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1761), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2859), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -107963,87 +141862,66 @@ 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, - [99550] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, + sym_float, + ACTIONS(2857), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [99597] = 3, + 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(1689), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1691), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2859), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -108051,87 +141929,68 @@ 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, - [99644] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1803), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1801), 31, + sym_float, + ACTIONS(2857), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [99691] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1767), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 31, - anon_sym_DOT, - anon_sym_as, + 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, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -108139,44 +141998,65 @@ 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, - [99738] = 4, - ACTIONS(2154), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1410), 7, - anon_sym_EQ, + sym_float, + ACTIONS(191), 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1412), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108184,92 +142064,65 @@ 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, - [99787] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1771), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1769), 31, + sym_float, + ACTIONS(2857), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [99834] = 9, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(2110), 1, - sym_isMutableFlag, - ACTIONS(2112), 1, - anon_sym_QMARK_COLON, - STATE(2007), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2251), 1, + 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(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2859), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -108278,44 +142131,65 @@ 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, - [99893] = 5, - ACTIONS(2156), 1, - anon_sym_EQ, - STATE(1263), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1488), 5, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -108324,88 +142198,65 @@ 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, - [99944] = 4, - ACTIONS(2158), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1335), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 30, + sym_float, + ACTIONS(2857), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [99993] = 4, - STATE(1263), 1, - aux_sym_union_type_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [113593] = 4, + STATE(1713), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2859), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -108414,88 +142265,158 @@ 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, - [100042] = 4, - STATE(1291), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 31, + sym_float, + ACTIONS(2857), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [100091] = 3, + 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, + anon_sym_LPAREN, + ACTIONS(2619), 1, + anon_sym_LBRACK, + ACTIONS(2621), 1, + anon_sym_LBRACE, + ACTIONS(2623), 1, + 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(4847), 1, + sym_expression, + STATE(5150), 1, + sym_dotted_name, + STATE(5996), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1687), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [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, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -108503,43 +142424,63 @@ 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, - [100138] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 7, - anon_sym_EQ, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [113852] = 4, + STATE(1633), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2473), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -108547,89 +142488,154 @@ 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, - [100185] = 5, - STATE(1284), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2160), 2, + sym_float, + ACTIONS(2471), 33, + anon_sym_import, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1478), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 29, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [100236] = 4, - STATE(1291), 1, - aux_sym_comparison_operator_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [113923] = 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, + anon_sym_not, + ACTIONS(2843), 1, + sym_identifier, + STATE(2352), 1, + sym_selector_expression, + STATE(2386), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5169), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2458), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(380), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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, + [114038] = 4, + STATE(1487), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -108638,43 +142644,160 @@ 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, - [100285] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1793), 7, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1795), 31, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [114109] = 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, - anon_sym_as, + ACTIONS(674), 1, + 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(4889), 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108682,43 +142805,154 @@ 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, - [100332] = 4, - STATE(1291), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 6, - anon_sym_EQ, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [114299] = 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(197), 1, anon_sym_DOT, - anon_sym_as, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(794), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_not, + STATE(779), 1, + sym_primary_expression, + STATE(1533), 1, + sym_call, + STATE(1614), 1, + sym_selector_expression, + STATE(3279), 1, + sym_expression, + STATE(5082), 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [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, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -108727,43 +142961,68 @@ 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, - [100381] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -108771,43 +143030,67 @@ 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, - [100428] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1799), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -108815,43 +143098,66 @@ 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, - [100475] = 4, - STATE(1291), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 6, - anon_sym_EQ, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [114633] = 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(2463), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -108860,136 +143166,334 @@ 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, - [100524] = 8, - ACTIONS(2166), 1, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + 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(2172), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - STATE(1291), 1, - aux_sym_comparison_operator_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [114706] = 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(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(794), 1, + sym_identifier, + ACTIONS(798), 1, + anon_sym_not, + STATE(779), 1, + sym_primary_expression, + STATE(1533), 1, + sym_call, + STATE(1614), 1, + sym_selector_expression, + STATE(3270), 1, + sym_expression, + STATE(5082), 1, + sym_dotted_name, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1627), 4, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - ACTIONS(2163), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1625), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [114821] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK_LBRACK, - [100581] = 3, + ACTIONS(654), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_not, + STATE(2396), 1, + sym_call, + STATE(2762), 1, + sym_expression, + 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, - ACTIONS(1857), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1859), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [114936] = 26, + ACTIONS(57), 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_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + ACTIONS(75), 1, 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, - [100628] = 3, + 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_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(754), 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, - ACTIONS(1807), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1805), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [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, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -108997,43 +143501,67 @@ 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, - [100675] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1809), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 31, - anon_sym_DOT, - anon_sym_as, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_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, @@ -109041,43 +143569,67 @@ 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, - [100722] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1815), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1813), 31, - anon_sym_DOT, - anon_sym_as, + 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, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109085,43 +143637,68 @@ 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, - [100769] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1779), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1777), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + sym_integer, + 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(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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109129,87 +143706,67 @@ 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, - [100816] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1787), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1785), 31, + sym_float, + ACTIONS(2449), 31, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_assert, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [100863] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1839), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1837), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -109217,87 +143774,157 @@ 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, - [100910] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1615), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [115420] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(794), 1, + sym_identifier, + ACTIONS(798), 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, - [100957] = 3, + STATE(779), 1, + sym_primary_expression, + STATE(1533), 1, + sym_call, + STATE(1614), 1, + sym_selector_expression, + STATE(3289), 1, + sym_expression, + STATE(5082), 1, + sym_dotted_name, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1819), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [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, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109305,43 +143932,67 @@ 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, - [101004] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1821), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -109349,43 +144000,67 @@ 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, - [101051] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1825), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1827), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -109393,43 +144068,67 @@ 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, - [101098] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1829), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1831), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [115756] = 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(2463), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -109437,43 +144136,69 @@ 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, - [101145] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1833), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 26, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109481,43 +144206,68 @@ 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, - [101192] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1851), 7, - anon_sym_EQ, + 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1849), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + sym_integer, + 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(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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109525,43 +144275,65 @@ 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, - [101239] = 4, - STATE(1263), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1383), 6, - anon_sym_EQ, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1385), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -109570,43 +144342,68 @@ 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, - [101288] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1841), 7, - anon_sym_EQ, + sym_float, + ACTIONS(191), 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_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1843), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [116052] = 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(2451), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -109614,43 +144411,68 @@ 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, - [101335] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1845), 7, - anon_sym_EQ, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 26, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109658,48 +144480,77 @@ 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, - [101382] = 8, - ACTIONS(2147), 1, - sym_isMutableFlag, - ACTIONS(2149), 1, - anon_sym_QMARK_COLON, - STATE(1294), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, + 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, + [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(750), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2865), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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, + sym_string_start, 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_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, @@ -109707,87 +144558,236 @@ 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_TILDE, anon_sym_QMARK_LBRACK, - [101439] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1695), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1693), 31, + sym_float, + ACTIONS(2861), 27, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [116279] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 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, - [101486] = 4, - STATE(2267), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2631), 1, + sym_identifier, + STATE(756), 1, + sym_primary_expression, + STATE(1210), 1, + sym_selector_expression, + STATE(1533), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5160), 1, + sym_expression, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [116394] = 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(197), 1, anon_sym_DOT, - anon_sym_as, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2631), 1, + sym_identifier, + STATE(757), 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, + 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, + 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(1993), 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(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, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -109796,42 +144796,67 @@ 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, - [101535] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1839), 6, - anon_sym_EQ, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1837), 32, - anon_sym_DOT, - anon_sym_as, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -109840,719 +144865,1221 @@ 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, - [101582] = 8, - ACTIONS(2147), 1, - sym_isMutableFlag, - ACTIONS(2149), 1, - anon_sym_QMARK_COLON, - STATE(1294), 1, - sym_dict_expr, - STATE(1806), 1, - aux_sym_comparison_operator_repeat1, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 28, + sym_float, + ACTIONS(2461), 30, + anon_sym_import, 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_assert, + anon_sym_rule, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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, - [101639] = 4, - STATE(1263), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1335), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1337), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [116655] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [101688] = 4, - STATE(1287), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2631), 1, + sym_identifier, + STATE(760), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [116770] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [101737] = 3, + ACTIONS(2631), 1, + sym_identifier, + STATE(761), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1709), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [116885] = 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_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1395), 1, 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, - [101784] = 4, - STATE(1284), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2631), 1, + sym_identifier, + STATE(762), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1323), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1325), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [117000] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [101833] = 4, - STATE(1263), 1, - aux_sym_union_type_repeat1, + ACTIONS(2631), 1, + sym_identifier, + STATE(763), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1442), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [117115] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [101882] = 9, - ACTIONS(2108), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - ACTIONS(2110), 1, - sym_isMutableFlag, - ACTIONS(2112), 1, - anon_sym_QMARK_COLON, - STATE(1902), 1, - aux_sym_comparison_operator_repeat1, - STATE(2007), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(77), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + sym_float, + ACTIONS(85), 1, + sym_string_start, + ACTIONS(197), 1, 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, + ACTIONS(199), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [101941] = 3, + ACTIONS(2631), 1, + sym_identifier, + STATE(764), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1725), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [117230] = 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_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1395), 1, 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, - [101988] = 4, - STATE(1263), 1, - aux_sym_union_type_repeat1, + ACTIONS(2631), 1, + sym_identifier, + STATE(765), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1432), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1434), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [117345] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [102037] = 3, + ACTIONS(2631), 1, + sym_identifier, + STATE(766), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1859), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [117460] = 26, + ACTIONS(57), 1, + sym_identifier, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(75), 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, - [102084] = 3, + 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_QMARK_DOT, + STATE(724), 1, + sym_primary_expression, + STATE(749), 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, - ACTIONS(1855), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1853), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [117575] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(794), 1, + sym_identifier, + ACTIONS(798), 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, - [102131] = 3, + STATE(779), 1, + sym_primary_expression, + STATE(1533), 1, + sym_call, + STATE(1614), 1, + sym_selector_expression, + STATE(3268), 1, + sym_expression, + STATE(5082), 1, + sym_dotted_name, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1879), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [117690] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(2631), 1, + sym_identifier, + ACTIONS(2877), 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, - [102178] = 3, + STATE(767), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1875), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [117805] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [102225] = 3, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(1904), 1, + sym_primary_expression, + STATE(2027), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1863), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [117920] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(2757), 1, + sym_identifier, + ACTIONS(2879), 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, - [102272] = 3, + STATE(1880), 1, + sym_selector_expression, + STATE(1904), 1, + sym_primary_expression, + STATE(2027), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [118035] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 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, - [102319] = 3, + ACTIONS(2631), 1, + sym_identifier, + STATE(767), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 7, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(79), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1867), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [118150] = 4, + STATE(2053), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, + 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, @@ -110560,87 +146087,74 @@ 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, - [102366] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1661), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1663), 31, + sym_float, + ACTIONS(217), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118221] = 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, - [102413] = 3, + 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(1797), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1799), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2576), 22, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -110648,86 +146162,66 @@ 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, - [102460] = 4, - STATE(1317), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1327), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1329), 31, + sym_float, + ACTIONS(2574), 31, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_rule, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [102509] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 31, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118304] = 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -110736,222 +146230,330 @@ 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, - [102555] = 23, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(2102), 1, + 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, - ACTIONS(2104), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - ACTIONS(2175), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118377] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, + 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(2185), 1, - anon_sym_PLUS, - ACTIONS(2187), 1, - anon_sym_DASH, - ACTIONS(2191), 1, - anon_sym_PIPE, - ACTIONS(2193), 1, - anon_sym_AMP, - ACTIONS(2195), 1, - anon_sym_CARET, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(822), 1, + sym_identifier, + ACTIONS(826), 1, + anon_sym_not, + STATE(2027), 1, + sym_call, + STATE(2033), 1, + sym_primary_expression, + STATE(2164), 1, + sym_selector_expression, + STATE(3342), 1, + sym_expression, + STATE(5144), 1, + sym_dotted_name, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1345), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [102641] = 14, - ACTIONS(2175), 1, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2239), 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, + [118492] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, + 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(2185), 1, - anon_sym_PLUS, - ACTIONS(2187), 1, - anon_sym_DASH, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(822), 1, + sym_identifier, + ACTIONS(826), 1, + anon_sym_not, + STATE(2027), 1, + sym_call, + STATE(2033), 1, + sym_primary_expression, + STATE(2164), 1, + sym_selector_expression, + STATE(3364), 1, + sym_expression, + STATE(5144), 1, + sym_dotted_name, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [102709] = 22, - ACTIONS(1343), 1, - anon_sym_EQ, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2185), 1, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(2168), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 3, anon_sym_PLUS, - ACTIONS(2187), 1, anon_sym_DASH, - ACTIONS(2191), 1, - anon_sym_PIPE, - ACTIONS(2193), 1, - anon_sym_AMP, - ACTIONS(2195), 1, - anon_sym_CARET, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2203), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2239), 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, + [118607] = 26, + ACTIONS(129), 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, anon_sym_not, - ACTIONS(2207), 1, - anon_sym_is, - STATE(1296), 1, - sym_argument_list, - STATE(1453), 1, - aux_sym_comparison_operator_repeat1, + 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, + STATE(1879), 1, + sym_primary_expression, + STATE(1914), 1, + sym_expression, + STATE(2027), 1, + sym_call, + 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, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2201), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [102793] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2135), 1, - anon_sym_not, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [118722] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(1577), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2572), 26, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -110960,140 +146562,68 @@ 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, - [102843] = 16, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(2187), 1, - anon_sym_DASH, - ACTIONS(2195), 1, - anon_sym_CARET, - ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1396), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 18, + sym_float, + ACTIONS(2570), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COLON, + 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_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, - [102915] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1771), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1769), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [102961] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118793] = 5, + ACTIONS(2819), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111102,432 +146632,773 @@ 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, - [103007] = 17, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(2187), 1, - anon_sym_DASH, - ACTIONS(2193), 1, - anon_sym_AMP, - ACTIONS(2195), 1, - anon_sym_CARET, - ACTIONS(2199), 1, anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1396), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 17, + sym_float, + ACTIONS(2465), 30, + anon_sym_import, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - 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_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, - [103081] = 7, - ACTIONS(2209), 1, - anon_sym_and, - ACTIONS(2211), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1297), 5, - anon_sym_EQ, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1299), 23, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118866] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [103135] = 3, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(1995), 1, + sym_primary_expression, + STATE(2027), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1761), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 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(2231), 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(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, + [118981] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(1395), 1, 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, - [103181] = 3, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(2009), 1, + sym_primary_expression, + STATE(2027), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1757), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [119096] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(2032), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 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(147), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [103227] = 12, - ACTIONS(2175), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [119211] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, + 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(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(2034), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 4, - anon_sym_EQ, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 3, anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [103291] = 9, - ACTIONS(1889), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [119326] = 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(1891), 1, - sym_isMutableFlag, - ACTIONS(1893), 1, - anon_sym_QMARK_COLON, - STATE(1942), 1, - sym_dict_expr, - STATE(2246), 1, - aux_sym_comparison_operator_repeat1, - STATE(2281), 1, - aux_sym_dotted_name_repeat1, + 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(1395), 1, + anon_sym_not, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(2036), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 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(2231), 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(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, + [119441] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(2051), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 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(147), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [103349] = 10, - ACTIONS(2175), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [119556] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, + 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(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(2064), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [103409] = 10, - ACTIONS(2175), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [119671] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, + 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(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(5114), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [103469] = 3, + 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, + [119786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1448), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2883), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111536,129 +147407,242 @@ 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, - [103515] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1755), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1753), 31, + sym_float, + ACTIONS(2881), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [103561] = 5, - ACTIONS(2211), 1, - anon_sym_PLUS, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [119855] = 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(5132), 1, + sym_expression, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1422), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [119970] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(828), 1, + sym_identifier, + ACTIONS(832), 1, 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, - [103611] = 3, + STATE(1943), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2208), 1, + sym_selector_expression, + STATE(3375), 1, + sym_expression, + STATE(5092), 1, + sym_dotted_name, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1749), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [120085] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111667,42 +147651,65 @@ 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, - [103657] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1747), 6, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120154] = 4, + ACTIONS(2889), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 25, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -111710,449 +147717,668 @@ 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, - [103703] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1743), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1741), 31, + sym_float, + ACTIONS(2483), 34, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [103749] = 22, - ACTIONS(1343), 1, - anon_sym_EQ, - ACTIONS(2175), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120225] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, + 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_QMARK_DOT, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(2187), 1, - anon_sym_DASH, - ACTIONS(2191), 1, - anon_sym_PIPE, - ACTIONS(2193), 1, - anon_sym_AMP, - ACTIONS(2195), 1, - anon_sym_CARET, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2203), 1, + ACTIONS(1109), 1, anon_sym_not, - ACTIONS(2207), 1, - anon_sym_is, - STATE(1296), 1, - sym_argument_list, - STATE(2230), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4868), 1, + sym_dotted_name, + STATE(5156), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2201), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 9, + 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_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, + sym_integer, + 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, + [120340] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [103833] = 3, + 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(4897), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [120455] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(828), 1, + sym_identifier, + ACTIONS(832), 1, 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, - [103879] = 3, + STATE(1943), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2208), 1, + sym_selector_expression, + STATE(3369), 1, + sym_expression, + STATE(5092), 1, + sym_dotted_name, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1733), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [120570] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [103925] = 3, + ACTIONS(2695), 1, + sym_identifier, + STATE(1006), 1, + sym_primary_expression, + STATE(1899), 1, + sym_selector_expression, + STATE(2072), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5210), 1, + sym_expression, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(173), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [120685] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + 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, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + ACTIONS(209), 1, + anon_sym_DOT, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + STATE(1900), 1, + sym_primary_expression, + STATE(1981), 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [120800] = 5, + ACTIONS(2891), 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, - [103971] = 3, + STATE(1559), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2507), 25, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [104017] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1689), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1691), 31, + sym_float, + ACTIONS(2505), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [104063] = 5, - ACTIONS(2213), 1, - anon_sym_in, - ACTIONS(2215), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [120873] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [104113] = 3, + 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(5018), 1, + sym_dotted_name, + STATE(5031), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [104159] = 3, + 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(404), 5, + sym_integer, + 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, + [120988] = 4, + STATE(1743), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1687), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2568), 26, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112161,91 +148387,64 @@ 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, - [104205] = 5, - ACTIONS(2211), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 29, + sym_float, + ACTIONS(2566), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [104255] = 8, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(2209), 1, - anon_sym_and, - ACTIONS(2211), 1, - anon_sym_PLUS, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1299), 19, + ACTIONS(2896), 27, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_not, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112254,84 +148453,64 @@ 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, - [104311] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1723), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1721), 31, + sym_float, + ACTIONS(2894), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [104357] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2900), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112340,85 +148519,65 @@ 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, - [104403] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1719), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 31, + sym_float, + ACTIONS(2898), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [104449] = 3, + 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(1715), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1713), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2514), 25, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -112426,215 +148585,336 @@ 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, - [104495] = 5, - ACTIONS(2211), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1430), 29, + sym_float, + ACTIONS(2512), 34, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [104545] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121268] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(828), 1, + sym_identifier, + ACTIONS(832), 1, 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, - [104591] = 3, + STATE(1943), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2208), 1, + sym_selector_expression, + STATE(3360), 1, + sym_expression, + STATE(5092), 1, + sym_dotted_name, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1795), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [121383] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(1395), 1, 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, - [104637] = 3, + ACTIONS(2757), 1, + sym_identifier, + STATE(1880), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(2085), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5205), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1705), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [121498] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(1395), 1, 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, - [104683] = 3, + ACTIONS(2757), 1, + sym_identifier, + STATE(1875), 1, + sym_primary_expression, + STATE(1880), 1, + sym_selector_expression, + STATE(2027), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5165), 1, + sym_expression, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2167), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(147), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1683), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112643,173 +148923,244 @@ 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, - [104729] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1739), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1737), 31, + sym_float, + ACTIONS(2560), 31, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_rule, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [104775] = 6, - ACTIONS(2209), 1, - anon_sym_and, - ACTIONS(2211), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1331), 5, - anon_sym_EQ, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1333), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121686] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [104827] = 3, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(4997), 1, + sym_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1765), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [121801] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1109), 1, 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, - [104873] = 3, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4833), 1, + sym_dotted_name, + STATE(5140), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1679), 31, + 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(404), 5, + sym_integer, + 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, + [121916] = 6, + ACTIONS(2906), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2909), 1, + anon_sym_QMARK_DOT, + STATE(1571), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2555), 25, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112818,84 +149169,154 @@ 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, - [104919] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1699), 6, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1697), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [121991] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, 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, - [104965] = 3, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4993), 1, + sym_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1675), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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(404), 5, + sym_integer, + 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, + [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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112904,84 +149325,65 @@ 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, - [105011] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1803), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1801), 31, + sym_float, + ACTIONS(2912), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [105057] = 3, + 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(1807), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1805), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2562), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112990,170 +149392,246 @@ 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, - [105103] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1815), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1813), 31, + sym_float, + ACTIONS(2560), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105149] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1669), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1671), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122248] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1109), 1, 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, - [105195] = 3, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4831), 1, + sym_dotted_name, + STATE(5141), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1811), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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(404), 5, + sym_integer, + 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, + [122363] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [105241] = 3, + STATE(243), 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, - ACTIONS(1851), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1849), 31, + 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, + [122478] = 6, + ACTIONS(2916), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113162,397 +149640,240 @@ 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, - [105287] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1695), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1693), 31, - anon_sym_DOT, + sym_float, + ACTIONS(2540), 31, + anon_sym_import, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105333] = 10, - ACTIONS(2209), 1, - anon_sym_and, - ACTIONS(2211), 1, - anon_sym_PLUS, - ACTIONS(2217), 1, - anon_sym_as, - ACTIONS(2219), 1, - anon_sym_if, - ACTIONS(2221), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1569), 5, - anon_sym_EQ, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 23, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, 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, - [105393] = 8, - ACTIONS(2209), 1, anon_sym_and, - ACTIONS(2211), 1, - anon_sym_PLUS, - ACTIONS(2221), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 5, - anon_sym_EQ, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1550), 25, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_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, - [105449] = 23, - ACTIONS(1404), 1, - anon_sym_EQ, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122553] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, + 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(2185), 1, - anon_sym_PLUS, - ACTIONS(2187), 1, - anon_sym_DASH, - ACTIONS(2191), 1, - anon_sym_PIPE, - ACTIONS(2193), 1, - anon_sym_AMP, - ACTIONS(2195), 1, - anon_sym_CARET, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2659), 1, + sym_identifier, + STATE(1899), 1, + sym_selector_expression, + STATE(1960), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5210), 1, + sym_expression, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1406), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [105535] = 6, - ACTIONS(2209), 1, - anon_sym_and, - ACTIONS(2211), 1, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [122668] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [105587] = 3, + ACTIONS(2659), 1, + sym_identifier, + STATE(1899), 1, + sym_selector_expression, + STATE(1956), 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, - ACTIONS(1787), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1785), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105633] = 23, - ACTIONS(1379), 1, - anon_sym_EQ, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2185), 1, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - ACTIONS(2187), 1, anon_sym_DASH, - ACTIONS(2191), 1, - anon_sym_PIPE, - ACTIONS(2193), 1, - anon_sym_AMP, - ACTIONS(2195), 1, - anon_sym_CARET, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1381), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [105719] = 3, + 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, + [122783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1663), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2555), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113561,170 +149882,153 @@ 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, - [105765] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1665), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1667), 31, + sym_float, + ACTIONS(2550), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105811] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1855), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122852] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, 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, - [105857] = 3, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5143), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1799), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105903] = 3, + 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(404), 5, + sym_integer, + 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, + [122967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1879), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2924), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113733,130 +150037,65 @@ 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, - [105949] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1873), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1875), 31, + sym_float, + ACTIONS(2922), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105995] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1869), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [106041] = 5, - ACTIONS(2213), 1, - anon_sym_in, - ACTIONS(2223), 1, - anon_sym_not, + 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(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2528), 25, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -113864,84 +150103,65 @@ 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, - [106091] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1865), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1867), 31, + sym_float, + ACTIONS(2526), 34, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [106137] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2930), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113950,1024 +150170,1489 @@ 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, - [106183] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1817), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1819), 31, + sym_float, + ACTIONS(2928), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [106229] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1821), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123176] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [106275] = 3, + ACTIONS(2659), 1, + sym_identifier, + STATE(1893), 1, + sym_primary_expression, + STATE(1899), 1, + sym_selector_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, - ACTIONS(1825), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1827), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [123291] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [106321] = 3, + ACTIONS(2659), 1, + sym_identifier, + STATE(1894), 1, + sym_primary_expression, + STATE(1899), 1, + sym_selector_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, - ACTIONS(1797), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1799), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [123406] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [106367] = 3, + ACTIONS(2659), 1, + sym_identifier, + STATE(1895), 1, + sym_primary_expression, + STATE(1899), 1, + sym_selector_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, - ACTIONS(1829), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1831), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [123521] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [106413] = 3, + ACTIONS(2659), 1, + sym_identifier, + STATE(1896), 1, + sym_primary_expression, + STATE(1899), 1, + sym_selector_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, - ACTIONS(1861), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1863), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_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, + [123636] = 26, + ACTIONS(67), 1, anon_sym_LPAREN, + ACTIONS(69), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [106459] = 3, + ACTIONS(2735), 1, + sym_identifier, + STATE(1046), 1, + sym_primary_expression, + STATE(1210), 1, + sym_selector_expression, + STATE(1533), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5160), 1, + sym_expression, + STATE(5858), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2066), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(119), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1835), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [106505] = 10, - ACTIONS(2175), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [123751] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1544), 24, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + ACTIONS(211), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [106565] = 3, + ACTIONS(2659), 1, + sym_identifier, + STATE(1899), 1, + sym_selector_expression, + STATE(1902), 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, - ACTIONS(1619), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - 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, - [106611] = 15, - ACTIONS(2175), 1, + 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, + [123866] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(137), 1, anon_sym_LBRACK, - ACTIONS(2181), 1, - anon_sym_STAR_STAR, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2185), 1, - anon_sym_PLUS, - ACTIONS(2187), 1, - anon_sym_DASH, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2179), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2197), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1396), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 19, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(822), 1, + sym_identifier, + ACTIONS(826), 1, 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, - [106681] = 4, - ACTIONS(2156), 1, - anon_sym_EQ, + STATE(2027), 1, + sym_call, + STATE(2033), 1, + sym_primary_expression, + STATE(2164), 1, + sym_selector_expression, + STATE(3374), 1, + sym_expression, + STATE(5144), 1, + sym_dotted_name, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2239), 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, + [123981] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(654), 1, + sym_identifier, + ACTIONS(658), 1, 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, - [106729] = 5, - ACTIONS(2225), 1, - anon_sym_LBRACE, - STATE(1297), 1, - sym_dictionary, + STATE(2396), 1, + sym_call, + STATE(2769), 1, + sym_expression, + 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, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [124096] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [106779] = 3, + ACTIONS(2659), 1, + sym_identifier, + STATE(1899), 1, + sym_selector_expression, + STATE(1910), 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, - ACTIONS(1845), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [124211] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [106825] = 3, + ACTIONS(2659), 1, + sym_identifier, + STATE(1899), 1, + sym_selector_expression, + STATE(1919), 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, - ACTIONS(1478), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 3, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + 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, + [124326] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, 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, - [106871] = 3, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5151), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1843), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [106917] = 16, - ACTIONS(2227), 1, + 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(404), 5, + sym_integer, + 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, + [124441] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + 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_QMARK_DOT, - ACTIONS(2241), 1, - anon_sym_AMP, - ACTIONS(2243), 1, - anon_sym_CARET, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(1900), 1, + sym_primary_expression, + STATE(2055), 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, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, + 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_DASH, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, - 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, - [106988] = 7, - ACTIONS(2249), 1, - anon_sym_and, - ACTIONS(2251), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1299), 23, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [124556] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [107041] = 4, - STATE(1431), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1432), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1434), 30, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(211), 1, anon_sym_QMARK_DOT, + ACTIONS(828), 1, + sym_identifier, + ACTIONS(832), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [107088] = 4, - STATE(1431), 1, - aux_sym_union_type_repeat1, + STATE(1943), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2208), 1, + sym_selector_expression, + STATE(3355), 1, + sym_expression, + STATE(5092), 1, + sym_dotted_name, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1442), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [124671] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(828), 1, + sym_identifier, + ACTIONS(832), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [107135] = 4, - ACTIONS(2253), 1, - anon_sym_DASH_GT, + STATE(1943), 1, + sym_primary_expression, + STATE(2072), 1, + sym_call, + STATE(2208), 1, + sym_selector_expression, + STATE(3363), 1, + sym_expression, + STATE(5092), 1, + sym_dotted_name, + STATE(5909), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1335), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [124786] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(2659), 1, + sym_identifier, + ACTIONS(2932), 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, - [107182] = 4, - STATE(1431), 1, - aux_sym_union_type_repeat1, + STATE(1899), 1, + sym_selector_expression, + STATE(2014), 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, - ACTIONS(1335), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2150), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(207), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [107229] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [124901] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(654), 1, + sym_identifier, + ACTIONS(658), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2396), 1, + sym_call, + STATE(2850), 1, + sym_primary_expression, + STATE(2873), 1, + sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [107276] = 4, - STATE(1431), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [125016] = 4, + STATE(1561), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2507), 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_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -114976,196 +151661,242 @@ 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, - [107323] = 12, - ACTIONS(2227), 1, - anon_sym_LPAREN, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, anon_sym_QMARK_LBRACK, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 23, + sym_float, + ACTIONS(2505), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_rule, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_for, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [107386] = 4, - STATE(2229), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [125087] = 26, + ACTIONS(161), 1, anon_sym_LPAREN, + ACTIONS(163), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + ACTIONS(2659), 1, + sym_identifier, + STATE(1899), 1, + sym_selector_expression, + STATE(2014), 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_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, - [107433] = 21, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2227), 1, + 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, + [125202] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + 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(2241), 1, - anon_sym_AMP, - ACTIONS(2243), 1, - anon_sym_CARET, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2255), 1, - anon_sym_PIPE, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(5146), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, + 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, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1406), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [107514] = 5, - ACTIONS(2257), 1, - anon_sym_EQ, - STATE(1431), 1, - aux_sym_union_type_repeat1, + 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, + [125317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2936), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -115174,84 +151905,64 @@ 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, - [107563] = 4, - ACTIONS(2259), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1390), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 29, + sym_float, + ACTIONS(2934), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_rule, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [107610] = 4, - STATE(1452), 1, - aux_sym_union_type_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [125386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1496), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2940), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -115260,186 +151971,64 @@ 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, - [107657] = 20, - ACTIONS(2227), 1, - anon_sym_LPAREN, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, - anon_sym_QMARK_DOT, - ACTIONS(2241), 1, - anon_sym_AMP, - ACTIONS(2243), 1, - anon_sym_CARET, - ACTIONS(2247), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2255), 1, - anon_sym_PIPE, - ACTIONS(2263), 1, - anon_sym_not, - ACTIONS(2267), 1, - anon_sym_is, - STATE(1575), 1, - aux_sym_comparison_operator_repeat1, - STATE(1617), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2265), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2261), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [107736] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2271), 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(2269), 24, + ACTIONS(2938), 33, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [107781] = 4, - ACTIONS(2273), 1, - anon_sym_DASH_GT, + [125455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1410), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2944), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [107828] = 5, - ACTIONS(2275), 1, anon_sym_LBRACE, - STATE(1680), 1, - sym_dictionary, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_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, @@ -115448,508 +152037,887 @@ 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, - [107877] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2277), 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(2279), 24, + ACTIONS(2942), 33, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [107922] = 6, - ACTIONS(2249), 1, - anon_sym_and, - ACTIONS(2251), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1331), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1333), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + [125524] = 26, + ACTIONS(129), 1, + sym_identifier, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + ACTIONS(139), 1, + anon_sym_lambda, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, 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, - [107973] = 3, + 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, + STATE(1879), 1, + sym_primary_expression, + STATE(1994), 1, + sym_expression, + STATE(2027), 1, + sym_call, + 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, - ACTIONS(2277), 12, - sym__dedent, - sym_string_start, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [125639] = 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, - anon_sym_AT, + 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(5119), 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_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2279), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_elif, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [108018] = 3, + 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, + [125754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2283), 12, + 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(2281), 24, + ACTIONS(2946), 33, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [108063] = 3, + [125823] = 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(822), 1, + sym_identifier, + ACTIONS(826), 1, + anon_sym_not, + STATE(2027), 1, + sym_call, + STATE(2033), 1, + sym_primary_expression, + STATE(2164), 1, + sym_selector_expression, + STATE(3358), 1, + sym_expression, + STATE(5144), 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2239), 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, + [125938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2287), 12, + ACTIONS(2952), 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(2285), 24, + ACTIONS(2950), 33, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [108108] = 10, - ACTIONS(2227), 1, + [126007] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + 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_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(4992), 1, + sym_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [108167] = 15, - ACTIONS(2227), 1, + 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(404), 5, + sym_integer, + 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, + [126122] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + 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_QMARK_DOT, - ACTIONS(2243), 1, - anon_sym_CARET, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(4876), 1, + sym_dotted_name, + STATE(5030), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, + 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, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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(404), 5, + sym_integer, + 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, + [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_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [108236] = 14, - ACTIONS(2227), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2235), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2239), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_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, - [108303] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2271), 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, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2269), 24, + ACTIONS(217), 32, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [108348] = 13, - ACTIONS(2227), 1, + [126308] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + 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_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(5018), 1, + sym_dotted_name, + STATE(5023), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, + 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, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 21, + 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(404), 5, + sym_integer, + 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, + [126423] = 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, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1109), 1, 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, - [108413] = 8, - ACTIONS(2249), 1, - anon_sym_and, - ACTIONS(2251), 1, - anon_sym_PLUS, - ACTIONS(2289), 1, - anon_sym_or, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4877), 1, + sym_dotted_name, + STATE(5126), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, + 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_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, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1550), 25, - anon_sym_as, - anon_sym_if, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [126538] = 4, + STATE(1638), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2534), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -115958,144 +152926,222 @@ 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, - [108468] = 21, - ACTIONS(2102), 1, + sym_float, + ACTIONS(2532), 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, - ACTIONS(2104), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - ACTIONS(2227), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [126609] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + 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_QMARK_DOT, - ACTIONS(2241), 1, - anon_sym_AMP, - ACTIONS(2243), 1, - anon_sym_CARET, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2255), 1, - anon_sym_PIPE, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(4862), 1, + sym_dotted_name, + STATE(5133), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, + 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, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1381), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [108549] = 3, + 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(404), 5, + sym_integer, + 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, + [126724] = 4, + STATE(1561), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2287), 12, + ACTIONS(2485), 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(2285), 24, + ACTIONS(2483), 33, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [108594] = 4, - ACTIONS(2291), 1, - anon_sym_DASH_GT, + [126795] = 4, + STATE(1638), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1410), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2538), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, + 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, @@ -116103,85 +153149,154 @@ 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, - [108641] = 4, - STATE(1457), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1496), 6, + 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_PLUS, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 29, + 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, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + 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(4228), 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [108688] = 5, - STATE(1451), 1, - aux_sym_dotted_name_repeat1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [126981] = 4, + STATE(1638), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2293), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1478), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 28, - anon_sym_as, - anon_sym_if, + ACTIONS(2485), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116190,300 +153305,510 @@ 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, - [108737] = 5, - ACTIONS(2296), 1, - anon_sym_PIPE, - STATE(1452), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1383), 5, + 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, - ACTIONS(1385), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [127052] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [108786] = 4, - STATE(1468), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4838), 1, + sym_dotted_name, + STATE(5033), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 29, + 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(404), 5, + sym_integer, + 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, + [127167] = 26, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 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, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [108833] = 4, - ACTIONS(2299), 1, - anon_sym_DASH_GT, + 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(4227), 1, + sym_expression, + STATE(5115), 1, + sym_dotted_name, + STATE(5934), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 28, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [127282] = 26, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, anon_sym_QMARK_DOT, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(1395), 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, - [108880] = 3, + ACTIONS(2733), 1, + sym_identifier, + STATE(3867), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4230), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5187), 1, + sym_expression, + STATE(6288), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2283), 12, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 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(4294), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(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, + [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, - ts_builtin_sym_end, + ACTIONS(610), 1, + anon_sym_DOT, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2611), 1, anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + STATE(2678), 1, + sym_primary_expression, + STATE(2752), 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, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2281), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_elif, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3009), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(596), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [108925] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1436), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1438), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [127512] = 26, + ACTIONS(135), 1, anon_sym_LPAREN, + ACTIONS(137), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(822), 1, + sym_identifier, + ACTIONS(826), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [108972] = 5, - ACTIONS(2301), 1, - anon_sym_PIPE, - STATE(1457), 1, - aux_sym_union_type_repeat1, + STATE(2027), 1, + sym_call, + STATE(2033), 1, + sym_primary_expression, + STATE(2164), 1, + sym_selector_expression, + STATE(3354), 1, + sym_expression, + STATE(5144), 1, + sym_dotted_name, + STATE(5990), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109021] = 4, - STATE(1450), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2239), 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, + [127627] = 4, + STATE(1638), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2507), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, + 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, @@ -116492,127 +153817,248 @@ 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, - [109068] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2304), 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(2306), 24, + ACTIONS(2505), 33, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [109113] = 4, - STATE(1450), 1, - aux_sym_union_type_repeat1, + [127698] = 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, + 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(2751), 1, + sym_primary_expression, + STATE(2824), 1, + sym_selector_expression, + STATE(2870), 1, + sym_call, + STATE(4209), 1, + sym_expression, + STATE(5115), 1, + sym_dotted_name, + STATE(5934), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1335), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [127813] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(654), 1, + sym_identifier, + ACTIONS(658), 1, 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, - [109160] = 4, - ACTIONS(2308), 1, - anon_sym_DASH_GT, + STATE(2396), 1, + sym_call, + STATE(2850), 1, + sym_primary_expression, + STATE(2863), 1, + sym_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, - ACTIONS(1335), 7, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 28, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [127928] = 6, + ACTIONS(2954), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + 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_in, + anon_sym_LBRACE, 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_AT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -116620,90 +154066,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, - [109207] = 10, - ACTIONS(2249), 1, - anon_sym_and, - ACTIONS(2251), 1, - anon_sym_PLUS, - ACTIONS(2289), 1, - anon_sym_or, - ACTIONS(2310), 1, + sym_float, + ACTIONS(2540), 31, + anon_sym_import, anon_sym_as, - ACTIONS(2312), 1, + anon_sym_assert, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1569), 4, + 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, - ACTIONS(1567), 23, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [128003] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(5155), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109266] = 4, - STATE(1474), 1, + 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, + [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(1327), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1329), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2555), 25, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_AT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116712,85 +154223,64 @@ 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, - [109313] = 5, - ACTIONS(2314), 1, - anon_sym_EQ, - STATE(1450), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1488), 5, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 29, - anon_sym_DOT, + sym_float, + ACTIONS(2550), 32, + anon_sym_import, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [109362] = 4, + 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, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2538), 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_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -116799,352 +154289,332 @@ 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, - [109409] = 4, - STATE(1468), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 29, + sym_float, + ACTIONS(2536), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COLON, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109456] = 4, - STATE(1450), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1623), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 29, + 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, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 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, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109503] = 8, - ACTIONS(2319), 1, - anon_sym_not, - ACTIONS(2325), 1, - anon_sym_is, - STATE(1468), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2611), 1, + anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + sym_identifier, + STATE(2734), 1, + sym_primary_expression, + STATE(2804), 1, + sym_selector_expression, + STATE(2870), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5171), 1, + sym_expression, + STATE(5934), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1627), 4, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - ACTIONS(2316), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1625), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK_LBRACK, - [109558] = 5, - ACTIONS(2251), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1430), 29, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109607] = 9, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(1991), 1, - anon_sym_QMARK_COLON, - ACTIONS(2328), 1, - sym_isMutableFlag, - STATE(1294), 1, - sym_dict_expr, - STATE(2063), 1, - aux_sym_comparison_operator_repeat1, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109664] = 4, - STATE(1468), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2611), 1, + anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + sym_identifier, + STATE(2733), 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, - ACTIONS(1609), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [128494] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 1, 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, - [109711] = 4, - STATE(1450), 1, - aux_sym_union_type_repeat1, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4839), 1, + sym_dotted_name, + STATE(5029), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1442), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109758] = 4, + 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(404), 5, + sym_integer, + 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, + [128609] = 4, + STATE(1559), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1458), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1460), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2568), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -117153,412 +154623,421 @@ 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, - [109805] = 4, - STATE(1451), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1323), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1325), 30, + sym_float, + ACTIONS(2566), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_rule, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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, - [109852] = 4, - STATE(1466), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 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, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109899] = 4, - STATE(1450), 1, - aux_sym_union_type_repeat1, + ACTIONS(2611), 1, + anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + sym_identifier, + STATE(2715), 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, - ACTIONS(1432), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1434), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109946] = 21, - ACTIONS(2102), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [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(2104), 1, - anon_sym_is, - ACTIONS(2227), 1, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - ACTIONS(2241), 1, - anon_sym_AMP, - ACTIONS(2243), 1, - anon_sym_CARET, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2255), 1, - anon_sym_PIPE, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2611), 1, + anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + sym_identifier, + STATE(2714), 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, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, + 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_DASH, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1345), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [110027] = 7, - ACTIONS(2249), 1, - anon_sym_and, - ACTIONS(2251), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 9, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [128910] = 26, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1299), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(1395), 1, 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, - [110080] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2330), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1479), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1468), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1473), 28, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [110129] = 4, - STATE(1468), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, + 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, - ACTIONS(1609), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 29, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(1395), 1, 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, - [110176] = 10, - ACTIONS(2227), 1, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2611), 1, + anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + sym_identifier, + STATE(2712), 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, - ACTIONS(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [110235] = 4, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [129140] = 4, + STATE(1561), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1479), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1534), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1536), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2534), 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_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -117567,219 +155046,422 @@ 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, - [110282] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2335), 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(2333), 24, + ACTIONS(2532), 33, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [110327] = 5, - ACTIONS(2251), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 29, + [129211] = 26, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [110376] = 10, - ACTIONS(2227), 1, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, + ACTIONS(2603), 1, anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_QMARK_LBRACK, - STATE(1617), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2611), 1, + anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + sym_identifier, + STATE(2711), 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, - ACTIONS(1542), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1544), 25, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [129326] = 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, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5022), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [110435] = 3, + 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(404), 5, + sym_integer, + 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, + [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, + 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, + ACTIONS(2667), 1, + sym_identifier, + STATE(2709), 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, - ACTIONS(2304), 12, - sym__dedent, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [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, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(2611), 1, anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + sym_identifier, + STATE(2708), 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_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2306), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_elif, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2989), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(596), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [110480] = 5, - ACTIONS(2251), 1, - anon_sym_PLUS, + 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, + [129671] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1482), 2, + STATE(1631), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1422), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2572), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -117788,376 +155470,599 @@ 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, - [110529] = 20, - ACTIONS(2227), 1, - anon_sym_LPAREN, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2233), 1, - anon_sym_STAR_STAR, - ACTIONS(2235), 1, - anon_sym_QMARK_DOT, - ACTIONS(2241), 1, - anon_sym_AMP, - ACTIONS(2243), 1, - anon_sym_CARET, - ACTIONS(2247), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2255), 1, - anon_sym_PIPE, - ACTIONS(2263), 1, - anon_sym_not, - ACTIONS(2267), 1, - anon_sym_is, - STATE(1617), 1, - sym_argument_list, - STATE(2232), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2231), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2237), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2239), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2265), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2261), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [110608] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2335), 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(2333), 24, + ACTIONS(2570), 32, anon_sym_import, anon_sym_DOT, + anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_elif, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [110653] = 9, - ACTIONS(1987), 1, + [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, + anon_sym_LPAREN, + ACTIONS(2603), 1, + anon_sym_LBRACK, + ACTIONS(2605), 1, anon_sym_LBRACE, - ACTIONS(1991), 1, - anon_sym_QMARK_COLON, - ACTIONS(2328), 1, - sym_isMutableFlag, - STATE(1294), 1, - sym_dict_expr, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, - STATE(2272), 1, - aux_sym_comparison_operator_repeat1, + 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(2696), 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, - ACTIONS(750), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 26, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [129857] = 26, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1333), 1, + sym_identifier, + ACTIONS(1339), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [110710] = 6, - ACTIONS(2249), 1, - anon_sym_and, - ACTIONS(2251), 1, - anon_sym_PLUS, + 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(4205), 1, + sym_expression, + STATE(5115), 1, + sym_dotted_name, + STATE(5934), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1482), 2, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 28, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [129972] = 26, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, anon_sym_QMARK_DOT, + ACTIONS(2611), 1, + anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + sym_identifier, + ACTIONS(2966), 1, 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, - [110761] = 4, - ACTIONS(1385), 1, - anon_sym_LF, - STATE(1588), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + 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, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 33, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [130087] = 26, + ACTIONS(586), 1, + anon_sym_lambda, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(610), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(2605), 1, + anon_sym_LBRACE, + ACTIONS(2607), 1, 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, - [110807] = 3, + ACTIONS(2611), 1, + anon_sym_DQUOTE, + ACTIONS(2613), 1, + sym_float, + ACTIONS(2667), 1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1478), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5019), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [110851] = 20, - ACTIONS(2337), 1, + 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(404), 5, + sym_integer, + 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, + [130317] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, + 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(2349), 1, + ACTIONS(1385), 1, + sym_identifier, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(2355), 1, - anon_sym_PIPE, - ACTIONS(2357), 1, - anon_sym_AMP, - ACTIONS(2359), 1, - anon_sym_CARET, - ACTIONS(2365), 1, - anon_sym_is, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2240), 1, - aux_sym_comparison_operator_repeat1, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5007), 1, + sym_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, + 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, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 8, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [110929] = 5, - ACTIONS(2369), 1, - anon_sym_LBRACE, - STATE(1935), 1, + 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, + [130432] = 4, + STATE(3214), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(221), 27, sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -118166,263 +156071,332 @@ 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, - [110977] = 10, - ACTIONS(2371), 1, + sym_float, + ACTIONS(217), 32, + anon_sym_import, + anon_sym_DOT, anon_sym_as, - ACTIONS(2373), 1, + anon_sym_assert, anon_sym_if, - ACTIONS(2375), 1, - anon_sym_and, - ACTIONS(2377), 1, - anon_sym_or, - ACTIONS(2379), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1569), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 22, - sym__newline, - anon_sym_COMMA, + anon_sym_rule, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_lambda, 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, - [111035] = 10, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 5, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1544), 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_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, - [111093] = 4, - STATE(1502), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1327), 5, - anon_sym_EQ, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1329), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [130503] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [111139] = 5, - ACTIONS(2383), 1, - anon_sym_EQ, - STATE(1518), 1, - aux_sym_union_type_repeat1, + 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, - ACTIONS(1488), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [130618] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [111187] = 5, - ACTIONS(2379), 1, - anon_sym_PLUS, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(5124), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1508), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1430), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [130733] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - anon_sym_and, - anon_sym_or, + 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, + 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [111235] = 3, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [130848] = 4, + STATE(2099), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1683), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(221), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -118431,123 +156405,152 @@ 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, - [111279] = 4, - STATE(1622), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1323), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1325), 29, - sym__newline, + sym_float, + ACTIONS(217), 32, + 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_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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, - [111325] = 4, - STATE(1630), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1432), 5, - anon_sym_EQ, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1434), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [130919] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5118), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [111371] = 3, + 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(404), 5, + sym_integer, + 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, + [131034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1725), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2952), 27, + sym__newline, + 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_in, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -118556,190 +156559,331 @@ 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, - [111415] = 10, - ACTIONS(2337), 1, - anon_sym_LPAREN, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, - anon_sym_QMARK_DOT, - ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1544), 24, - sym__newline, + sym_float, + ACTIONS(2950), 33, + 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_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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [111473] = 4, - STATE(1630), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1440), 5, - anon_sym_EQ, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1442), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [131103] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - anon_sym_and, - anon_sym_or, + STATE(2396), 1, + sym_call, + STATE(2590), 1, + sym_primary_expression, + STATE(2738), 1, + sym_selector_expression, + STATE(3948), 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, 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, - [111519] = 22, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [131218] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + 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(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - ACTIONS(2387), 1, - anon_sym_PLUS, - ACTIONS(2389), 1, - anon_sym_DASH, - ACTIONS(2393), 1, - anon_sym_PIPE, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(654), 1, + sym_identifier, + ACTIONS(658), 1, + anon_sym_not, + STATE(2396), 1, + sym_call, + STATE(2850), 1, + sym_primary_expression, + STATE(2865), 1, + sym_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, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1406), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, + 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_TILDE, + ACTIONS(29), 4, + 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, + 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, + [131333] = 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(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [111601] = 4, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + STATE(2396), 1, + sym_call, + STATE(2612), 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(1532), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1534), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1536), 29, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [131448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2948), 27, sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -118748,128 +156892,154 @@ 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, - [111647] = 5, - ACTIONS(2401), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1422), 27, + sym_float, + ACTIONS(2946), 33, + 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_rule, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [111695] = 5, - ACTIONS(2401), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 5, - anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1291), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [131517] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [111743] = 5, - ACTIONS(2401), 1, - anon_sym_PLUS, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4845), 1, + sym_dotted_name, + STATE(5101), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1430), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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(404), 5, + sym_integer, + 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, + [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_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_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118877,44 +157047,64 @@ 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, - [111791] = 8, - ACTIONS(2375), 1, - anon_sym_and, - ACTIONS(2377), 1, - anon_sym_or, - ACTIONS(2379), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(43), 2, + sym_float, + ACTIONS(2942), 33, + anon_sym_import, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 4, + 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, - ACTIONS(1550), 24, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [131701] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2940), 27, sym__newline, - anon_sym_as, - anon_sym_if, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_not, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -118923,41 +157113,65 @@ 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, - [111845] = 4, - STATE(1518), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1432), 6, + 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_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1434), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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_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_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118965,883 +157179,2022 @@ 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, - [111891] = 4, - STATE(1518), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1440), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1442), 28, + sym_float, + ACTIONS(2934), 33, + 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_rule, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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, - [111937] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1711), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [131839] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(514), 1, + anon_sym_lambda, + ACTIONS(516), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [111981] = 4, - STATE(1518), 1, - aux_sym_union_type_repeat1, + STATE(2396), 1, + sym_call, + STATE(2590), 1, + sym_primary_expression, + STATE(2738), 1, + sym_selector_expression, + STATE(3942), 1, + sym_expression, + STATE(5127), 1, + sym_dotted_name, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1335), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [131954] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [112027] = 4, - STATE(1518), 1, - aux_sym_union_type_repeat1, + STATE(241), 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, - ACTIONS(1383), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [132069] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [112073] = 4, - STATE(1550), 1, - aux_sym_union_type_repeat1, + ACTIONS(2739), 1, + sym_identifier, + 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, - ACTIONS(1496), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [132184] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(2739), 1, + sym_identifier, + ACTIONS(2968), 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, - [112119] = 21, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2337), 1, - anon_sym_LPAREN, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, - anon_sym_QMARK_DOT, - ACTIONS(2355), 1, - anon_sym_PIPE, - ACTIONS(2357), 1, - anon_sym_AMP, - ACTIONS(2359), 1, - anon_sym_CARET, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, + 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, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1406), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [112199] = 4, - STATE(2267), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5117), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [112245] = 10, - ACTIONS(2175), 1, + 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(404), 5, + sym_integer, + 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, + [132414] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + 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_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(4846), 1, + sym_dotted_name, + STATE(5128), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 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, + 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [112303] = 10, - ACTIONS(2175), 1, + 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(404), 5, + sym_integer, + 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, + [132529] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + 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(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2594), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5182), 1, + sym_expression, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 5, - anon_sym_STAR, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(522), 3, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [132644] = 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, - anon_sym_in, + 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(1395), 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, - [112361] = 5, - ACTIONS(2403), 1, - anon_sym_EQ, - STATE(1630), 1, - aux_sym_union_type_repeat1, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2593), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 1, + sym_expression, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(522), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [112409] = 12, - ACTIONS(2175), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [132759] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(2183), 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(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(776), 1, + anon_sym_not, + STATE(780), 1, + sym_primary_expression, + STATE(1655), 1, + sym_selector_expression, + STATE(1659), 1, + sym_call, + STATE(3282), 1, + sym_expression, + STATE(5130), 1, + sym_dotted_name, + STATE(5982), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 3, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 21, - 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, + 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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [112471] = 17, - ACTIONS(2175), 1, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [132874] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + 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_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - ACTIONS(2387), 1, - anon_sym_PLUS, - ACTIONS(2389), 1, - anon_sym_DASH, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(726), 1, + sym_primary_expression, + STATE(796), 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, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [112543] = 16, - ACTIONS(2175), 1, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [132989] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + 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_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - ACTIONS(2387), 1, - anon_sym_PLUS, - ACTIONS(2389), 1, - anon_sym_DASH, - ACTIONS(2397), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(5018), 1, + sym_dotted_name, + STATE(5131), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 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, - 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, - [112613] = 15, - ACTIONS(2175), 1, + 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_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, + sym_integer, + 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, + [133104] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + 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(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - ACTIONS(2387), 1, - anon_sym_PLUS, - ACTIONS(2389), 1, - anon_sym_DASH, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2574), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 1, + sym_expression, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + 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(2618), 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(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, + [133219] = 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_in, + 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(1395), 1, 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, - [112681] = 14, - ACTIONS(2175), 1, + ACTIONS(2739), 1, + sym_identifier, + STATE(789), 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, + [133334] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(2183), 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(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - ACTIONS(2387), 1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2739), 1, + sym_identifier, + STATE(790), 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, - ACTIONS(2389), 1, anon_sym_DASH, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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, + [133449] = 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(1395), 1, + anon_sym_not, + ACTIONS(2739), 1, + sym_identifier, + STATE(791), 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, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, + 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, + [133564] = 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_in, + 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(1395), 1, 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, - [112747] = 4, - ACTIONS(2405), 1, - anon_sym_DASH_GT, + ACTIONS(2739), 1, + sym_identifier, + STATE(792), 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, - ACTIONS(1335), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [133679] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [112793] = 4, - STATE(1630), 1, - aux_sym_union_type_repeat1, + ACTIONS(2739), 1, + sym_identifier, + STATE(793), 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, - ACTIONS(1335), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [133794] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2739), 1, + sym_identifier, + STATE(794), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [112839] = 7, - ACTIONS(2375), 1, - anon_sym_and, - ACTIONS(2379), 1, - anon_sym_PLUS, + 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, + [133909] = 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(1395), 1, + anon_sym_not, + ACTIONS(2739), 1, + sym_identifier, + STATE(795), 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(1508), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 8, - sym__newline, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [134024] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(602), 1, anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1299), 19, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2573), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 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(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(2618), 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(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, + [134139] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, + ACTIONS(512), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, 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, - [112891] = 5, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2572), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 1, + sym_expression, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 2, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + 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(2618), 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(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, + [134254] = 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, - STATE(1532), 2, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2571), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 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(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(2618), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1468), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1473), 27, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [134369] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2930), 27, sym__newline, - anon_sym_as, - anon_sym_if, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -119850,387 +159203,599 @@ 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, - [112939] = 4, - ACTIONS(1337), 1, - anon_sym_LF, - ACTIONS(2410), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1335), 33, + sym_float, + ACTIONS(2928), 33, + 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_rule, + anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_lambda, 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_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, - [112985] = 10, - ACTIONS(2337), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [134438] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, + 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(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 1, + sym_expression, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 24, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(522), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [113043] = 10, - ACTIONS(2337), 1, - anon_sym_LPAREN, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, - anon_sym_QMARK_DOT, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 24, - sym__newline, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [134553] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2568), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 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(522), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [113101] = 12, - ACTIONS(2337), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [134668] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, + 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(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2567), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 1, + sym_expression, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 22, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(522), 3, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [113163] = 16, - ACTIONS(2337), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [134783] = 26, + ACTIONS(506), 1, + sym_identifier, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, + 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, - ACTIONS(2357), 1, - anon_sym_AMP, - ACTIONS(2359), 1, - anon_sym_CARET, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(2396), 1, + sym_call, + STATE(2540), 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, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, + 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, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 16, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [113233] = 15, - ACTIONS(2337), 1, + 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, + [134898] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, + 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(2359), 1, - anon_sym_CARET, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(3935), 1, + sym_expression, + STATE(5127), 1, + sym_dotted_name, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, + 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, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 17, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - 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, - [113301] = 14, - ACTIONS(2337), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [135013] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, + 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_QMARK_DOT, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(5018), 1, + sym_dotted_name, + STATE(5135), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, + 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, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 18, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [113367] = 3, + 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(404), 5, + sym_integer, + 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, + [135128] = 4, + ACTIONS(2970), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1679), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2528), 25, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120238,80 +159803,65 @@ 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, - [113411] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1673), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1675), 30, + sym_float, + ACTIONS(2526), 34, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_rule, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [113455] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [135199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1671), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2924), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -120320,552 +159870,844 @@ 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, - [113499] = 13, - ACTIONS(2337), 1, - anon_sym_LPAREN, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, - anon_sym_QMARK_DOT, - ACTIONS(2367), 1, anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 20, - sym__newline, + sym_float, + ACTIONS(2922), 33, + 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_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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - [113563] = 21, - ACTIONS(2175), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [135268] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + 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(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - ACTIONS(2387), 1, - anon_sym_PLUS, - ACTIONS(2389), 1, - anon_sym_DASH, - ACTIONS(2393), 1, - anon_sym_PIPE, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_CARET, - ACTIONS(2414), 1, + ACTIONS(2685), 1, + sym_identifier, + ACTIONS(2972), 1, anon_sym_not, - ACTIONS(2418), 1, - anon_sym_is, - STATE(1296), 1, - sym_argument_list, - STATE(1731), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2412), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 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, - [113643] = 3, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2553), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 1, + sym_expression, + STATE(5947), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + STATE(2588), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + 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(2618), 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(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, + [135383] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4835), 1, + sym_dotted_name, + STATE(5006), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [113687] = 22, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, + 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(404), 5, + sym_integer, + 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, + [135498] = 26, + ACTIONS(510), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, + 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(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, - anon_sym_STAR_STAR, - ACTIONS(2387), 1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2685), 1, + sym_identifier, + STATE(2327), 1, + sym_selector_expression, + STATE(2396), 1, + sym_call, + STATE(2553), 1, + sym_primary_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5167), 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(522), 3, anon_sym_PLUS, - ACTIONS(2389), 1, anon_sym_DASH, - ACTIONS(2393), 1, - anon_sym_PIPE, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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(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, + [135613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1381), 3, + ACTIONS(2555), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [113769] = 22, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, anon_sym_LPAREN, - ACTIONS(2177), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2387), 1, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, - ACTIONS(2389), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2393), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2397), 1, anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1345), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1373), 5, - anon_sym_in, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1448), 5, + 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, - [113851] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1839), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1837), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [135682] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(718), 1, + anon_sym_lambda, + ACTIONS(720), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [113895] = 20, - ACTIONS(2337), 1, - anon_sym_LPAREN, - ACTIONS(2339), 1, - anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, - anon_sym_QMARK_DOT, - ACTIONS(2349), 1, - anon_sym_not, - ACTIONS(2355), 1, - anon_sym_PIPE, - ACTIONS(2357), 1, - anon_sym_AMP, - ACTIONS(2359), 1, - anon_sym_CARET, - ACTIONS(2365), 1, - anon_sym_is, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1654), 1, - aux_sym_comparison_operator_repeat1, - STATE(1804), 1, - sym_argument_list, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(5153), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, + 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, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 8, - sym__newline, + 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, + [135797] = 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, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [113973] = 5, - ACTIONS(2420), 1, - anon_sym_PIPE, - STATE(1550), 1, - aux_sym_union_type_repeat1, + 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(4883), 1, + sym_dotted_name, + STATE(5111), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(404), 5, + sym_integer, + 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, + [135912] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(97), 1, + anon_sym_lambda, + ACTIONS(99), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2739), 1, + sym_identifier, + STATE(798), 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_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, - [114021] = 19, - ACTIONS(1448), 1, - anon_sym_LF, - ACTIONS(2423), 1, + 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, + [136027] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 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(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, anon_sym_QMARK_DOT, - ACTIONS(2435), 1, + ACTIONS(1395), 1, anon_sym_not, - ACTIONS(2439), 1, - anon_sym_PIPE, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_CARET, - ACTIONS(2447), 1, - anon_sym_is, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2243), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(2739), 1, + sym_identifier, + STATE(799), 1, + sym_primary_expression, + STATE(1317), 1, + sym_selector_expression, + STATE(1659), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5173), 1, + sym_expression, + STATE(5982), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 2, + 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, - ACTIONS(2445), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1343), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(2427), 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, - [114097] = 5, - ACTIONS(1385), 1, - anon_sym_LF, - ACTIONS(2451), 1, - anon_sym_PIPE, - STATE(1552), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1383), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [136142] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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, - anon_sym_and, - anon_sym_or, + STATE(3716), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(5154), 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_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [114145] = 3, + 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, + [136257] = 4, + ACTIONS(2578), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2562), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -120874,82 +160716,66 @@ 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, - [114189] = 5, - ACTIONS(1422), 1, - anon_sym_LF, - ACTIONS(2454), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 31, + sym_float, + ACTIONS(2560), 32, + 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_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_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_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, - [114237] = 4, - ACTIONS(1392), 1, - anon_sym_LF, - ACTIONS(2456), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [136328] = 4, + STATE(784), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2914), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -120957,261 +160783,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [114283] = 5, - ACTIONS(1291), 1, - anon_sym_LF, - ACTIONS(2454), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 31, + sym_float, + ACTIONS(2912), 32, + 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_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_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_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, - [114331] = 5, - ACTIONS(1430), 1, - anon_sym_LF, - ACTIONS(2454), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [136399] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [114379] = 6, - ACTIONS(2401), 1, - anon_sym_PLUS, - ACTIONS(2458), 1, - anon_sym_and, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4884), 1, + sym_dotted_name, + STATE(5109), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_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, - [114429] = 6, - ACTIONS(1291), 1, - anon_sym_LF, - ACTIONS(2454), 1, + STATE(3679), 2, + sym_binary_operator, + sym_subscript, + STATE(3699), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(402), 3, anon_sym_PLUS, - ACTIONS(2460), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, + 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(404), 5, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [136514] = 8, + ACTIONS(2977), 1, 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, + ACTIONS(2983), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [114479] = 7, - ACTIONS(2401), 1, - anon_sym_PLUS, - ACTIONS(2458), 1, - anon_sym_and, + STATE(1713), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1297), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2974), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1299), 21, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2980), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [114531] = 5, - ACTIONS(1641), 1, - anon_sym_LF, - ACTIONS(2462), 1, - anon_sym_LBRACE, - STATE(1869), 1, - sym_dictionary, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2863), 23, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -121219,1080 +160952,2280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, + anon_sym_TILDE, anon_sym_QMARK_LBRACK, - [114579] = 7, - ACTIONS(1299), 1, - anon_sym_LF, - ACTIONS(2454), 1, - anon_sym_PLUS, - ACTIONS(2460), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 5, + sym_float, + ACTIONS(2861), 27, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_QMARK_DOT, + 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, - ACTIONS(1297), 25, - anon_sym_COMMA, + anon_sym_SLASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [136593] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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, - 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, - [114631] = 5, - ACTIONS(2464), 1, - anon_sym_PIPE, - STATE(1563), 1, - aux_sym_union_type_repeat1, + STATE(3716), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(5091), 1, + sym_expression, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [136708] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [114679] = 6, - ACTIONS(2401), 1, - anon_sym_PLUS, - ACTIONS(2458), 1, - anon_sym_and, + STATE(2252), 1, + sym_primary_expression, + STATE(2365), 1, + sym_call, + STATE(2402), 1, + sym_selector_expression, + STATE(3473), 1, + sym_expression, + STATE(5145), 1, + sym_dotted_name, + STATE(5953), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1331), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1333), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [136823] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 1, 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, - [114729] = 7, - ACTIONS(2401), 1, - anon_sym_PLUS, - ACTIONS(2458), 1, - anon_sym_and, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4849), 1, + sym_dotted_name, + STATE(5139), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 8, - 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(1299), 18, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [114781] = 10, - ACTIONS(1544), 1, - anon_sym_LF, - ACTIONS(2423), 1, + 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(404), 5, + sym_integer, + 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, + [136938] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, - anon_sym_QMARK_DOT, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 27, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + ACTIONS(754), 1, + anon_sym_QMARK_DOT, + ACTIONS(1385), 1, + sym_identifier, + ACTIONS(1389), 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, - 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, - [114839] = 4, - STATE(1630), 1, - aux_sym_union_type_repeat1, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(5070), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [137053] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [114885] = 4, - ACTIONS(2467), 1, - anon_sym_DASH_GT, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4850), 1, + sym_dotted_name, + STATE(5138), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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(404), 5, + sym_integer, + 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, + [137168] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [114931] = 4, - ACTIONS(1536), 1, - anon_sym_LF, - ACTIONS(5), 2, + STATE(2252), 1, + sym_primary_expression, + STATE(2365), 1, + sym_call, + STATE(2402), 1, + sym_selector_expression, + STATE(3480), 1, + sym_expression, + STATE(5145), 1, + sym_dotted_name, + STATE(5953), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1597), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1534), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [137283] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 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, - 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, - [114977] = 10, - ACTIONS(2401), 1, - anon_sym_PLUS, - ACTIONS(2458), 1, - anon_sym_and, - ACTIONS(2469), 1, - anon_sym_as, - ACTIONS(2471), 1, - anon_sym_if, - ACTIONS(2473), 1, - anon_sym_or, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5137), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1569), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 21, - anon_sym_COMMA, + 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(404), 5, + sym_integer, + 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, + [137398] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115035] = 6, - ACTIONS(2375), 1, - anon_sym_and, - ACTIONS(2379), 1, - anon_sym_PLUS, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5134), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1508), 2, + 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_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, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [137513] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, 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, - [115085] = 3, + ACTIONS(2986), 1, + sym_identifier, + STATE(2292), 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, - ACTIONS(1685), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1687), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115129] = 19, - ACTIONS(1448), 1, - anon_sym_LF, - ACTIONS(2423), 1, + 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, + [137628] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, + 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(2435), 1, + ACTIONS(1385), 1, + sym_identifier, + ACTIONS(1389), 1, anon_sym_not, - ACTIONS(2439), 1, - anon_sym_PIPE, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_CARET, - ACTIONS(2447), 1, - anon_sym_is, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(1822), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(5129), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 2, + 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, - ACTIONS(2445), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1343), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(2427), 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, - [115205] = 4, - ACTIONS(1325), 1, - anon_sym_LF, - STATE(1593), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1323), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [137743] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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, - 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, - [115251] = 4, - STATE(1633), 1, - aux_sym_comparison_operator_repeat1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115297] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1665), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1667), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [137858] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115341] = 4, - STATE(1633), 1, - aux_sym_comparison_operator_repeat1, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5064), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_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, + sym_integer, + 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, + [137973] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115387] = 3, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5062), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1663), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_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, + sym_integer, + 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, + [138088] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4890), 1, + sym_dotted_name, + STATE(5061), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115431] = 4, - STATE(1577), 1, - aux_sym_comparison_operator_repeat1, + 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(404), 5, + sym_integer, + 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, + [138203] = 26, + ACTIONS(412), 1, + sym_identifier, + 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(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(2281), 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, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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(2536), 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, + [138318] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(2986), 1, + sym_identifier, + ACTIONS(2988), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115477] = 4, - STATE(1633), 1, - aux_sym_comparison_operator_repeat1, + STATE(2292), 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, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [138433] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2986), 1, + sym_identifier, + STATE(2280), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115523] = 4, - STATE(1633), 1, - aux_sym_comparison_operator_repeat1, + 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, + [138548] = 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(3474), 1, + sym_expression, + STATE(5145), 1, + sym_dotted_name, + STATE(5953), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [138663] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - anon_sym_and, - anon_sym_or, + STATE(780), 1, + sym_primary_expression, + STATE(1655), 1, + sym_selector_expression, + STATE(1659), 1, + sym_call, + STATE(3284), 1, + sym_expression, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115569] = 21, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2337), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [138778] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(259), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, + 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(2355), 1, - anon_sym_PIPE, - ACTIONS(2357), 1, - anon_sym_AMP, - ACTIONS(2359), 1, - anon_sym_CARET, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2986), 1, + sym_identifier, + STATE(2278), 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, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, + 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, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1381), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, + 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, + [138893] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [115649] = 4, - ACTIONS(1329), 1, - anon_sym_LF, - STATE(1574), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2986), 1, + sym_identifier, + STATE(2277), 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, - ACTIONS(1327), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [139008] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4869), 1, + sym_dotted_name, + STATE(5106), 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_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, - [115695] = 21, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2337), 1, + 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(404), 5, + sym_integer, + 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, + [139123] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, - anon_sym_STAR_STAR, - ACTIONS(2347), 1, + 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_QMARK_DOT, - ACTIONS(2355), 1, - anon_sym_PIPE, - ACTIONS(2357), 1, - anon_sym_AMP, - ACTIONS(2359), 1, - anon_sym_CARET, - ACTIONS(2367), 1, - anon_sym_QMARK_LBRACK, - STATE(1804), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(4899), 1, + sym_dotted_name, + STATE(5060), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2343), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2351), 2, + 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, - ACTIONS(2353), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2361), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1345), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, + 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(404), 5, + sym_integer, + 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, + [139238] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [115775] = 8, - ACTIONS(1550), 1, - anon_sym_LF, - ACTIONS(2454), 1, - anon_sym_PLUS, - ACTIONS(2460), 1, - anon_sym_and, - ACTIONS(2475), 1, - anon_sym_or, - ACTIONS(5), 2, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2687), 1, + sym_identifier, + STATE(2260), 1, + sym_primary_expression, + STATE(2326), 1, + sym_selector_expression, + STATE(2365), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5196), 1, + sym_expression, + STATE(5953), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, + 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, + [139353] = 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, - STATE(1569), 2, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2687), 1, + sym_identifier, + STATE(2255), 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 27, - anon_sym_as, - anon_sym_if, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + 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_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122300,184 +163233,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [115829] = 4, - ACTIONS(1412), 1, - anon_sym_LF, - ACTIONS(2477), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1410), 33, + sym_float, + ACTIONS(2512), 34, + 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_rule, + anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_lambda, 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_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, - [115875] = 21, - ACTIONS(2175), 1, + 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, - ACTIONS(2177), 1, anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2381), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2387), 1, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, - ACTIONS(2389), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2393), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2395), 1, anon_sym_AMP, - ACTIONS(2397), 1, anon_sym_CARET, - ACTIONS(2414), 1, - anon_sym_not, - ACTIONS(2418), 1, - anon_sym_is, - STATE(1296), 1, - sym_argument_list, - STATE(2242), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2385), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2399), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2412), 5, - anon_sym_in, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1448), 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, - [115955] = 4, - ACTIONS(1498), 1, - anon_sym_LF, - STATE(1552), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1496), 33, + 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_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_rule, + anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_lambda, 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_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, - [116001] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [139608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1659), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2896), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -122486,966 +163366,1802 @@ 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, - [116045] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1458), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1460), 29, - sym__newline, + sym_float, + ACTIONS(2894), 33, + 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_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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, - [116091] = 20, - ACTIONS(1359), 1, - anon_sym_not, - ACTIONS(1375), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - ACTIONS(1406), 1, - anon_sym_LF, - ACTIONS(2423), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [139677] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, + 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(2439), 1, - anon_sym_PIPE, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_CARET, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + 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(5008), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1404), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2437), 2, + 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, - ACTIONS(2445), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1351), 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, - [116169] = 5, - ACTIONS(1490), 1, - anon_sym_LF, - ACTIONS(2479), 1, - anon_sym_EQ, - STATE(1588), 1, + 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, + [139792] = 5, + ACTIONS(2992), 1, + anon_sym_PIPE, + STATE(1743), 1, aux_sym_union_type_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2507), 25, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [116217] = 5, - ACTIONS(1483), 1, - anon_sym_LF, - STATE(1593), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2481), 2, + sym_float, + ACTIONS(2505), 33, + anon_sym_import, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1478), 31, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_rule, + anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_lambda, anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_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, - [116265] = 7, - ACTIONS(1291), 1, - anon_sym_LF, - ACTIONS(2454), 1, - anon_sym_PLUS, - ACTIONS(2460), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1297), 23, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [139865] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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, - 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, - [116317] = 3, + ACTIONS(2687), 1, + sym_identifier, + STATE(2248), 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, - ACTIONS(1857), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1859), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [139980] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(420), 1, + anon_sym_lambda, + ACTIONS(422), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [116361] = 7, - ACTIONS(2375), 1, - anon_sym_and, - ACTIONS(2379), 1, - anon_sym_PLUS, + ACTIONS(2687), 1, + sym_identifier, + STATE(2249), 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(1508), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1299), 22, - sym__newline, - anon_sym_COMMA, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [140095] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, 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, - [116413] = 5, - ACTIONS(1473), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2484), 2, + 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_QMARK_DOT, - STATE(1597), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1468), 30, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(1109), 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, - 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, - [116461] = 6, - ACTIONS(2375), 1, - anon_sym_and, - ACTIONS(2379), 1, - anon_sym_PLUS, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4870), 1, + sym_dotted_name, + STATE(5105), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1508), 2, + 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_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, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1331), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1333), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [140210] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, 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, - [116511] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2487), 1, - 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(5103), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + 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(404), 5, + sym_integer, + 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, + [140325] = 26, + ACTIONS(87), 1, + sym_identifier, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_STAR_STAR, + 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_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, - [116559] = 4, + STATE(726), 1, + sym_primary_expression, + STATE(802), 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(1508), 2, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [140440] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, 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, - [116605] = 4, - STATE(2231), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2986), 1, + sym_identifier, + STATE(2268), 1, + sym_primary_expression, + STATE(2352), 1, + sym_selector_expression, + STATE(2407), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5188), 1, + sym_expression, + STATE(6187), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [116651] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1508), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [140555] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - anon_sym_and, - anon_sym_or, + ACTIONS(2687), 1, + sym_identifier, + STATE(2250), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [116697] = 10, - ACTIONS(1398), 1, - anon_sym_LF, - ACTIONS(2423), 1, + 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, + [140670] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(95), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 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(193), 1, + anon_sym_DOT, + ACTIONS(195), 1, anon_sym_QMARK_DOT, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(776), 1, + anon_sym_not, + STATE(780), 1, + sym_primary_expression, + STATE(1655), 1, + sym_selector_expression, + STATE(1659), 1, + sym_call, + STATE(3272), 1, + sym_expression, + STATE(5130), 1, + sym_dotted_name, + STATE(5982), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 27, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [140785] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2687), 1, + sym_identifier, + STATE(2256), 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_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, - [116755] = 10, - ACTIONS(1398), 1, - anon_sym_LF, - ACTIONS(2423), 1, + 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, + [140900] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, + 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_QMARK_DOT, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + 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(4991), 1, + sym_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 27, + 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_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, + sym_integer, + 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, + [141015] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2687), 1, + sym_identifier, + STATE(2257), 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_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, - [116813] = 11, - ACTIONS(1398), 1, - anon_sym_LF, - ACTIONS(2423), 1, + 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, + [141130] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, + 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(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2687), 1, + sym_identifier, + STATE(2258), 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, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 23, + 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, + [141245] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2687), 1, + sym_identifier, + STATE(2271), 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_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, - [116873] = 15, - ACTIONS(1398), 1, - anon_sym_LF, - ACTIONS(2423), 1, + 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, + [141360] = 26, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(416), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(418), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, + 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, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_CARET, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + STATE(2309), 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, - ACTIONS(2437), 2, + 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, - ACTIONS(2445), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 17, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [141475] = 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(834), 1, + sym_identifier, + ACTIONS(840), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [116941] = 14, - ACTIONS(1398), 1, - anon_sym_LF, - ACTIONS(2423), 1, + STATE(2252), 1, + sym_primary_expression, + STATE(2365), 1, + sym_call, + STATE(2402), 1, + sym_selector_expression, + STATE(3495), 1, + sym_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, + [141590] = 4, + STATE(1571), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2473), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2425), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2433), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2443), 1, - anon_sym_CARET, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2437), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2445), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1396), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [117007] = 13, - ACTIONS(1398), 1, - anon_sym_LF, - ACTIONS(2423), 1, - anon_sym_LPAREN, - ACTIONS(2425), 1, - anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, - anon_sym_QMARK_DOT, - ACTIONS(2449), 1, anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2437), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2445), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 19, + sym_float, + ACTIONS(2471), 33, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, + 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_PIPE, - anon_sym_AMP, - anon_sym_CARET, + 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, anon_sym_is, - [117071] = 12, - ACTIONS(1398), 1, - anon_sym_LF, - ACTIONS(2423), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [141661] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(716), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, + 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(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + 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, - ACTIONS(2437), 2, + 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, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1396), 21, + 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, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(2687), 1, + sym_identifier, + ACTIONS(2995), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [117133] = 5, - ACTIONS(2379), 1, - anon_sym_PLUS, + 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(1508), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1422), 28, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123453,83 +165169,65 @@ 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, - [117181] = 5, - ACTIONS(2379), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 28, - sym__newline, + sym_float, + ACTIONS(2483), 34, + 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_EQ, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [117229] = 4, - STATE(1431), 1, - aux_sym_union_type_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [141962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2887), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -123538,1011 +165236,1221 @@ 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, - [117275] = 10, - ACTIONS(1567), 1, - anon_sym_LF, - ACTIONS(2454), 1, - anon_sym_PLUS, - ACTIONS(2460), 1, - anon_sym_and, - ACTIONS(2475), 1, - anon_sym_or, - ACTIONS(2489), 1, + sym_float, + ACTIONS(2885), 33, + anon_sym_import, + anon_sym_DOT, anon_sym_as, - ACTIONS(2491), 1, + anon_sym_assert, anon_sym_if, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(938), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1569), 25, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_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_DASH, + anon_sym_and, + anon_sym_or, 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, - [117333] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1436), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1438), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [142031] = 26, + ACTIONS(416), 1, anon_sym_LPAREN, + ACTIONS(418), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [117379] = 8, - ACTIONS(2401), 1, - anon_sym_PLUS, - ACTIONS(2458), 1, - anon_sym_and, - ACTIONS(2473), 1, - anon_sym_or, + 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, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1550), 23, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, - anon_sym_DASH_GT, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [117433] = 20, - ACTIONS(1359), 1, - anon_sym_not, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(1381), 1, - anon_sym_LF, - ACTIONS(2423), 1, - anon_sym_LPAREN, - ACTIONS(2425), 1, - anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, + 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(2439), 1, - anon_sym_PIPE, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_CARET, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + 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, - ACTIONS(1379), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2437), 2, + 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, - ACTIONS(2445), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1343), 5, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1351), 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, - [117511] = 3, + 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, - ACTIONS(1779), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1777), 31, + 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, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(25), 1, + anon_sym_lambda, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(43), 1, anon_sym_QMARK_DOT, + ACTIONS(45), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [117555] = 20, - ACTIONS(1345), 1, - anon_sym_LF, - ACTIONS(1359), 1, - anon_sym_not, - ACTIONS(1375), 1, - anon_sym_is, - ACTIONS(2423), 1, - anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_STAR_STAR, - ACTIONS(2433), 1, - anon_sym_QMARK_DOT, - ACTIONS(2439), 1, - anon_sym_PIPE, - ACTIONS(2441), 1, - anon_sym_AMP, - ACTIONS(2443), 1, - anon_sym_CARET, - ACTIONS(2449), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(4941), 1, + sym_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1341), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2437), 2, + STATE(4382), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2445), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1343), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1351), 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, - [117633] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1615), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [142491] = 26, + ACTIONS(93), 1, anon_sym_LPAREN, + ACTIONS(95), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - 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, - [117677] = 4, - ACTIONS(2257), 1, - anon_sym_EQ, + STATE(780), 1, + sym_primary_expression, + STATE(1655), 1, + sym_selector_expression, + STATE(1659), 1, + sym_call, + STATE(3275), 1, + sym_expression, + STATE(5130), 1, + sym_dotted_name, + STATE(5982), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [117723] = 4, - ACTIONS(1460), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1458), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [142606] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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, - 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, - [117769] = 5, - STATE(1622), 1, - aux_sym_dotted_name_repeat1, + STATE(3716), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(5054), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1478), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 27, - sym__newline, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [142721] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1365), 1, + sym_identifier, + ACTIONS(1369), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [117817] = 4, - ACTIONS(2314), 1, - anon_sym_EQ, + STATE(3761), 1, + sym_primary_expression, + STATE(3981), 1, + sym_selector_expression, + STATE(4111), 1, + sym_call, + STATE(4828), 1, + sym_expression, + STATE(4995), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [142836] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 1, 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, - [117863] = 4, - ACTIONS(1434), 1, - anon_sym_LF, - STATE(1588), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4880), 1, + sym_dotted_name, + STATE(5081), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1432), 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, + 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_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, - [117909] = 4, - ACTIONS(1438), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, + 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(404), 5, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1436), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [142951] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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(1365), 1, + sym_identifier, + ACTIONS(1369), 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, - 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, - [117955] = 4, - ACTIONS(2496), 1, - anon_sym_DASH_GT, + STATE(3761), 1, + sym_primary_expression, + STATE(3981), 1, + sym_selector_expression, + STATE(4111), 1, + sym_call, + STATE(4873), 1, + sym_expression, + STATE(4995), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1410), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 28, - sym__newline, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [143066] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [118001] = 4, - ACTIONS(1442), 1, - anon_sym_LF, - STATE(1588), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, + 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, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 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, + STATE(4382), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, 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, - [118047] = 4, - ACTIONS(1446), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [143181] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + 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, - 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, - [118093] = 4, - ACTIONS(1446), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 32, + ACTIONS(672), 1, 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, + ACTIONS(674), 1, 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, - [118139] = 4, - STATE(1563), 1, - aux_sym_union_type_repeat1, + STATE(3729), 1, + sym_primary_expression, + STATE(3853), 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, - ACTIONS(1496), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [143296] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [118185] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2498), 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(5027), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [118233] = 6, - ACTIONS(1333), 1, - anon_sym_LF, - ACTIONS(2454), 1, - anon_sym_PLUS, - ACTIONS(2460), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1569), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1331), 30, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [143411] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(21), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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, - 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, - [118283] = 8, - ACTIONS(2503), 1, - anon_sym_not, - ACTIONS(2509), 1, - anon_sym_is, - STATE(1633), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2506), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2500), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1625), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(219), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR_STAR, - anon_sym_for, - 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, - [118337] = 4, - ACTIONS(1337), 1, - anon_sym_LF, - STATE(1588), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(5057), 1, + sym_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1335), 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, + STATE(4382), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, 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, - [118383] = 4, - STATE(1739), 1, - aux_sym_dotted_name_repeat1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [143526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1329), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2883), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -124551,1542 +166459,1845 @@ 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, - [118428] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2512), 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(2514), 22, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [118471] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1755), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1753), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + [143595] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [118514] = 3, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4881), 1, + sym_dotted_name, + STATE(5080), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1831), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_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, + sym_integer, + 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, + [143710] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(1365), 1, + sym_identifier, + ACTIONS(1369), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [118557] = 3, + 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1757), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [143825] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, 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, - [118600] = 3, + 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, - ACTIONS(2518), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2516), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [118643] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1763), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1761), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [118686] = 4, - STATE(2241), 1, - aux_sym_comparison_operator_repeat1, + 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, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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_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, + sym_integer, + 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, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [118731] = 3, - ACTIONS(1725), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3844), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5203), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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_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, + [144170] = 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_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3842), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 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(622), 3, 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, - [118774] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1825), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1827), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [118817] = 4, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [144285] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, 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, - [118862] = 3, - ACTIONS(1605), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1607), 33, + 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, - 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, + ACTIONS(476), 1, anon_sym_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 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, - 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, - [118905] = 4, - STATE(1518), 1, - aux_sym_union_type_repeat1, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5078), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(404), 5, + sym_integer, + 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, + [144400] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, 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, - [118950] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1685), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1687), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [118993] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1767), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1765), 30, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119036] = 3, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3839), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2520), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3485), 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, - [119079] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1771), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1769), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [144515] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119122] = 3, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5077), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2524), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [119165] = 4, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [144630] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, 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, - [119210] = 4, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 29, - sym__newline, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119255] = 3, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3838), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1741), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119298] = 3, - ACTIONS(1709), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1711), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [144745] = 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_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, - [119341] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1739), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1737), 30, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(502), 1, + sym_float, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(674), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119384] = 3, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3836), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119427] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1478), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [144860] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119470] = 4, - STATE(1736), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3828), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [144975] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [119515] = 4, - STATE(1297), 1, - sym_dictionary, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3805), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [145090] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(490), 1, + anon_sym_lambda, + ACTIONS(492), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 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, - [119560] = 3, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3803), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2528), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3485), 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, - [119603] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + 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, + [145205] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, 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, - [119646] = 3, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3800), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1733), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119689] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1841), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1843), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [145320] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + 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, - 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, - [119732] = 3, + ACTIONS(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, + anon_sym_QMARK_DOT, + STATE(3729), 1, + sym_primary_expression, + STATE(3795), 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, - ACTIONS(1731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119775] = 20, - ACTIONS(2532), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [145435] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(2534), 1, + ACTIONS(488), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 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(672), 1, + anon_sym_DOT, + ACTIONS(674), 1, anon_sym_QMARK_DOT, - ACTIONS(2544), 1, + ACTIONS(1365), 1, + sym_identifier, + ACTIONS(1369), 1, anon_sym_not, - ACTIONS(2550), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, - anon_sym_AMP, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_is, - ACTIONS(2562), 1, - anon_sym_QMARK_LBRACK, - STATE(1871), 1, - sym_argument_list, - STATE(1898), 1, - aux_sym_comparison_operator_repeat1, + STATE(3761), 1, + sym_primary_expression, + STATE(3981), 1, + sym_selector_expression, + STATE(4111), 1, + sym_call, + STATE(4891), 1, + sym_expression, + STATE(4995), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2546), 2, + 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_DASH, - ACTIONS(2548), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2556), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2536), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [119852] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + 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, + [145550] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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(1365), 1, + sym_identifier, + ACTIONS(1369), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [119895] = 3, + STATE(3761), 1, + sym_primary_expression, + STATE(3981), 1, + sym_selector_expression, + STATE(4111), 1, + sym_call, + STATE(4866), 1, + sym_expression, + STATE(4995), 1, + sym_dotted_name, + STATE(6002), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2564), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4187), 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, - [119938] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2570), 12, - sym__dedent, - sym_string_start, + 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, + [145665] = 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, + 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(2693), 1, + sym_identifier, + ACTIONS(2999), 1, + anon_sym_not, + STATE(3446), 1, + sym_selector_expression, + STATE(3790), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 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(622), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2568), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3485), 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, - [119981] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [145780] = 26, + ACTIONS(486), 1, anon_sym_LPAREN, + ACTIONS(488), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120024] = 3, - ACTIONS(1837), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(2693), 1, + sym_identifier, + STATE(3446), 1, + sym_selector_expression, + STATE(3790), 1, + sym_primary_expression, + STATE(4111), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5191), 1, + sym_expression, + STATE(6002), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 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, + 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_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, - [120067] = 3, + 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, + [145895] = 4, + STATE(1759), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2477), 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_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -126095,5003 +168306,6855 @@ 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, - [120110] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2574), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, sym_float, - ACTIONS(2572), 22, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120153] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1821), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1823), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + [145966] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120196] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1817), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1819), 30, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(754), 1, anon_sym_QMARK_DOT, + ACTIONS(1385), 1, + sym_identifier, + ACTIONS(1389), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120239] = 3, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(5066), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2578), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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(726), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2576), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4299), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120282] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2582), 12, - sym__dedent, - sym_string_start, + 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, + [146081] = 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, - anon_sym_AT, + 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(5055), 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_TILDE, - sym_float, - ACTIONS(2580), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(548), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120325] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2584), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [146196] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_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, + sym_call, + STATE(3855), 1, + sym_expression, + STATE(5068), 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_TILDE, - sym_float, - ACTIONS(2586), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2838), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120368] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1787), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1785), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [146311] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120411] = 5, - ACTIONS(2588), 1, - anon_sym_PIPE, - STATE(1681), 1, - aux_sym_union_type_repeat1, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5016), 1, + sym_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1383), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 27, - 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, + 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_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120458] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1723), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1721), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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(404), 5, + sym_integer, + 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, + [146426] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, + anon_sym_LBRACE, + 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_QMARK_DOT, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120501] = 3, + STATE(2538), 1, + sym_primary_expression, + STATE(2706), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(4092), 1, + sym_expression, + STATE(5068), 1, + sym_dotted_name, + STATE(5958), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2591), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2593), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2838), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120544] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2518), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [146541] = 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, - anon_sym_AT, + 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, + anon_sym_not, + ACTIONS(2986), 1, + sym_identifier, + STATE(2259), 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_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2516), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120587] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1615), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [146656] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, + anon_sym_LBRACE, + ACTIONS(462), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120630] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1719), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 30, + ACTIONS(464), 1, + anon_sym_DQUOTE, + ACTIONS(470), 1, + sym_float, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(608), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [120673] = 3, + STATE(2471), 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, - ACTIONS(2597), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2595), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2839), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120716] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1747), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1745), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [146771] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, 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, - [120759] = 3, + ACTIONS(2986), 1, + sym_identifier, + STATE(2261), 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, - ACTIONS(2599), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2601), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120802] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2526), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [146886] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_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, + sym_call, + STATE(4055), 1, + sym_expression, + STATE(5068), 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_TILDE, - sym_float, - ACTIONS(2524), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2838), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120845] = 3, - ACTIONS(1663), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1661), 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, - [120888] = 4, - ACTIONS(2383), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1488), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [147001] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(261), 1, + anon_sym_lambda, + ACTIONS(263), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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, 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, - [120933] = 3, + ACTIONS(2986), 1, + sym_identifier, + STATE(2262), 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, - ACTIONS(2603), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2605), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [120976] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2609), 12, - sym__dedent, - sym_string_start, + 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, + [147116] = 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, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(400), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(406), 1, sym_float, - ACTIONS(2607), 22, - anon_sym_import, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(474), 1, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(476), 1, + anon_sym_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - sym_integer, + ACTIONS(2661), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [121019] = 3, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4908), 1, + sym_dotted_name, + STATE(5015), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2611), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2613), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121062] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2615), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [147231] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2697), 1, + sym_identifier, + STATE(2481), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5194), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2617), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121105] = 3, - ACTIONS(1667), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1665), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(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, + [147346] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, + anon_sym_LBRACE, + 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_QMARK_DOT, + ACTIONS(1395), 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, - 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, - [121148] = 3, + ACTIONS(2697), 1, + sym_identifier, + STATE(2484), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2619), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2621), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121191] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2512), 12, - sym__dedent, - sym_string_start, + 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(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, + [147461] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(464), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(470), 1, sym_float, - ACTIONS(2514), 22, - anon_sym_import, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(608), 1, + anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - sym_integer, + ACTIONS(2697), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [121234] = 3, + STATE(2501), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2625), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2623), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121277] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2625), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + 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(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, + [147576] = 26, + 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(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, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2731), 1, + sym_identifier, + STATE(2878), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2623), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121320] = 8, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2629), 1, - anon_sym_or, - ACTIONS(2631), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1550), 23, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [147691] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, + ACTIONS(2731), 1, + sym_identifier, + ACTIONS(3001), 1, 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, - [121373] = 3, + STATE(2878), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2609), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2607), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121416] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2619), 12, - sym__dedent, - sym_string_start, + 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(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, + [147806] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2697), 1, + sym_identifier, + STATE(2502), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2621), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121459] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1719), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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(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, + [147921] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, + anon_sym_LBRACE, + 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_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [121502] = 3, + ACTIONS(2697), 1, + sym_identifier, + STATE(2503), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2597), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2595), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121545] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2570), 12, - sym_string_start, - ts_builtin_sym_end, + 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(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, + [148036] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2697), 1, + sym_identifier, + STATE(2504), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2568), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121588] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2566), 12, - sym_string_start, - ts_builtin_sym_end, + 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(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, + [148151] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2697), 1, + sym_identifier, + STATE(2507), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2564), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121631] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1715), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1713), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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(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, + [148266] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1383), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [121674] = 8, - ACTIONS(2636), 1, - anon_sym_not, - ACTIONS(2642), 1, - anon_sym_is, - STATE(1710), 1, - aux_sym_comparison_operator_repeat1, + STATE(2879), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3005), 1, + sym_selector_expression, + STATE(4247), 1, + sym_expression, + STATE(5067), 1, + sym_dotted_name, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2639), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1627), 3, - anon_sym_STAR, + 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_SLASH, - ACTIONS(2633), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1625), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3176), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, + sym_integer, + 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, + [148381] = 26, + ACTIONS(678), 1, + sym_identifier, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, + 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_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, - [121727] = 3, + STATE(2766), 1, + sym_primary_expression, + STATE(2821), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1725), 30, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [121770] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1809), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1811), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [148496] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, + anon_sym_LBRACE, + 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_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [121813] = 3, + ACTIONS(2697), 1, + sym_identifier, + STATE(2508), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2647), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2645), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121856] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2530), 12, - sym_string_start, - ts_builtin_sym_end, + 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(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, + [148611] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2697), 1, + sym_identifier, + STATE(2509), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2528), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121899] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2651), 12, - sym__dedent, - sym_string_start, + 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(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, + [148726] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, anon_sym_LBRACE, - anon_sym_AT, + 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, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2731), 1, + sym_identifier, + STATE(2868), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2649), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [121942] = 7, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2631), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1740), 2, + 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1299), 19, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [148841] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, + ACTIONS(1395), 1, 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, - [121993] = 7, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2631), 1, - anon_sym_PLUS, + ACTIONS(2731), 1, + sym_identifier, + STATE(2854), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1299), 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, - [122044] = 10, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2629), 1, - anon_sym_or, - ACTIONS(2631), 1, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 3, anon_sym_PLUS, - ACTIONS(2653), 1, - anon_sym_as, - ACTIONS(2655), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1569), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 21, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [148956] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(684), 1, 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, - [122101] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1669), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1671), 29, - sym__newline, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, + anon_sym_DQUOTE, + ACTIONS(698), 1, + sym_float, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(736), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(738), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122144] = 3, + ACTIONS(2731), 1, + sym_identifier, + STATE(2897), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1675), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122187] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1410), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 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(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, + [149071] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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, + ACTIONS(1395), 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, - [122230] = 3, + ACTIONS(2731), 1, + sym_identifier, + STATE(2777), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2615), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2617), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [122273] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2611), 12, - sym__dedent, - sym_string_start, + 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(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, + [149186] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, anon_sym_LBRACE, - anon_sym_AT, + 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, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2731), 1, + sym_identifier, + STATE(2781), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2613), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [122316] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1677), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1679), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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(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, + [149301] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122359] = 3, + ACTIONS(2731), 1, + sym_identifier, + STATE(2782), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1799), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122402] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1683), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 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(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, + [149416] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122445] = 3, + ACTIONS(2731), 1, + sym_identifier, + STATE(2790), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2520), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [122488] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1793), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1795), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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(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, + [149531] = 26, + ACTIONS(448), 1, + sym_identifier, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, + anon_sym_LBRACE, + ACTIONS(462), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122531] = 3, + 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_QMARK_DOT, + STATE(2528), 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, - ACTIONS(2574), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2572), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2839), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [122574] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1791), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [149646] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, + anon_sym_LBRACE, + 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_QMARK_DOT, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122617] = 4, - STATE(1710), 1, - aux_sym_comparison_operator_repeat1, + STATE(2538), 1, + sym_primary_expression, + STATE(2706), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(4084), 1, + sym_expression, + STATE(5068), 1, + sym_dotted_name, + STATE(5958), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(2838), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, + sym_integer, + 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, + [149761] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, 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, - [122662] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(464), 1, + anon_sym_DQUOTE, + ACTIONS(470), 1, + sym_float, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(606), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(608), 1, anon_sym_QMARK_DOT, + ACTIONS(2697), 1, + sym_identifier, + ACTIONS(3003), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122705] = 3, + STATE(2518), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2603), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2605), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [122748] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2659), 12, - sym__dedent, - sym_string_start, + 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(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, + [149876] = 26, + ACTIONS(454), 1, anon_sym_LPAREN, + ACTIONS(456), 1, anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_lambda, + ACTIONS(460), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_QMARK_DOT, + ACTIONS(1395), 1, + anon_sym_not, + ACTIONS(2697), 1, + sym_identifier, + STATE(2518), 1, + sym_primary_expression, + STATE(2677), 1, + sym_selector_expression, + STATE(2707), 1, + sym_call, + STATE(5113), 1, + sym_dotted_name, + STATE(5212), 1, + sym_expression, + STATE(5958), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2826), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(466), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2657), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2927), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(468), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [122791] = 5, - ACTIONS(2661), 1, - anon_sym_in, - ACTIONS(2663), 1, + 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(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, + [149991] = 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, + 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(4893), 1, + sym_dotted_name, + STATE(5050), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, + 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122838] = 4, - STATE(1710), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(404), 5, + sym_integer, + 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, + [150106] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(538), 1, + anon_sym_lambda, + ACTIONS(540), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [122883] = 3, + STATE(3716), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(5074), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1691), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122926] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1711), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1709), 30, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [150221] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1377), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122969] = 4, - STATE(1848), 1, - aux_sym_dotted_name_repeat1, + STATE(2840), 1, + sym_primary_expression, + STATE(3027), 1, + sym_call, + STATE(3028), 1, + sym_selector_expression, + STATE(4259), 1, + sym_expression, + STATE(5014), 1, + sym_dotted_name, + STATE(5965), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1323), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1325), 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, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123014] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1839), 2, + 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(648), 5, + sym_integer, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1534), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1536), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [150336] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(392), 1, 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, - [123059] = 4, - ACTIONS(2403), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1488), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 29, - sym__newline, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(476), 1, anon_sym_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123104] = 4, - STATE(1630), 1, - aux_sym_union_type_repeat1, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4895), 1, + sym_dotted_name, + STATE(5049), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123149] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1343), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1448), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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(404), 5, + sym_integer, + 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, + [150451] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1377), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123192] = 4, - STATE(2826), 1, - aux_sym_quant_target_repeat1, + STATE(2840), 1, + sym_primary_expression, + STATE(3027), 1, + sym_call, + STATE(3028), 1, + sym_selector_expression, + STATE(4397), 1, + sym_expression, + STATE(5014), 1, + sym_dotted_name, + STATE(5965), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123237] = 3, - ACTIONS(1859), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1857), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(648), 5, + sym_integer, + 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, + [150566] = 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, - 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, - [123280] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1707), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1705), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123323] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(267), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym_float, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(438), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(440), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123366] = 8, - ACTIONS(2668), 1, - anon_sym_not, - ACTIONS(2674), 1, - anon_sym_is, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2671), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2665), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1625), 22, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_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, - [123419] = 3, + ACTIONS(2986), 1, + sym_identifier, + STATE(2263), 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, - ACTIONS(2578), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2576), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [123462] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2582), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [150681] = 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, - anon_sym_AT, + 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_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(5018), 1, + sym_dotted_name, + STATE(5045), 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_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2580), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [123505] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2647), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [150796] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_AT, + 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_QMARK_DOT, + STATE(2772), 1, + sym_expression, + STATE(2793), 1, + sym_primary_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_TILDE, - sym_float, - ACTIONS(2645), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3169), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [123548] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2651), 12, - sym_string_start, - ts_builtin_sym_end, + 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, + [150911] = 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, - anon_sym_AT, + 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, + anon_sym_not, + ACTIONS(2986), 1, + sym_identifier, + STATE(2318), 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_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2649), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, + 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_rule, - anon_sym_check, - anon_sym_not, + STATE(2644), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(271), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [123591] = 4, - STATE(1653), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [151026] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, 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, - [123636] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1659), 29, - sym__newline, + 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, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(742), 1, anon_sym_QMARK_DOT, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1377), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123679] = 4, - ACTIONS(2677), 1, - anon_sym_DASH_GT, + STATE(2840), 1, + sym_primary_expression, + STATE(3027), 1, + sym_call, + STATE(3028), 1, + sym_selector_expression, + STATE(4388), 1, + sym_expression, + STATE(5014), 1, + sym_dotted_name, + STATE(5965), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1410), 6, - anon_sym_EQ, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(648), 5, + sym_integer, + 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, + [151141] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [123724] = 3, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(5125), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2599), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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(726), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(2601), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(4299), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(728), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [123767] = 4, - STATE(1681), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1496), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [151256] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123812] = 3, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5043), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2591), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2593), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3701), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(404), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [123855] = 5, - ACTIONS(2661), 1, - anon_sym_in, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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, + [151371] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR_STAR, - anon_sym_for, - 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, - [123902] = 4, - ACTIONS(2681), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1390), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 27, + 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, - 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, + ACTIONS(742), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 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, - [123947] = 4, + ACTIONS(2705), 1, + sym_identifier, + STATE(2860), 1, + sym_primary_expression, + STATE(3027), 1, + sym_call, + STATE(3073), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5189), 1, + sym_expression, + STATE(5965), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1436), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1438), 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, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123992] = 3, - ACTIONS(1659), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(648), 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(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, + [151486] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 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, - 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, - [124035] = 4, - STATE(1757), 1, - aux_sym_union_type_repeat1, + ACTIONS(2705), 1, + sym_identifier, + STATE(2768), 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, - ACTIONS(1383), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1385), 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, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124080] = 7, - ACTIONS(1625), 1, - anon_sym_LF, - ACTIONS(2686), 1, - anon_sym_not, - ACTIONS(2689), 1, - anon_sym_is, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2683), 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(1627), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(648), 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(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, + [151601] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK_LBRACK, - [124131] = 4, - STATE(1757), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1335), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 28, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, + anon_sym_DQUOTE, + ACTIONS(698), 1, + sym_float, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(736), 1, 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, + ACTIONS(738), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124176] = 4, - ACTIONS(2692), 1, - anon_sym_DASH_GT, + ACTIONS(2731), 1, + sym_identifier, + STATE(2801), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5184), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1335), 6, - anon_sym_EQ, - anon_sym_STAR, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 3, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 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(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, + [151716] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, + ACTIONS(1395), 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, - [124221] = 4, - STATE(1757), 1, - aux_sym_union_type_repeat1, + ACTIONS(2731), 1, + sym_identifier, + STATE(2802), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3094), 1, + sym_selector_expression, + STATE(5113), 1, + sym_dotted_name, + STATE(5180), 1, + sym_expression, + STATE(5976), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1442), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + STATE(3223), 2, + sym_binary_operator, + sym_subscript, + STATE(3560), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(694), 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(3230), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 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(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, + [151831] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124266] = 3, + ACTIONS(2705), 1, + sym_identifier, + STATE(2786), 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, - ACTIONS(2659), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2657), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3220), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [124309] = 4, - ACTIONS(1621), 1, - anon_sym_LF, - STATE(1588), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1623), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [151946] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, 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, - [124354] = 4, - ACTIONS(1490), 1, - anon_sym_LF, - ACTIONS(2479), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1488), 32, + 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, - 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, + ACTIONS(742), 1, anon_sym_QMARK_DOT, + ACTIONS(1395), 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, - 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, - [124399] = 3, + ACTIONS(2705), 1, + sym_identifier, + STATE(2788), 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, - ACTIONS(2694), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2696), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3220), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [124442] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1390), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [152061] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 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, - [124485] = 4, - STATE(1757), 1, - aux_sym_union_type_repeat1, + ACTIONS(2705), 1, + sym_identifier, + STATE(2789), 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, - ACTIONS(1432), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1434), 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, + 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124530] = 5, - ACTIONS(2631), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1740), 2, + 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(648), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1430), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [152176] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124577] = 3, + ACTIONS(2705), 1, + sym_identifier, + STATE(2792), 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, - ACTIONS(1833), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1835), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_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(648), 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(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, + [152291] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124620] = 4, + ACTIONS(2705), 1, + sym_identifier, + STATE(2813), 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(1740), 2, + 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_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(648), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [152406] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124665] = 3, + ACTIONS(2705), 1, + sym_identifier, + STATE(2816), 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, - ACTIONS(2584), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + 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_TILDE, - sym_float, - ACTIONS(2586), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - 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_rule, - anon_sym_check, - anon_sym_not, + STATE(3220), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(648), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [124708] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1857), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1859), 30, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + [152521] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124751] = 5, - ACTIONS(2631), 1, - anon_sym_PLUS, + ACTIONS(2705), 1, + sym_identifier, + STATE(2827), 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(1740), 2, + 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_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(648), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [152636] = 26, + ACTIONS(628), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, + anon_sym_LBRACE, + ACTIONS(642), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124798] = 3, - ACTIONS(1483), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1478), 33, + ACTIONS(644), 1, + anon_sym_DQUOTE, + ACTIONS(650), 1, + sym_float, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(740), 1, 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, + ACTIONS(742), 1, 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, - [124841] = 3, + STATE(2793), 1, + sym_primary_expression, + STATE(2948), 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, - ACTIONS(1839), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1837), 30, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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_DASH, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [152751] = 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, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - 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, - [124884] = 4, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5012), 1, + sym_dotted_name, + STATE(5037), 1, + sym_expression, + STATE(6132), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1740), 2, + 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, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1446), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [152866] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1371), 1, + sym_identifier, + ACTIONS(1377), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124929] = 4, - STATE(1710), 1, - aux_sym_comparison_operator_repeat1, + STATE(2840), 1, + sym_primary_expression, + STATE(3027), 1, + sym_call, + STATE(3028), 1, + sym_selector_expression, + STATE(4338), 1, + sym_expression, + STATE(5014), 1, + sym_dotted_name, + STATE(5965), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_STAR, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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(648), 5, + sym_integer, + 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, + [152981] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(640), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(2705), 1, + sym_identifier, + ACTIONS(3005), 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, - [124974] = 6, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2631), 1, - anon_sym_PLUS, + STATE(2930), 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(1740), 2, + 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_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(648), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1331), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1333), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [153096] = 26, + ACTIONS(634), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(636), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1395), 1, 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, - [125023] = 5, - ACTIONS(2631), 1, - anon_sym_PLUS, + ACTIONS(2705), 1, + sym_identifier, + STATE(2930), 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(1740), 2, + 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_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(648), 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(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1422), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [153211] = 26, + ACTIONS(534), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(536), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [125070] = 4, - STATE(2245), 1, - aux_sym_comparison_operator_repeat1, + STATE(3716), 1, + sym_primary_expression, + STATE(3719), 1, + sym_call, + STATE(3727), 1, + sym_selector_expression, + STATE(5032), 1, + sym_expression, + STATE(5075), 1, + sym_dotted_name, + STATE(6118), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [153326] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(394), 1, + anon_sym_lambda, + ACTIONS(396), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 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, - [125115] = 3, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4901), 1, + sym_dotted_name, + STATE(5028), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1863), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_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, + sym_integer, + 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, + [153441] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1383), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [125158] = 3, - ACTIONS(1617), 1, - anon_sym_LF, - ACTIONS(5), 2, + STATE(2879), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3005), 1, + sym_selector_expression, + STATE(4292), 1, + sym_expression, + STATE(5067), 1, + sym_dotted_name, + STATE(5976), 1, + sym_quant_op, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3176), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, + sym_integer, + 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, + [153556] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, + ACTIONS(392), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + 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_QMARK_DOT, + ACTIONS(1109), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2661), 1, + sym_identifier, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(4903), 1, + sym_dotted_name, + STATE(5025), 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_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, - [125201] = 20, - ACTIONS(2532), 1, + 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(404), 5, + sym_integer, + 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, + [153671] = 26, + ACTIONS(390), 1, anon_sym_LPAREN, - ACTIONS(2534), 1, + ACTIONS(392), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, + 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_QMARK_DOT, - ACTIONS(2544), 1, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(1109), 1, anon_sym_not, - ACTIONS(2550), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, - anon_sym_AMP, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2560), 1, - anon_sym_is, - ACTIONS(2562), 1, - anon_sym_QMARK_LBRACK, - STATE(1871), 1, - sym_argument_list, - STATE(2248), 1, - aux_sym_comparison_operator_repeat1, + STATE(3460), 1, + sym_call, + STATE(3464), 1, + sym_primary_expression, + STATE(3508), 1, + sym_selector_expression, + STATE(5018), 1, + sym_dotted_name, + STATE(5024), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2546), 2, + 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, - ACTIONS(2548), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2556), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2536), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 7, + 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(404), 5, + sym_integer, + 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, + [153786] = 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, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [125278] = 3, + ACTIONS(476), 1, + 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(5018), 1, + sym_dotted_name, + STATE(5020), 1, + sym_expression, + STATE(6057), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1697), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + 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_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, + sym_integer, + 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, + [153901] = 26, + ACTIONS(714), 1, anon_sym_LPAREN, + ACTIONS(716), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + 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, - anon_sym_and, - anon_sym_or, + STATE(4056), 1, + sym_primary_expression, + STATE(4082), 1, + sym_call, + STATE(4214), 1, + sym_selector_expression, + STATE(5002), 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [125321] = 5, - ACTIONS(2698), 1, - anon_sym_LBRACE, - STATE(2009), 1, + 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, + [154016] = 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, + 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(2822), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [154131] = 26, + ACTIONS(257), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(259), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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(842), 1, + sym_identifier, + ACTIONS(848), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(122), 1, + sym_expression, + STATE(2399), 1, + sym_primary_expression, + STATE(2407), 1, + sym_call, + STATE(2505), 1, + sym_selector_expression, + STATE(5000), 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(380), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [125368] = 4, + anon_sym_TILDE, + ACTIONS(29), 4, + 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, + sym_integer, + 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, + [154246] = 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, + 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, + anon_sym_LBRACK, + STATE(3862), 1, + sym_primary_expression, + STATE(3874), 1, + sym_call, + STATE(4139), 1, + sym_selector_expression, + STATE(4966), 1, + sym_expression, + STATE(5116), 1, + sym_dotted_name, + STATE(6288), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1740), 2, + STATE(4382), 2, + sym_in_operation, + sym_not_in_operation, + STATE(4390), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 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(4378), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(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, - aux_sym_selector_expression_repeat1, - ACTIONS(1458), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1460), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [154361] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(684), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1383), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(2879), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3005), 1, + sym_selector_expression, + STATE(4398), 1, + sym_expression, + STATE(5067), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [125413] = 21, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2532), 1, + anon_sym_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3176), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, + sym_integer, + 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, + [154476] = 26, + ACTIONS(682), 1, anon_sym_LPAREN, - ACTIONS(2534), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, + ACTIONS(686), 1, + anon_sym_lambda, + ACTIONS(688), 1, + anon_sym_LBRACE, + 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, - ACTIONS(2550), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, - anon_sym_AMP, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2562), 1, - anon_sym_QMARK_LBRACK, - STATE(1871), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1379), 1, + sym_identifier, + ACTIONS(1383), 1, + anon_sym_not, + STATE(2879), 1, + sym_primary_expression, + STATE(2993), 1, + sym_call, + STATE(3005), 1, + sym_selector_expression, + STATE(4364), 1, + sym_expression, + STATE(5067), 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_TILDE, + ACTIONS(29), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(3176), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(696), 5, + sym_integer, + 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, + [154591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1345), 2, + ACTIONS(2896), 26, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2546), 2, + anon_sym_LPAREN, + anon_sym_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(2548), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2556), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1448), 5, + 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, - [125492] = 21, - ACTIONS(2102), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [154659] = 22, + ACTIONS(2495), 1, anon_sym_not, - ACTIONS(2104), 1, + ACTIONS(2499), 1, anon_sym_is, - ACTIONS(2532), 1, + ACTIONS(2633), 1, anon_sym_LPAREN, - ACTIONS(2534), 1, + ACTIONS(2635), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, + ACTIONS(2639), 1, anon_sym_QMARK_DOT, - ACTIONS(2550), 1, + ACTIONS(2641), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3009), 1, + anon_sym_STAR_STAR, + ACTIONS(3015), 1, anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(3017), 1, anon_sym_AMP, - ACTIONS(2554), 1, + ACTIONS(3019), 1, anon_sym_CARET, - ACTIONS(2562), 1, - anon_sym_QMARK_LBRACK, - STATE(1871), 1, + STATE(2195), 1, sym_argument_list, - STATE(2266), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2538), 2, + ACTIONS(3007), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2546), 2, + ACTIONS(3011), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2548), 2, + ACTIONS(3013), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2556), 2, + ACTIONS(3021), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1373), 5, + 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(1448), 5, + ACTIONS(2365), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - [125571] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2702), 12, - sym__dedent, + ACTIONS(2491), 8, sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2700), 22, + ACTIONS(2489), 19, anon_sym_import, - anon_sym_DOT, anon_sym_assert, - anon_sym_if, + anon_sym_rule, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -131101,41 +175164,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, - anon_sym_not, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [125614] = 3, + [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, - ACTIONS(1803), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1801), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -131144,38 +175208,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_is, anon_sym_QMARK_LBRACK, - [125657] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1807), 4, + 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, - ACTIONS(1805), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -131184,114 +175271,176 @@ 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, - [125700] = 3, + 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(2706), 12, + 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, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2704), 22, + 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_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [125743] = 3, + [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(1815), 4, + ACTIONS(3007), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1813), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(3011), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3013), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [125786] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2694), 12, - sym__dedent, + ACTIONS(2367), 8, sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2696), 22, + 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, @@ -131301,41 +175450,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, - anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [125829] = 4, - ACTIONS(1641), 1, - anon_sym_LF, - STATE(1821), 1, + [155093] = 4, + STATE(4733), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(221), 26, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -131343,40 +175485,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [125874] = 4, - ACTIONS(1641), 1, - anon_sym_LF, - STATE(2267), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 32, + sym_float, + ACTIONS(217), 32, + 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_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_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_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, + 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, @@ -131384,48 +175550,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [125919] = 10, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2534), 1, - anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, - anon_sym_QMARK_DOT, - ACTIONS(2562), 1, anon_sym_QMARK_LBRACK, - STATE(1871), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1544), 23, + sym_float, + ACTIONS(3041), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, + 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, + [155231] = 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -131434,37 +175615,63 @@ 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, - [125976] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1779), 4, + 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, - ACTIONS(1777), 30, + anon_sym_is, + 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, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, 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, @@ -131473,40 +175680,63 @@ 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, - [126019] = 5, - ACTIONS(2133), 1, + 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(2135), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 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, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -131515,40 +175745,63 @@ 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, - [126066] = 4, - STATE(1710), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 5, + 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_DASH, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, 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_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -131556,79 +175809,65 @@ 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, - [126111] = 3, - ACTIONS(1613), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1615), 33, + sym_float, + ACTIONS(2928), 33, + 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_rule, + anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_lambda, 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_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, - [126154] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [155503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1335), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1337), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3055), 27, + sym__newline, + sym__dedent, + sym_string_start, 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_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, @@ -131636,178 +175875,194 @@ 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, - [126197] = 13, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2534), 1, - anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, - anon_sym_QMARK_DOT, - ACTIONS(2562), 1, anon_sym_QMARK_LBRACK, - STATE(1871), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2548), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 19, + sym_float, + ACTIONS(3053), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, + 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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - [126260] = 14, - ACTIONS(2532), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [155571] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2534), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(2542), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2562), 1, - anon_sym_QMARK_LBRACK, - STATE(1871), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2546), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2548), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2556), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1398), 17, + anon_sym_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_COMMA, - anon_sym_RPAREN, + 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_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_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - [126325] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [155639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2708), 12, + ACTIONS(3063), 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, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2710), 22, + 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, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [126368] = 3, - ACTIONS(1777), 1, - anon_sym_LF, - ACTIONS(5), 2, + [155707] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3067), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_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, @@ -131815,40 +176070,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [126411] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1799), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -131857,38 +176135,63 @@ 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, - [126454] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1865), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -131897,38 +176200,63 @@ 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, - [126497] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1869), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -131937,224 +176265,372 @@ 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, - [126540] = 15, - ACTIONS(2532), 1, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [155979] = 13, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2534), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2562), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(1871), 1, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + STATE(2116), 1, sym_argument_list, - STATE(2266), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 2, + ACTIONS(3081), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2546), 2, + ACTIONS(3085), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2548), 2, + ACTIONS(3087), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2556), 2, + 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, - ACTIONS(1398), 16, + 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_COMMA, - anon_sym_RPAREN, + 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_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - [126607] = 16, - ACTIONS(2532), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156067] = 14, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2534), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2552), 1, - anon_sym_AMP, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2562), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(1871), 1, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + STATE(2116), 1, sym_argument_list, - STATE(2266), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 2, + ACTIONS(3081), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2546), 2, + ACTIONS(3085), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2548), 2, + ACTIONS(3087), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2556), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1398), 15, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2520), 15, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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, - anon_sym_is, - [126676] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1873), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1875), 30, + sym_float, + ACTIONS(2518), 29, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_rule, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + 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, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156157] = 15, + 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, + 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(2520), 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [126719] = 4, - ACTIONS(1611), 1, - anon_sym_LF, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 32, + sym_float, + ACTIONS(2518), 29, + 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_rule, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + 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, + [156249] = 16, + 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, + 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, - anon_sym_SLASH, + ACTIONS(3087), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + 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, + anon_sym_all, + anon_sym_any, + 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, - anon_sym_QMARK_LBRACK, - [126764] = 4, - ACTIONS(1611), 1, - anon_sym_LF, - STATE(1764), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156343] = 4, + STATE(2031), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(221), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -132162,40 +176638,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [126809] = 4, - ACTIONS(1611), 1, - anon_sym_LF, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 32, + sym_float, + ACTIONS(217), 31, + 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_rule, + anon_sym_lambda, 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132203,40 +176702,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [126854] = 4, - ACTIONS(1611), 1, - anon_sym_LF, - STATE(1764), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156481] = 4, + STATE(4733), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(221), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -132244,79 +176768,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [126899] = 6, - ACTIONS(2627), 1, - anon_sym_and, - ACTIONS(2631), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, + 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, - ACTIONS(1291), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156551] = 21, + ACTIONS(2707), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, anon_sym_not, - anon_sym_or, + 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(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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [126948] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2706), 12, + ACTIONS(2367), 8, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2704), 22, + 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, @@ -132326,41 +176882,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, - anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [126991] = 3, + [156655] = 4, + STATE(2021), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1879), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(221), 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_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -132369,167 +176917,286 @@ 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, - [127034] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1855), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1853), 30, + sym_float, + ACTIONS(217), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_rule, + anon_sym_else, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156725] = 12, + 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, + 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(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, + 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, - anon_sym_QMARK_LBRACK, - [127077] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [156811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2702), 12, + 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(2700), 22, + 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, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [127120] = 12, - ACTIONS(2532), 1, + [156879] = 22, + ACTIONS(2495), 1, + anon_sym_not, + ACTIONS(2499), 1, + anon_sym_is, + ACTIONS(2633), 1, anon_sym_LPAREN, - ACTIONS(2534), 1, + ACTIONS(2635), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, + ACTIONS(2639), 1, anon_sym_QMARK_DOT, - ACTIONS(2562), 1, + ACTIONS(2641), 1, anon_sym_QMARK_LBRACK, - STATE(1871), 1, + 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(2266), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 2, + ACTIONS(3007), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(3011), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + 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, - anon_sym_is, - [127181] = 3, + ACTIONS(2365), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2524), 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(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, + [156985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(3113), 27, sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -132538,39 +177205,75 @@ 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, - [127224] = 4, - STATE(2267), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, - sym__newline, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157053] = 10, + ACTIONS(209), 1, anon_sym_DOT, - anon_sym_as, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 24, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + 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_AT, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -132579,38 +177282,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_is, anon_sym_QMARK_LBRACK, - [127269] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1661), 5, - anon_sym_EQ, + 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, - ACTIONS(1663), 29, + anon_sym_is, + 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, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -132619,46 +177342,63 @@ 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, - [127312] = 10, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2534), 1, - anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, - anon_sym_QMARK_DOT, - ACTIONS(2562), 1, anon_sym_QMARK_LBRACK, - STATE(1871), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 23, + sym_float, + ACTIONS(3127), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, + 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, + [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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -132667,85 +177407,137 @@ 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - [127369] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2708), 12, + ACTIONS(3135), 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(2710), 22, + 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, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, - anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [127412] = 10, - ACTIONS(2532), 1, + [157339] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - ACTIONS(2534), 1, + ACTIONS(2709), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, + ACTIONS(2715), 1, anon_sym_QMARK_DOT, - ACTIONS(2562), 1, + ACTIONS(2729), 1, anon_sym_QMARK_LBRACK, - STATE(1871), 1, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + STATE(2116), 1, sym_argument_list, - STATE(2266), 1, + STATE(4730), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2520), 21, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -132754,37 +177546,62 @@ 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, - [127469] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1751), 4, + 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, - ACTIONS(1749), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + 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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 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_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, + 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, @@ -132793,77 +177610,64 @@ 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, - [127512] = 3, - ACTIONS(1671), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1669), 33, + sym_float, + ACTIONS(217), 32, + 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_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_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_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, - [127555] = 3, - ACTIONS(1675), 1, - anon_sym_LF, - ACTIONS(5), 2, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157491] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3137), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -132871,82 +177675,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [127598] = 3, - ACTIONS(1679), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1677), 33, + sym_float, + ACTIONS(3139), 32, + 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_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_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_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, - [127641] = 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2712), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1839), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1468), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1473), 26, - anon_sym_as, - anon_sym_if, + ACTIONS(3141), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -132955,39 +177740,81 @@ 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, - [127688] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1695), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1693), 30, - anon_sym_DOT, - anon_sym_as, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157627] = 9, + ACTIONS(3023), 1, anon_sym_if, + ACTIONS(3025), 1, + anon_sym_and, + 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(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, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2469), 13, + anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132999,33 +177826,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [127731] = 3, - ACTIONS(1683), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 33, + ACTIONS(2449), 23, + 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_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, + [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, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -133033,181 +177877,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [127774] = 4, - ACTIONS(1641), 1, - anon_sym_LF, - STATE(2237), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 32, + sym_float, + ACTIONS(2560), 32, + 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_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_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_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, - [127819] = 21, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2534), 1, - anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_STAR_STAR, - ACTIONS(2542), 1, - anon_sym_QMARK_DOT, - ACTIONS(2550), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, - anon_sym_AMP, - ACTIONS(2554), 1, - anon_sym_CARET, - ACTIONS(2562), 1, - anon_sym_QMARK_LBRACK, - STATE(1871), 1, - sym_argument_list, - STATE(2266), 1, + 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(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1406), 2, + ACTIONS(221), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2538), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2546), 2, + anon_sym_LPAREN, + anon_sym_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(2548), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2556), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1448), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [127898] = 3, - ACTIONS(1687), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1685), 33, + 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_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + 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_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_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, - [127941] = 5, - ACTIONS(2715), 1, - anon_sym_EQ, - STATE(1757), 1, - aux_sym_union_type_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1490), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3145), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -133216,79 +178008,63 @@ 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, - [127988] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1851), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1849), 30, + sym_float, + ACTIONS(3147), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_rule, + anon_sym_else, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [128031] = 4, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(3149), 27, sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -133297,40 +178073,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [128076] = 5, - STATE(1848), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2717), 2, + sym_float, + ACTIONS(3151), 32, + anon_sym_import, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1478), 5, - anon_sym_EQ, + 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, - ACTIONS(1483), 26, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [157983] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3083), 1, anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + 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, @@ -133339,76 +178147,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_is, - anon_sym_QMARK_LBRACK, - [128123] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1841), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1843), 29, - sym__newline, + sym_float, + ACTIONS(2518), 31, + anon_sym_import, 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_rule, + anon_sym_lambda, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_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_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [128165] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1799), 29, + ACTIONS(3153), 27, sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -133417,82 +178210,63 @@ 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, - [128207] = 8, - ACTIONS(2723), 1, - anon_sym_not, - ACTIONS(2729), 1, - anon_sym_is, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2726), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2720), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1625), 21, + sym_float, + ACTIONS(3155), 32, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_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_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, - [128259] = 4, - STATE(1757), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1623), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158133] = 3, + 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_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -133501,77 +178275,64 @@ 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, - [128303] = 3, - ACTIONS(1641), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1643), 32, + sym_float, + ACTIONS(217), 32, + 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_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_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_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, - [128345] = 5, - ACTIONS(1641), 1, - anon_sym_LF, - ACTIONS(1773), 1, - anon_sym_in, - ACTIONS(1775), 1, - anon_sym_not, - ACTIONS(5), 2, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158201] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2367), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, + 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, @@ -133579,40 +178340,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [128391] = 4, - ACTIONS(2715), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1488), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -133621,41 +178405,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [128435] = 7, - ACTIONS(2209), 1, - anon_sym_and, - ACTIONS(2732), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1291), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158337] = 10, + ACTIONS(2707), 1, anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1299), 18, + ACTIONS(2709), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2715), 1, + anon_sym_QMARK_DOT, + ACTIONS(2729), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(3083), 1, anon_sym_STAR_STAR, - anon_sym_not, + 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, @@ -133664,76 +178479,60 @@ 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, - [128485] = 3, - ACTIONS(1791), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 32, + sym_float, + ACTIONS(2574), 31, + 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_rule, + anon_sym_lambda, 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_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, - [128527] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1853), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2936), 26, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -133742,75 +178541,67 @@ 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, - [128569] = 3, - ACTIONS(1875), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1873), 32, + sym_float, + ACTIONS(2934), 33, + 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_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_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_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, - [128611] = 3, - ACTIONS(1795), 1, - anon_sym_LF, - ACTIONS(5), 2, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158487] = 4, + ACTIONS(2851), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2562), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -133818,77 +178609,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [128653] = 3, - ACTIONS(1448), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1343), 32, + sym_float, + ACTIONS(2560), 31, + 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_rule, + anon_sym_lambda, 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_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, - [128695] = 3, - ACTIONS(1641), 1, - anon_sym_LF, - ACTIONS(5), 2, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158557] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3161), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_LBRACE, 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, @@ -133896,78 +178673,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [128737] = 3, - ACTIONS(1799), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 32, + sym_float, + ACTIONS(3163), 32, + 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_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_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_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, - [128779] = 3, + 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(1857), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1859), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2859), 27, + sym__newline, + sym__dedent, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, 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, @@ -133976,36 +178740,65 @@ 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, - [128821] = 3, - ACTIONS(1811), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1809), 32, + sym_float, + ACTIONS(2857), 31, + 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_rule, + anon_sym_lambda, 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134013,39 +178806,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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [128863] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1615), 5, - anon_sym_EQ, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134054,37 +178869,64 @@ 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, - [128905] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1877), 4, + 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, - ACTIONS(1879), 29, + anon_sym_is, + 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, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134093,37 +178935,62 @@ 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, - [128947] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1873), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1875), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134132,36 +178999,66 @@ 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, - [128989] = 3, - ACTIONS(1785), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1787), 32, + sym_float, + ACTIONS(2550), 33, + 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_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_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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [158969] = 4, + STATE(1561), 1, + aux_sym_union_type_repeat1, + 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, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134169,39 +179066,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [129031] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1869), 4, + 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, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134210,37 +179130,66 @@ 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, - [129073] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1779), 4, + 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, - ACTIONS(1777), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, 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, @@ -134249,37 +179198,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_is, anon_sym_QMARK_LBRACK, - [129115] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1865), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134288,36 +179261,67 @@ 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, - [129157] = 3, - ACTIONS(1819), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1817), 32, + sym_float, + ACTIONS(2946), 33, + 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_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_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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134325,38 +179329,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [129199] = 3, - ACTIONS(1823), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1821), 32, + sym_float, + ACTIONS(2857), 31, + 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_rule, + anon_sym_lambda, 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134364,39 +179394,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - anon_sym_is, anon_sym_QMARK_LBRACK, - [129241] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1607), 5, - anon_sym_EQ, + 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, - ACTIONS(1605), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134405,37 +179458,66 @@ 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, - [129283] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1695), 4, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1693), 29, + anon_sym_is, + 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, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + sym__dedent, + sym_string_start, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134444,36 +179526,63 @@ 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, - [129325] = 3, - ACTIONS(1827), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1825), 32, + sym_float, + ACTIONS(217), 31, + 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_rule, + anon_sym_lambda, 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134481,38 +179590,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [129367] = 3, - ACTIONS(1831), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1829), 32, + sym_float, + ACTIONS(3065), 32, + 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_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_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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134520,39 +179655,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, + 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, - [129409] = 3, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3091), 1, + anon_sym_CARET, + ACTIONS(3093), 1, + anon_sym_AMP, + ACTIONS(3101), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 4, + 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(3099), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1849), 29, - sym__newline, + 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, + anon_sym_all, + anon_sym_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, + [159763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3171), 27, + sym__newline, + sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134561,36 +179803,64 @@ 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, - [129451] = 3, - ACTIONS(1835), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1833), 32, + sym_float, + ACTIONS(3173), 32, + 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_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_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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134598,39 +179868,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [129493] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [159899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 5, - anon_sym_EQ, + 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, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_is, + 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, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, 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, @@ -134639,31877 +179998,170820 @@ 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, - [129535] = 3, + 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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [160243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2924), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [160515] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + 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(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, + anon_sym_all, + 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, + [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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [160757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2883), 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(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, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + 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, + 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), 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, + [160897] = 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(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, + anon_sym_all, + 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, + [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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [161073] = 3, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [161211] = 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [161279] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3051), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [161347] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3043), 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(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, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [161759] = 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, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + 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, + 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, + [162167] = 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + 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, + 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, + [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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2481), 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(2479), 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, + [162451] = 8, + ACTIONS(3212), 1, + anon_sym_not, + ACTIONS(3218), 1, + anon_sym_is, + STATE(1982), 1, + aux_sym_comparison_operator_repeat1, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [162529] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [162801] = 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [162869] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2896), 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(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, + [162937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [163005] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2930), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [163073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3113), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [163141] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [163209] = 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__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), 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, + [163281] = 7, + ACTIONS(3023), 1, + anon_sym_if, + ACTIONS(3025), 1, + anon_sym_and, + 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(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), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 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(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, + [163439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [163507] = 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, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [163575] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3157), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [163643] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3171), 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(3173), 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, + [163711] = 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + 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, + 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(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, + 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, + [163925] = 4, + STATE(2020), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + [163995] = 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + 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, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 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(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, + [164427] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 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(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, + [164495] = 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [164563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 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(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, + [164631] = 4, + STATE(2020), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 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(3253), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2576), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [164957] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2936), 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(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, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [165025] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2940), 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(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, + [165093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3257), 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(3259), 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, + [165161] = 8, + ACTIONS(3264), 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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [165239] = 4, + STATE(2020), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + [165309] = 4, + STATE(2020), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + [165379] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2883), 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(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, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [165447] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2944), 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(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, + [165515] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2948), 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(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, + [165583] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2952), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [165651] = 4, + STATE(2201), 1, + sym_dictionary, + 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [165721] = 4, + STATE(2006), 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, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [165791] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3275), 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(3273), 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, + [165859] = 4, + STATE(2006), 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, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [165929] = 4, + STATE(2006), 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, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + 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, + 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, + [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, + 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, + 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_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_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), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(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, + [166283] = 4, + STATE(3242), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 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(3277), 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, + [166513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3283), 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(3281), 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, + [166581] = 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3285), 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, + [166649] = 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, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [166717] = 4, + ACTIONS(2855), 1, + anon_sym_EQ, + 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, + [166787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3291), 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(3289), 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, + [166855] = 6, + ACTIONS(3023), 1, + anon_sym_if, + 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(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), 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, + [166929] = 6, + ACTIONS(3023), 1, + anon_sym_if, + 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(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), 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, + [167003] = 5, + ACTIONS(3023), 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), 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, + [167075] = 6, + ACTIONS(3023), 1, + anon_sym_if, + 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(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), 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, + [167149] = 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, + 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [167225] = 5, + ACTIONS(3023), 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), 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, + [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, + 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), 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, + [167377] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 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(3293), 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, + [167445] = 14, + 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, + 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), 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(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, + [167535] = 5, + ACTIONS(3023), 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), 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, + [167607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3299), 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(3297), 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, + [167675] = 5, + ACTIONS(3023), 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), 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, + [167747] = 9, + 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, + 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, + 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_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, + anon_sym_all, + anon_sym_any, + 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, + [167827] = 5, + ACTIONS(3205), 1, + anon_sym_in, + ACTIONS(3301), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [167899] = 3, + 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, + [167967] = 7, + ACTIONS(3023), 1, + anon_sym_if, + ACTIONS(3025), 1, + anon_sym_and, + 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(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), 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, + [168043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 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(3303), 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, + [168111] = 4, + STATE(2006), 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, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [168181] = 5, + ACTIONS(3023), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [168253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [168321] = 5, + ACTIONS(3023), 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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + [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, + 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, + 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, + [168481] = 4, + STATE(3247), 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), 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, + [168551] = 3, + 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, + [168619] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3201), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [168687] = 4, + ACTIONS(2904), 1, + anon_sym_EQ, + 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, + [168757] = 4, + ACTIONS(3169), 1, + anon_sym_else, + 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), 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, + [168827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2900), 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(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, + [168895] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 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(3253), 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, + [168963] = 4, + STATE(2110), 1, + sym_dictionary, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [169033] = 5, + ACTIONS(3307), 1, + anon_sym_in, + ACTIONS(3309), 1, + anon_sym_not, + 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), 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, + [169105] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3275), 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(3273), 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, + [169173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3257), 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(3259), 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, + [169241] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 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(3277), 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, + [169309] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3233), 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(3235), 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, + [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, + 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, + sym_string_start, + ts_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), 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, + [169457] = 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [169525] = 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, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [169593] = 5, + ACTIONS(3117), 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), 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, + [169665] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3283), 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(3281), 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, + [169733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 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(3303), 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, + [169801] = 5, + ACTIONS(3117), 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), 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(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, + [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, + 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(2503), 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(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, + [169979] = 5, + ACTIONS(3307), 1, + anon_sym_in, + ACTIONS(3311), 1, + anon_sym_not, + 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), 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, + [170051] = 3, + 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, + [170119] = 5, + ACTIONS(3117), 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), 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(2465), 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, + [170191] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 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(3285), 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, + [170259] = 5, + ACTIONS(3117), 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), 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(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, + [170331] = 5, + ACTIONS(3117), 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), 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(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, + [170403] = 6, + ACTIONS(3117), 1, + anon_sym_if, + ACTIONS(3123), 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, + 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, + [170477] = 5, + ACTIONS(3117), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 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(2453), 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, + [170549] = 6, + ACTIONS(3117), 1, + anon_sym_if, + ACTIONS(3123), 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, + 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, + [170623] = 6, + ACTIONS(3117), 1, + anon_sym_if, + ACTIONS(3123), 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, + 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), 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, + [170697] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3291), 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(3289), 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, + [170765] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 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(3293), 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, + [170833] = 4, + STATE(1929), 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), 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, + [170903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3299), 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(3297), 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, + [170971] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [171038] = 4, + STATE(2121), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [171107] = 4, + STATE(2131), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [171176] = 4, + ACTIONS(3031), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [171245] = 4, + ACTIONS(3169), 1, + anon_sym_else, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [171314] = 3, + 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [171381] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + 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, + 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, + [171584] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 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(3293), 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, + [171651] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3299), 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(3297), 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, + [171718] = 4, + STATE(2120), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [171787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3135), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [171854] = 4, + STATE(2120), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [172069] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 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(3303), 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, + [172136] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [172270] = 3, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [172337] = 8, + ACTIONS(3320), 1, + anon_sym_not, + ACTIONS(3326), 1, + anon_sym_is, + STATE(2120), 1, + aux_sym_comparison_operator_repeat1, + 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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_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, + [172414] = 8, + ACTIONS(3332), 1, + anon_sym_not, + ACTIONS(3338), 1, + anon_sym_is, + STATE(2121), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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(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, + [172491] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3141), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [172558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3149), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [172625] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 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(3239), 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, + [172692] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [172759] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3283), 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(3281), 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, + [172826] = 4, + STATE(2121), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [172895] = 8, + ACTIONS(3313), 1, + sym_isMutableFlag, + ACTIONS(3315), 1, + anon_sym_QMARK_COLON, + STATE(2389), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3233), 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(3235), 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, + [173106] = 4, + STATE(2121), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [173175] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3063), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [173242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 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(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, + [173309] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3051), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [173510] = 8, + ACTIONS(3341), 1, + sym_isMutableFlag, + ACTIONS(3343), 1, + anon_sym_QMARK_COLON, + STATE(2492), 1, + sym_dict_expr, + STATE(3265), 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, + 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(1586), 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, + [173587] = 4, + STATE(2121), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [173790] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [173857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3171), 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(3173), 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, + [173924] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3137), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [173991] = 8, + ACTIONS(3341), 1, + sym_isMutableFlag, + ACTIONS(3343), 1, + anon_sym_QMARK_COLON, + STATE(2355), 1, + aux_sym_comparison_operator_repeat1, + STATE(2492), 1, + sym_dict_expr, + STATE(4412), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + ACTIONS(1586), 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, + [174068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3175), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [174135] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3191), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [174202] = 5, + ACTIONS(3345), 1, + anon_sym_in, + ACTIONS(3347), 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [174273] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3187), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [174340] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3201), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [174407] = 3, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [174474] = 5, + ACTIONS(3205), 1, + anon_sym_in, + ACTIONS(3349), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [174545] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [174612] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 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(3253), 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, + [174679] = 5, + ACTIONS(3351), 1, + anon_sym_in, + ACTIONS(3353), 1, + anon_sym_not, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [174750] = 5, + ACTIONS(3307), 1, + anon_sym_in, + ACTIONS(3355), 1, + anon_sym_not, + 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), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [174821] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3179), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [174888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3179), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + ACTIONS(1586), 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, + [175032] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3175), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [175099] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3171), 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(3173), 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, + [175166] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3125), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [175300] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [175367] = 4, + STATE(3254), 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [175507] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3157), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [175641] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3201), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [175708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [175775] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [175842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3153), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + aux_sym_comparison_operator_repeat1, + 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [175986] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 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(3285), 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, + [176053] = 4, + STATE(2120), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3233), 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(3235), 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, + [176189] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 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(3239), 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, + [176256] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176390] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3113), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176524] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 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(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, + [176591] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 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(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, + [176658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3069), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176725] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(3259), 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, + [176859] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3187), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [176926] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [177060] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3109), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [177127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3125), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3137), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [177328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3145), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [177395] = 5, + ACTIONS(3205), 1, + anon_sym_in, + ACTIONS(3359), 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [177466] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 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(3303), 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, + [177533] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3275), 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(3273), 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, + [177600] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3257), 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(3259), 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, + [177667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3149), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [177734] = 5, + ACTIONS(3195), 1, + anon_sym_in, + ACTIONS(3197), 1, + anon_sym_not, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [177805] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [177939] = 3, + 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, + 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, + [178006] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [178142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3067), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [178209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3063), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [178276] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3167), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + 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), 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, + [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, + 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), 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, + sym_integer, + sym_identifier, + sym_true, + 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, + 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), 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 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(3293), 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, + [178621] = 3, + 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, + 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, + [178688] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 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(3285), 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, + [178755] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3051), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [178889] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3069), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 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(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, + [179090] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [179224] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3167), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [179291] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3283), 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(3281), 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, + [179425] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 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(3277), 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, + [179492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [179559] = 4, + ACTIONS(3199), 1, + anon_sym_EQ, + 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), 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, + [179628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 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(3253), 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, + [179762] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3275), 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(3273), 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, + [179829] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3113), 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(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, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [179896] = 5, + ACTIONS(3195), 1, + anon_sym_in, + ACTIONS(3197), 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_all, + anon_sym_any, + anon_sym_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, + [179967] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 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(3277), 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, + [180034] = 3, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [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, + 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, + 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, + [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, + 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, + 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, + [180253] = 5, + ACTIONS(3345), 1, + anon_sym_in, + ACTIONS(3367), 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [180323] = 5, + ACTIONS(3351), 1, + anon_sym_in, + ACTIONS(3369), 1, + anon_sym_not, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [180393] = 8, + ACTIONS(3343), 1, + anon_sym_QMARK_COLON, + ACTIONS(3365), 1, + sym_isMutableFlag, + STATE(2492), 1, + sym_dict_expr, + STATE(3277), 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, + 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, + 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [180539] = 5, + ACTIONS(3351), 1, + anon_sym_in, + ACTIONS(3373), 1, + anon_sym_not, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + 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, + 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, + [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, + 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, + sym_integer, + sym_identifier, + sym_true, + 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, + 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, + 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, + sym_integer, + sym_identifier, + sym_true, + 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, + 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, + 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, + [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, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [180984] = 8, + ACTIONS(3379), 1, + sym_isMutableFlag, + ACTIONS(3381), 1, + anon_sym_QMARK_COLON, + STATE(2557), 1, + sym_dict_expr, + STATE(2701), 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, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [181059] = 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(189), 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(191), 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, + [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, + 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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3397), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 18, + 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_CARET, + anon_sym_LT_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_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, + 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, + STATE(2429), 1, + sym_argument_list, + STATE(4730), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2520), 16, + 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_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, + 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, + [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, + 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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3387), 2, + anon_sym_STAR, + 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, + 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2518), 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_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, + [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, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3387), 2, + anon_sym_STAR, + 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(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(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, + sym_float, + ACTIONS(2365), 19, + 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_and, + anon_sym_or, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2576), 21, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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), 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, + [181645] = 6, + ACTIONS(3421), 1, + anon_sym_DOT, + ACTIONS(3424), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2254), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2545), 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(2540), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [181715] = 23, + 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(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(3413), 1, + anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_AMP, + STATE(2429), 1, + sym_argument_list, + STATE(4730), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 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_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_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [181819] = 17, + 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(3415), 1, + anon_sym_AMP, + STATE(2429), 1, + sym_argument_list, + STATE(4730), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2520), 14, + 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_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2518), 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_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, + [181911] = 12, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3397), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 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, + anon_sym_LT_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, + 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_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [181993] = 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 21, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_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, + [182071] = 15, + 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, + 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), 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, + sym_float, + ACTIONS(2518), 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_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, + [182159] = 23, + 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(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(3413), 1, + anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_AMP, + STATE(2429), 1, + sym_argument_list, + STATE(4730), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 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_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(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, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_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, + [182349] = 13, + 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(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, + sym_float, + ACTIONS(2518), 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_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, + [182433] = 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, + 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + anon_sym_not, + ACTIONS(2499), 1, + anon_sym_is, + 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(3413), 1, + anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_AMP, + STATE(2429), 1, + sym_argument_list, + STATE(4730), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 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_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(2522), 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, + [182705] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2283), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2572), 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(2570), 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, + [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, + sym_comment, + sym_line_continuation, + ACTIONS(1588), 2, + 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_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, + [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, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [182947] = 4, + STATE(2320), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 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(2566), 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, + [183013] = 10, + ACTIONS(386), 1, + anon_sym_if, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(444), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, + anon_sym_and, + ACTIONS(3455), 1, + anon_sym_or, + 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(2355), 22, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2357), 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, + [183091] = 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 21, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_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, + [183169] = 5, + ACTIONS(386), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 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(191), 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_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, + [183237] = 6, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3462), 1, + anon_sym_QMARK_DOT, + STATE(2273), 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, + 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, + [183307] = 10, + ACTIONS(253), 1, + anon_sym_if, + ACTIONS(438), 1, + anon_sym_DOT, + ACTIONS(440), 1, + anon_sym_QMARK_DOT, + ACTIONS(3465), 1, + anon_sym_and, + ACTIONS(3467), 1, + anon_sym_or, + ACTIONS(3469), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2288), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2355), 23, + anon_sym_import, + 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_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, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + 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, + [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, + 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, + 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, + sym_float, + ACTIONS(2518), 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_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, + [183475] = 7, + ACTIONS(253), 1, + anon_sym_if, + ACTIONS(3465), 1, + anon_sym_and, + ACTIONS(3469), 1, + anon_sym_PLUS, + 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, + 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, + 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, + sym_integer, + 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, + 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(3439), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 19, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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), 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_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, + [183629] = 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_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, + [183707] = 4, + ACTIONS(3471), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 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_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), 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_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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_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, + [183851] = 7, + ACTIONS(386), 1, + anon_sym_if, + ACTIONS(3453), 1, + anon_sym_and, + 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(2479), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2481), 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, + [183923] = 4, + STATE(2269), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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(2505), 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, + [183989] = 6, + ACTIONS(3473), 1, + anon_sym_DOT, + ACTIONS(3476), 1, + anon_sym_QMARK_DOT, + 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 26, + 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, + [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, + 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(2483), 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, + [184125] = 6, + ACTIONS(3479), 1, + anon_sym_DOT, + ACTIONS(3482), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2285), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2545), 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(2540), 26, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [184195] = 5, + ACTIONS(3485), 1, + anon_sym_EQ, + STATE(2269), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2562), 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(2560), 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, + [184263] = 21, + 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, + 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_DASH, + ACTIONS(3439), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3443), 2, + 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_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), 20, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [184363] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2285), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2572), 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(2570), 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, + [184429] = 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(2439), 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(2441), 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, + [184497] = 5, + ACTIONS(386), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 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(2465), 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_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, + [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, + 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(2465), 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, + [184633] = 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, + 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), 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2254), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2572), 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(2570), 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, + [184801] = 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(2459), 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(2461), 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, + [184869] = 4, + ACTIONS(3495), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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_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), 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_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, + [184935] = 7, + ACTIONS(386), 1, + anon_sym_if, + ACTIONS(3453), 1, + anon_sym_and, + 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(2449), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2288), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 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(2461), 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, + [185075] = 4, + STATE(2269), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2538), 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(2536), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 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_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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2469), 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, + [185217] = 4, + STATE(2269), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2534), 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(2532), 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, + [185283] = 6, + ACTIONS(253), 1, + anon_sym_if, + ACTIONS(3469), 1, + anon_sym_PLUS, + 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, + 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, + ACTIONS(2457), 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, + [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, + sym_comment, + sym_line_continuation, + ACTIONS(1588), 2, + 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_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, + [185427] = 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(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, + ACTIONS(2453), 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, + [185495] = 6, + ACTIONS(253), 1, + anon_sym_if, + ACTIONS(3469), 1, + anon_sym_PLUS, + 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, + 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, + 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, + anon_sym_if, + ACTIONS(3469), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2288), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 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, + ACTIONS(2445), 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, + [185635] = 9, + ACTIONS(253), 1, + anon_sym_if, + ACTIONS(3465), 1, + anon_sym_and, + ACTIONS(3469), 1, + anon_sym_PLUS, + 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, + 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(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), 19, + 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_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [185711] = 4, + STATE(2312), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 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(2475), 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, + [185777] = 7, + ACTIONS(253), 1, + anon_sym_if, + ACTIONS(3465), 1, + anon_sym_and, + ACTIONS(3469), 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), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2481), 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, + [185849] = 9, + ACTIONS(386), 1, + anon_sym_if, + ACTIONS(3453), 1, + anon_sym_and, + 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(2467), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2447), 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(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), 18, + 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, + 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(2443), 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, + [185995] = 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(2449), 25, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + [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, + 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(2471), 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, + [186131] = 21, + 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3443), 2, + 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_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), 20, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [186231] = 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(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_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 2, + 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_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, + sym_float, + ACTIONS(2365), 19, + 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_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [186333] = 5, + ACTIONS(386), 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), 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(2453), 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_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, + [186401] = 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(2457), 25, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2455), 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, + [186471] = 5, + ACTIONS(386), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 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(2461), 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_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, + [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, + 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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), 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, + [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, + 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), 22, + 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_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, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + 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, + [186693] = 5, + ACTIONS(3497), 1, + anon_sym_PIPE, + STATE(2320), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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_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), 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, + [186761] = 5, + ACTIONS(386), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 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(2461), 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_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, + [186829] = 5, + ACTIONS(386), 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), 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(2441), 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_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, + [186897] = 4, + STATE(2324), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(2857), 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, + [186962] = 8, + ACTIONS(3503), 1, + anon_sym_not, + ACTIONS(3509), 1, + anon_sym_is, + STATE(2324), 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2861), 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_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_SLASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2863), 22, + 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_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, + 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, + 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, + [187108] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [187173] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 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(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, + [187238] = 4, + STATE(3263), 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, + 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, + [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, + 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, + [187368] = 4, + STATE(2403), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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(2483), 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, + [187433] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2883), 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(2881), 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, + [187496] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 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(2885), 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, + [187559] = 3, + 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, + 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, + [187622] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2952), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2900), 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(2898), 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, + [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, + 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, + 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, + [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, + 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, + 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, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [187959] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2555), 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(2550), 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, + [188022] = 4, + STATE(2403), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2538), 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(2536), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1588), 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(1586), 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, + [188160] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2924), 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(2922), 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, + [188223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2936), 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(2934), 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, + [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_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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2940), 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(2938), 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, + [188422] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2944), 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(2942), 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, + [188485] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2948), 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(2946), 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, + [188548] = 4, + STATE(2362), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(2857), 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, + [188613] = 4, + STATE(2403), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2534), 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(2532), 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, + [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, + 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, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + 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, + [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, + 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_type, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [188854] = 4, + STATE(4733), 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, + 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, + [188919] = 4, + STATE(2362), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(2857), 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, + [188984] = 4, + STATE(2362), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(2857), 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, + [189049] = 4, + STATE(2362), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(2857), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1588), 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(1586), 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, + [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, + 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, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + 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, + [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, + 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(2481), 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, + [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, + 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, + 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, + [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, + 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, + 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), 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, + [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, + 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, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + 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_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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2863), 22, + 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_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, + 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, + [189764] = 4, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2562), 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(2560), 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, + [189829] = 4, + STATE(2427), 1, + sym_dictionary, + 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, + 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, + [189894] = 4, + STATE(2403), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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(2505), 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, + [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, + 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, + 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), 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, + [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, + 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, + 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_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_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), 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, + 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, + [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, + 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, + sym__newline, + sym__indent, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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), 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, + [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, + 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), 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, + [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, + 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), 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, + [190455] = 9, + 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(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, + 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(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), 18, + 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_or, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2288), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 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, + ACTIONS(2445), 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, + [190599] = 6, + ACTIONS(3524), 1, + anon_sym_if, + 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(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, + ACTIONS(2449), 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, + [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_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(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, + 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, + 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, + ACTIONS(2457), 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, + [190804] = 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, + 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, + 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, + [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, + 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, + 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, + [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, + 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(2463), 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, + [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, + 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(189), 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, + [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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1588), 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(1586), 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, + [191145] = 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(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, + 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, + [191212] = 4, + STATE(2269), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 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(2912), 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, + [191277] = 5, + ACTIONS(3568), 1, + anon_sym_EQ, + STATE(2269), 1, + aux_sym_union_type_repeat1, + 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, + 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, + [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, + 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_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, + [191445] = 4, + STATE(2324), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(2857), 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, + [191510] = 4, + STATE(2324), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(2857), 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, + [191575] = 4, + STATE(2324), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(2857), 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, + [191640] = 4, + STATE(2410), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2473), 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(2471), 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, + [191705] = 6, + ACTIONS(3570), 1, + anon_sym_DOT, + ACTIONS(3573), 1, + anon_sym_QMARK_DOT, + STATE(2391), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2555), 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, + ACTIONS(2550), 26, + 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, + [191774] = 4, + STATE(2403), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 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(2912), 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, + [191839] = 4, + STATE(2391), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2473), 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(2471), 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, + [191904] = 5, + ACTIONS(3576), 1, + anon_sym_EQ, + STATE(2403), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 26, + 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_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(2562), 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, + [191971] = 4, + STATE(2390), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 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(2475), 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, + [192036] = 4, + STATE(2506), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 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(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, + [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, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + 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, + [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, + sym_argument_list, + STATE(4730), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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), 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, + [192251] = 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(3281), 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, + 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_type, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [192350] = 4, + STATE(2393), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 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(2475), 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, + [192415] = 4, + ACTIONS(3578), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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_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(2483), 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_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, + [192480] = 4, + STATE(3259), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [192545] = 4, + STATE(2409), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2930), 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(2928), 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, + [192673] = 4, + ACTIONS(3580), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 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_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(2526), 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_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, + [192738] = 4, + ACTIONS(3582), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 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_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(2512), 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_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, + [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, + 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, + 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [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, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [193075] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3191), 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(3193), 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, + [193137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3135), 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(3133), 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, + [193199] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 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(3277), 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, + [193261] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2924), 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(2922), 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, + [193323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2555), 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(2550), 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, + [193385] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3275), 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(3273), 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, + [193447] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3275), 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(3273), 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, + [193509] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2555), 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(2550), 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, + [193571] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 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(3253), 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, + [193633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2924), 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(2922), 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, + [193695] = 4, + ACTIONS(3593), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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_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, + [193759] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 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(3277), 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, + [193821] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3283), 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(3281), 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, + [193883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3291), 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(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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [193945] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 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(3293), 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, + [194007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2930), 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(2928), 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, + [194069] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3299), 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(3297), 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, + [194131] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3167), 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(3165), 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, + [194193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 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(3303), 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, + [194255] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 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(3239), 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, + [194317] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3135), 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(3133), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3257), 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(3259), 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, + [194513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 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(3077), 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, + [194575] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2936), 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(2934), 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, + [194637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2940), 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(2938), 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, + [194699] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3077), 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, + [194761] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2944), 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(2942), 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, + [194823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 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(3077), 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, + [194885] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3043), 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(3041), 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, + [194947] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2948), 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(2946), 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, + [195009] = 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_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(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, + 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, + [195071] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3051), 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(3049), 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, + [195133] = 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_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(3053), 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, + [195195] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3063), 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(3061), 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, + [195257] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3067), 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(3065), 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, + [195319] = 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_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(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, + 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, + [195381] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2900), 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(2898), 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, + [195443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2896), 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(2894), 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, + [195505] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3141), 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(3143), 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, + [195567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 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(3163), 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, + [195629] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2952), 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(2950), 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, + [195691] = 5, + ACTIONS(3597), 1, + anon_sym_in, + ACTIONS(3599), 1, + anon_sym_not, + 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, + 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, + 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, + 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(3203), 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, + [195819] = 3, + 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, + 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, + [195881] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3201), 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(3203), 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, + [195943] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3043), 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(3041), 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, + [196005] = 3, + 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, + [196067] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 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(2365), 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, + [196129] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3151), 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, + [196191] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3145), 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(3147), 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, + [196253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3137), 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(3139), 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, + [196315] = 3, + 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, + 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, + [196377] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3125), 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(3127), 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, + [196439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3111), 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, + [196501] = 4, + STATE(2522), 1, + aux_sym_union_type_repeat1, + 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, + 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, + [196565] = 4, + STATE(2522), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 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(3285), 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, + [196691] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 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(2885), 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, + [196753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 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(3097), 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, + [196815] = 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(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, + 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, + [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, + 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, + [196947] = 4, + STATE(2512), 1, + aux_sym_dotted_name_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, + 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, + 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, + [197011] = 4, + STATE(2522), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 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(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, + 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, + 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, + [197137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 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(3075), 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, + [197199] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3069), 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(3071), 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, + [197261] = 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_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, + 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, + [197323] = 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_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, + 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, + [197385] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 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(3059), 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, + [197447] = 22, + ACTIONS(2495), 1, + anon_sym_not, + ACTIONS(2499), 1, + anon_sym_is, + 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, + 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_DASH, + ACTIONS(3617), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3625), 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, + 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_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, + [197547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 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(3293), 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, + [197609] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2883), 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(2881), 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, + [197671] = 22, + ACTIONS(2495), 1, + anon_sym_not, + ACTIONS(2499), 1, + anon_sym_is, + 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, + 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_DASH, + ACTIONS(3617), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3625), 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_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + 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, + 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3113), 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(3115), 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, + [197897] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(3131), 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, + [197959] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(3131), 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, + [198021] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3155), 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, + [198083] = 3, + 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, + [198145] = 3, + 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, + 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, + [198207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3257), 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(3259), 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, + [198269] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3173), 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, + [198331] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3177), 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, + [198393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3181), 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, + [198455] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3185), 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, + [198517] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3187), 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(3189), 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, + [198579] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3233), 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(3235), 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, + [198641] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 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(3303), 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, + [198703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2930), 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(2928), 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, + [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, + 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, + 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, + sym_float, + ACTIONS(2518), 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_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, + [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, + 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, + 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_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2518), 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_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, + [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, + 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, + 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_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2518), 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_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, + [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, + 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, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + 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), 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_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, + [199105] = 4, + STATE(3280), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [199169] = 3, + 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, + 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, + [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, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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), 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_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, + [199311] = 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(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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + 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, + [199387] = 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(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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + 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, + [199463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 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(2365), 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, + [199525] = 6, + ACTIONS(3629), 1, + anon_sym_DOT, + ACTIONS(3632), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2511), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 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(2545), 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, + [199593] = 6, + ACTIONS(3635), 1, + 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, + 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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3299), 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(3297), 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, + [199723] = 4, + ACTIONS(3568), 1, + anon_sym_EQ, + 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, + 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, + [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, + 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), 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, + [199853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 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(3293), 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, + [199915] = 3, + 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, + [199977] = 22, + ACTIONS(2495), 1, + anon_sym_not, + ACTIONS(2499), 1, + anon_sym_is, + 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, + 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_DASH, + ACTIONS(3617), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3625), 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_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_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, + [200077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 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(3253), 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, + [200139] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 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(3303), 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, + [200201] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3291), 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(3289), 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, + [200263] = 4, + STATE(2591), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2566), 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(2568), 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, + [200327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 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(3285), 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, + [200389] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3283), 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(3281), 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, + [200451] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 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(3277), 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, + [200513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 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(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, + [200575] = 4, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 26, + 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_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(2562), 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, + [200639] = 9, + 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(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, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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), 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, + [200713] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3275), 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(3273), 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, + [200775] = 4, + STATE(2549), 1, + aux_sym_comparison_operator_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, + 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, + [200839] = 4, + STATE(2549), 1, + aux_sym_comparison_operator_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, + 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, + [200903] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2511), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2570), 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(2572), 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, + [200967] = 4, + STATE(2549), 1, + aux_sym_comparison_operator_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, + 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, + [201031] = 4, + STATE(2549), 1, + aux_sym_comparison_operator_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, + 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, + [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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2576), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + 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, + [201171] = 5, + ACTIONS(3597), 1, + anon_sym_in, + ACTIONS(3643), 1, + anon_sym_not, + 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, + 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [201237] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 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(3253), 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, + [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, + 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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 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(2477), 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, + [201461] = 9, + ACTIONS(482), 1, + anon_sym_if, + 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(2467), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(2447), 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(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), 18, + anon_sym_DOT, + anon_sym_as, + 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, + anon_sym_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [201535] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3165), 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, + [201597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3283), 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(3281), 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, + [201659] = 5, + ACTIONS(3657), 1, + anon_sym_in, + ACTIONS(3659), 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, + anon_sym_is, + sym_integer, + 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, + [201725] = 9, + ACTIONS(450), 1, + anon_sym_if, + ACTIONS(2447), 1, + anon_sym_QMARK_DOT, + 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), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2467), 20, + 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_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_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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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(3077), 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, + [201861] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3149), 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(3151), 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, + [201923] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3137), 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(3139), 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, + [201985] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3051), 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(3049), 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, + [202047] = 8, + ACTIONS(3664), 1, + anon_sym_not, + ACTIONS(3670), 1, + anon_sym_is, + STATE(2549), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3661), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3667), 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, + 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_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, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2467), 21, + 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(2469), 23, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [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, + 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 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(2449), 24, + 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_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, + [202333] = 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_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_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_TILDE, + sym_float, + ACTIONS(2522), 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, + [202435] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 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(3053), 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, + [202497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3063), 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(3061), 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, + [202559] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3067), 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(3065), 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, + [202621] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3257), 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(3259), 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, + [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, + anon_sym_is, + sym_integer, + 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, + [202749] = 4, + ACTIONS(3701), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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_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, + [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, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2576), 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, + sym_float, + ACTIONS(2574), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [202889] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2900), 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(2898), 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, + [202951] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2936), 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(2934), 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, + [203013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2940), 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(2938), 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, + [203075] = 3, + 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_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, + [203137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2944), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3077), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 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, + sym_float, + ACTIONS(2518), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [203337] = 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 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, + sym_float, + ACTIONS(2518), 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, + sym_integer, + sym_identifier, + sym_true, + 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, + 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(3133), 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, + [203475] = 12, + 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, + 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), 17, + sym_string_start, + anon_sym_COLON, + 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, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_then, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [203555] = 17, + 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(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(2520), 12, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [203645] = 16, + 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(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(2520), 13, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + 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_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_not, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + 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, + 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, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + 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, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [203819] = 14, + 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, + 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, + sym_string_start, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_PLUS_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2518), 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, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_then, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [203903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2948), 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(2946), 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, + [203965] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 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(3239), 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, + [204027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3235), 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, + [204089] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2896), 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(2894), 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, + [204151] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2952), 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(2950), 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, + [204213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3201), 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(3203), 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, + [204275] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 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(3077), 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, + [204337] = 3, + 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_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, + [204399] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3051), 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(3049), 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, + [204461] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 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(3053), 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, + [204523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3063), 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(3061), 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, + [204585] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3067), 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(3065), 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, + [204647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3141), 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(3143), 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, + [204709] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 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(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, + [204771] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 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(3163), 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, + [204833] = 22, + 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, + 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_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, + 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_and, + anon_sym_or, + anon_sym_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [204933] = 5, + ACTIONS(3711), 1, + anon_sym_PIPE, + STATE(2591), 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, + 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, + [204999] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3149), 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(3151), 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, + [205061] = 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_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_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, + sym_float, + ACTIONS(2489), 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, + [205265] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3145), 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(3147), 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, + [205327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 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(2365), 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, + [205389] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3125), 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(3127), 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, + [205451] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3109), 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(3111), 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, + [205513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 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(3097), 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, + [205575] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3141), 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(3143), 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, + [205637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 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(3075), 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, + [205699] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3069), 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(3071), 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, + [205761] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 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(3047), 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, + [205823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 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(3047), 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, + [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, + 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(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, + 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, + 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(217), 15, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(221), 21, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + 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_QMARK_LBRACK, + [206017] = 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(189), 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(191), 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, + [206083] = 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(2463), 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(2465), 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, + [206149] = 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, + 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, + 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, + [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, + 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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 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(2457), 25, + 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_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, + [206349] = 7, + ACTIONS(482), 1, + anon_sym_if, + 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(2479), 24, + 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_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, + ACTIONS(2481), 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, + [206419] = 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(2451), 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(2453), 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, + [206485] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 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(3059), 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, + [206609] = 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(2447), 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(2449), 25, + 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_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, + [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, + 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(2445), 25, + 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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 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(217), 26, + 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_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), 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, + [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, + 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(189), 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, + [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, + 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(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, + [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, + 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3193), 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, + [207137] = 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(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, + 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, + [207203] = 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(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, + 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, + [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, + 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(2455), 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, + [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, + 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(2451), 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, + [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, + 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(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, + [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, + 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3113), 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(3115), 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, + [207601] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(3131), 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, + [207663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3189), 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, + [207725] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 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(3185), 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, + [207787] = 3, + 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, + 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, + [207849] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3177), 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, + [207911] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3173), 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, + [207973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 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(3163), 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, + [208035] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3157), 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(3159), 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, + [208097] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 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(3131), 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, + [208159] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3153), 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(3155), 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, + [208221] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3157), 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(3159), 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, + [208283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3171), 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(3173), 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, + [208345] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3175), 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(3177), 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, + [208407] = 5, + ACTIONS(3195), 1, + anon_sym_in, + ACTIONS(3197), 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, + anon_sym_is, + sym_integer, + 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, + [208473] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + [208535] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3187), 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(3189), 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, + [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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + [208659] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3179), 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(3181), 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, + [208721] = 4, + ACTIONS(3169), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [208785] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3153), 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(3155), 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, + [208847] = 3, + 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, + 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, + [208909] = 3, + 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, + 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, + [208971] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3113), 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(3115), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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(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, + [209105] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 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(3285), 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, + [209167] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2883), 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(2881), 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, + [209229] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 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(3059), 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, + [209291] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3047), 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, + [209353] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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(3047), 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, + [209415] = 4, + STATE(2531), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3069), 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(3071), 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, + [209541] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 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(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, + sym_integer, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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(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, + [209675] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 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(3097), 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, + [209737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 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(2885), 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, + [209799] = 4, + ACTIONS(3716), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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_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, + [209863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + [209925] = 10, + ACTIONS(482), 1, + anon_sym_if, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(3653), 1, + anon_sym_and, + ACTIONS(3655), 1, + anon_sym_PLUS, + ACTIONS(3718), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2355), 22, + 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_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(2357), 23, + sym_string_start, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + 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, + [210001] = 22, + 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, + ACTIONS(3705), 1, + anon_sym_not, + ACTIONS(3709), 1, + anon_sym_is, + STATE(2520), 1, + sym_argument_list, + STATE(2697), 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_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, + 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_and, + anon_sym_or, + anon_sym_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [210101] = 3, + 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, + 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, + [210163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3137), 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(3139), 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, + [210225] = 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(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_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, + 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, + [210323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3145), 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(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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [210385] = 10, + ACTIONS(450), 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, + anon_sym_PLUS, + ACTIONS(3720), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2532), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2355), 21, + 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_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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [210461] = 4, + STATE(2756), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2483), 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, + [210524] = 5, + ACTIONS(556), 1, + anon_sym_if, + ACTIONS(5), 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), 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, + 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, + [210589] = 4, + STATE(4733), 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_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, + 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, + [210652] = 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(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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + ACTIONS(2365), 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, + [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, + 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_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_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, + [210818] = 4, + STATE(2703), 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_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, + 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, + [210881] = 4, + STATE(2699), 1, + aux_sym_comparison_operator_repeat1, + 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_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(217), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [210944] = 6, + ACTIONS(556), 1, + anon_sym_if, + ACTIONS(3754), 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), 46, + 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_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, + [211011] = 6, + ACTIONS(556), 1, + anon_sym_if, + ACTIONS(3754), 1, + anon_sym_PLUS, + ACTIONS(5), 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), 46, + 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_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, + [211078] = 5, + ACTIONS(556), 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), 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, + 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, + [211143] = 6, + ACTIONS(556), 1, + anon_sym_if, + ACTIONS(3754), 1, + anon_sym_PLUS, + ACTIONS(5), 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), 46, + 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_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, + [211210] = 5, + ACTIONS(556), 1, + anon_sym_if, + ACTIONS(5), 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), 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, + 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, + [211275] = 4, + ACTIONS(3756), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 2, + 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, + 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, + [211338] = 5, + ACTIONS(556), 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), 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, + 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, + [211403] = 5, + ACTIONS(556), 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), 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, + 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, + [211468] = 5, + ACTIONS(556), 1, + anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2439), 2, + 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, + 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, + [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, + 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, + 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, + 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, + anon_sym_if, + ACTIONS(3750), 1, + anon_sym_and, + ACTIONS(3754), 1, + anon_sym_PLUS, + ACTIONS(5), 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), 45, + 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_or, + 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 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(1586), 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(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_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, + 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_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, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [211839] = 8, + 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(2469), 2, + sym_string_start, + anon_sym_LF, + STATE(2754), 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), 41, + 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_not, + 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, + [211910] = 8, + 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(2447), 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, + 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_or, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [212044] = 4, + STATE(2756), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2534), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2532), 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, + [212107] = 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [212170] = 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [212233] = 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [212296] = 4, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(2859), 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, + [212359] = 4, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(2859), 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, + [212422] = 4, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(2859), 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, + [212485] = 4, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(2859), 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, + [212548] = 4, + STATE(3322), 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_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, + 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, + [212611] = 4, + STATE(2876), 1, + sym_dictionary, + 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_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, + 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, + [212674] = 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, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2518), 43, + 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_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, + 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, + [212749] = 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, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2518), 43, + 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_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, + 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, + [212824] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2950), 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(2952), 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, + [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, + 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_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, + anon_sym_LPAREN, + ACTIONS(3724), 1, + anon_sym_LBRACK, + ACTIONS(3730), 1, + anon_sym_STAR_STAR, + ACTIONS(3732), 1, + anon_sym_QMARK_DOT, + 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(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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2518), 33, + 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_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, + anon_sym_LPAREN, + ACTIONS(3724), 1, + anon_sym_LBRACK, + ACTIONS(3730), 1, + anon_sym_STAR_STAR, + ACTIONS(3732), 1, + anon_sym_QMARK_DOT, + 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(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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2518), 34, + 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_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, + 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(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(2518), 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_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, + 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(3736), 2, + anon_sym_PLUS, + 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, + 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(2948), 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, + [213351] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 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(2944), 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, + [213412] = 4, + STATE(2756), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2538), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2536), 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, + [213475] = 3, + 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, + 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, + [213536] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2934), 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(2936), 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, + [213597] = 4, + STATE(2759), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2473), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2471), 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, + [213660] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [213721] = 4, + STATE(2721), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2477), 2, + 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_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, + [213784] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2922), 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(2924), 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, + [213845] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 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(2555), 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, + [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, + 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, + [213969] = 4, + STATE(2522), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2912), 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(2914), 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, + [214032] = 4, + ACTIONS(3768), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + [214095] = 8, + ACTIONS(3773), 1, + anon_sym_not, + ACTIONS(3779), 1, + anon_sym_is, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3770), 3, + 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_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_STAR, + 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_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, + [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, + 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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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(2562), 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, + [214294] = 3, + 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, + 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, + [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, + 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_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, + 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_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(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, + sym_integer, + sym_float, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [214545] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 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(2887), 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, + [214606] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [214667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2898), 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(2900), 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, + [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, + 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(217), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [214791] = 5, + 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, + 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), 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, + 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_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(2566), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [214919] = 5, + ACTIONS(3785), 1, + anon_sym_EQ, + STATE(2740), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2562), 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(2560), 26, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [214984] = 4, + STATE(2740), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 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(2912), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [215047] = 5, + ACTIONS(3657), 1, + anon_sym_in, + ACTIONS(3787), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 24, + 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, + 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, + 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, + [215112] = 4, + STATE(2740), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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(2505), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [215175] = 4, + STATE(2740), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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(2483), 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, + sym_integer, + sym_identifier, + sym_true, + 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, + 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(2536), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [215301] = 5, + ACTIONS(3789), 1, + anon_sym_PIPE, + STATE(2747), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [215366] = 4, + STATE(2740), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2534), 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(2532), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [215429] = 4, + ACTIONS(3792), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2483), 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, + [215492] = 4, + STATE(2756), 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), 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, + [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, + aux_sym_comparison_operator_repeat1, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + ACTIONS(2365), 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, + [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, + 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_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, + [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, + sym_comment, + sym_line_continuation, + ACTIONS(2576), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2574), 43, + 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_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, + 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, + [215792] = 4, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2572), 2, + sym_string_start, + anon_sym_LF, + STATE(2761), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2570), 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, + [215855] = 4, + ACTIONS(3794), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + [215918] = 4, + STATE(2730), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2566), 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, + [215981] = 4, + ACTIONS(3796), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + [216044] = 5, + ACTIONS(3798), 1, + anon_sym_EQ, + STATE(2756), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2562), 2, + 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, + 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, + [216109] = 5, + STATE(2759), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2555), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3800), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2550), 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_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, + [216174] = 8, + ACTIONS(3806), 1, + anon_sym_not, + ACTIONS(3812), 1, + anon_sym_is, + STATE(2760), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3803), 3, + anon_sym_in, + 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, + 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_QMARK_LBRACK, + sym_float, + ACTIONS(2861), 22, + 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_SLASH, + 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, + 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_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_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, + [216310] = 6, + ACTIONS(614), 1, + anon_sym_if, + ACTIONS(3818), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 23, + 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_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(2457), 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, + [216376] = 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, + 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, + [216438] = 4, + STATE(2961), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2505), 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(2507), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2355), 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, + 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_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, + [216574] = 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, + 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_DASH, + ACTIONS(3842), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3850), 2, + 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_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, + 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, + [216670] = 5, + ACTIONS(3858), 1, + anon_sym_PIPE, + STATE(2767), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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_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), 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, + [216734] = 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(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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [216832] = 6, + ACTIONS(614), 1, + anon_sym_if, + ACTIONS(3818), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 23, + 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_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(2449), 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, + [216898] = 4, + STATE(2961), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 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(2485), 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, + [216960] = 4, + ACTIONS(3885), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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_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, + 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, + [217022] = 7, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3820), 1, + anon_sym_and, + ACTIONS(3824), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2479), 22, + 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_or, + 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), 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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2449), 22, + 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_or, + 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_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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [217158] = 4, + STATE(2756), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2912), 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, + [217220] = 4, + ACTIONS(3798), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2562), 2, + 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, + 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, + [217282] = 7, + ACTIONS(666), 1, + anon_sym_if, + ACTIONS(3887), 1, + anon_sym_and, + 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), 22, + 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_or, + 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, + [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, + anon_sym_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, + [217436] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3049), 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(3051), 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, + [217496] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2555), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2550), 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, + [217556] = 4, + ACTIONS(3891), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 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_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, + [217618] = 15, + 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(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), 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(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, + 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, + 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, + 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_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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [217784] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2924), 2, + 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_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, + [217844] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2900), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2898), 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, + [217904] = 4, + STATE(2767), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2566), 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(2568), 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, + [217966] = 13, + 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(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_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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [218046] = 4, + STATE(2961), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + 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, + sym_integer, + 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, + 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, + 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_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, + [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_DASH, + ACTIONS(3842), 2, + 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_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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [218354] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2930), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2928), 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, + [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, + 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, + 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, + [218500] = 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(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_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, + 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, + [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, + 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(2469), 12, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + ACTIONS(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, + 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, + 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, + [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, + 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, + [218802] = 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, + 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, + [218864] = 5, + 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, + 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(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, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(221), 21, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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), 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, + sym_comment, + sym_line_continuation, + ACTIONS(2505), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [219054] = 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, + 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(2503), 7, + sym__newline, + sym_string_start, + anon_sym_COMMA, + 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, + sym_integer, + sym_identifier, + sym_true, + 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, + 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(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_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [219250] = 4, + STATE(2830), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2471), 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(2473), 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, + [219312] = 4, + STATE(4733), 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, + 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, + [219374] = 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, + 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 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, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, + [219508] = 4, + STATE(2803), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 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(2477), 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, + [219570] = 4, + STATE(2785), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 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(2485), 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, + [219632] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2936), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2934), 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, + [219692] = 7, + ACTIONS(3906), 1, + anon_sym_not, + ACTIONS(3909), 1, + anon_sym_is, + STATE(2810), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2863), 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, + 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, + 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, + [219760] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2940), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2938), 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, + [219820] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2944), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2942), 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, + [219880] = 12, + 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(3873), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 18, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + 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), 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, + [219958] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2948), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2946), 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, + [220018] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2828), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2570), 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(2572), 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, + [220080] = 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 20, + 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, + anon_sym_LT_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_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, + [220154] = 4, + STATE(2833), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 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(2477), 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, + [220216] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2952), 2, + 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_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, + [220276] = 3, + 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_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, + 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, + [220336] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 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(2367), 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, + [220396] = 9, + ACTIONS(666), 1, + anon_sym_if, + ACTIONS(3887), 1, + anon_sym_and, + 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(2467), 6, + anon_sym_in, + 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, + 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), 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, + [220468] = 7, + ACTIONS(666), 1, + anon_sym_if, + ACTIONS(3887), 1, + anon_sym_and, + 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(2479), 22, + 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_or, + 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), 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, + [220536] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2896), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2894), 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, + [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, + 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, + [220658] = 4, + STATE(2785), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 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(2538), 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, + [220720] = 3, + 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_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, + 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, + [220780] = 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 20, + 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, + anon_sym_LT_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_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, + [220854] = 6, + ACTIONS(3912), 1, + anon_sym_DOT, + ACTIONS(3915), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2828), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 23, + 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(2545), 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + 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, + [220994] = 6, + ACTIONS(3920), 1, + anon_sym_DOT, + ACTIONS(3923), 1, + anon_sym_QMARK_DOT, + STATE(2830), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2555), 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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [221060] = 4, + STATE(2857), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2538), 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(2536), 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, + [221122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 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(3201), 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, + [221182] = 4, + STATE(2931), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2471), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [221244] = 4, + STATE(2785), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 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(2534), 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, + [221306] = 22, + 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(3930), 1, + anon_sym_not, + 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, + ACTIONS(3948), 1, + anon_sym_is, + STATE(2520), 1, + sym_argument_list, + STATE(3396), 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_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, + 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, + [221404] = 3, + 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_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, + 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, + [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, + 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, + [221526] = 5, + ACTIONS(3950), 1, + anon_sym_in, + ACTIONS(3952), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 23, + 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_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), 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, + [221590] = 5, + ACTIONS(3950), 1, + anon_sym_in, + ACTIONS(3954), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 23, + 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_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), 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, + [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, + 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, + 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, + [221750] = 4, + STATE(2857), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2534), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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, + [221872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3239), 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(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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [221932] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2883), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2881), 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, + [221992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [222052] = 4, + ACTIONS(3785), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2562), 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(2560), 26, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [222114] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 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(3257), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2355), 21, + 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_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(2357), 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, + [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_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(217), 25, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [222312] = 22, + 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(3930), 1, + anon_sym_not, + 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, + 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_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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 23, + 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_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(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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2576), 20, + 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, + anon_sym_LT_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), 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, + [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, + 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_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, + [222690] = 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(2445), 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(2443), 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, + [222756] = 5, + ACTIONS(3960), 1, + anon_sym_in, + ACTIONS(3966), 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_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(217), 25, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [222820] = 4, + STATE(2898), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 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(2566), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 23, + 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_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(2445), 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, + [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, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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(2505), 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, + [223174] = 4, + STATE(2961), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 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(2538), 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, + [223236] = 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(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, + 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, + [223300] = 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(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, + 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, + [223364] = 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(2463), 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(2465), 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, + [223428] = 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(189), 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(191), 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, + [223492] = 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(2439), 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(2441), 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, + [223556] = 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, + 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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_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, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(191), 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(189), 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, + [223694] = 4, + STATE(3074), 1, + sym_dictionary, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(217), 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, + [223756] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2895), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2570), 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(2572), 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, + [223818] = 5, + ACTIONS(666), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2453), 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(2451), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2449), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2467), 20, + anon_sym_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_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(2469), 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, + [223954] = 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(2457), 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(2455), 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, + [224020] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 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(3305), 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, + [224080] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 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(3299), 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, + [224140] = 5, + ACTIONS(666), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 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, + 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, + [224204] = 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, + 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, + 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(3178), 1, + sym_argument_list, + STATE(3380), 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(3830), 3, + anon_sym_in, + 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(2367), 7, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + 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, + [224398] = 5, + ACTIONS(666), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2461), 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(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, + [224462] = 5, + ACTIONS(666), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2461), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2465), 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(2463), 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, + [224590] = 6, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3824), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2445), 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(2443), 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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + 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_DASH_GT, + 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, + [224756] = 6, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3824), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 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_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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [224822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3293), 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(3295), 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, + [224882] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(3191), 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, + [224942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3189), 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(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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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, + 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(3291), 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, + [225062] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + ACTIONS(3183), 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, + [225122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + 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(3179), 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, + [225182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3177), 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(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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [225242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3173), 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(3171), 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, + [225302] = 3, + 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, + 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, + 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, + [225362] = 6, + ACTIONS(3968), 1, + anon_sym_DOT, + ACTIONS(3971), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2895), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 23, + 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(2545), 24, + sym__newline, + sym_string_start, + anon_sym_COMMA, + 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, + [225428] = 5, + 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, + 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(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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + 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_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, + 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, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + 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), 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, + [225570] = 5, + ACTIONS(3974), 1, + anon_sym_PIPE, + STATE(2898), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 23, + 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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, + [225634] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 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(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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [225694] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3155), 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(3153), 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, + [225754] = 3, + 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, + 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, + [225814] = 3, + 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, + 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, + [225874] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + 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(3113), 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, + [225934] = 4, + STATE(2857), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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(2483), 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, + [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, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 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(2518), 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, + [226070] = 5, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2453), 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(2451), 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, + [226134] = 6, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3824), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2457), 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(2455), 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_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [226200] = 5, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2461), 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(2459), 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, + [226264] = 5, + ACTIONS(3977), 1, + anon_sym_EQ, + STATE(2857), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2562), 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(2560), 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, + [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, + 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(2518), 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, + [226402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3059), 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(3057), 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, + [226462] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3047), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [226522] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3047), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [226582] = 5, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2461), 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(2459), 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, + [226646] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3071), 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(3069), 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, + [226706] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 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(3073), 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, + [226766] = 12, + 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(3928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3936), 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, + anon_sym_LT_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), 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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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(2562), 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, + [226908] = 17, + 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(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(2520), 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, + 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, + 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, + 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, + 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_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, + [227082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3281), 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(3283), 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, + [227142] = 5, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2465), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [227206] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 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(3095), 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, + [227266] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 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(3279), 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, + [227326] = 4, + ACTIONS(3981), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 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(2526), 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, + [227388] = 4, + ACTIONS(3983), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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(2483), 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, + [227450] = 5, + ACTIONS(3195), 1, + anon_sym_in, + ACTIONS(3197), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 23, + 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_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), 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, + [227514] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 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(3275), 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, + [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, + 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(2520), 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_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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [227658] = 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(2524), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, + [227756] = 6, + ACTIONS(3985), 1, + anon_sym_DOT, + ACTIONS(3988), 1, + anon_sym_QMARK_DOT, + STATE(2931), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2555), 24, + sym__newline, + sym_string_start, + anon_sym_COMMA, + 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, + [227822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3111), 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(3109), 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, + [227882] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3127), 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(3125), 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, + [227942] = 14, + 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, + 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_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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [228024] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3139), 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(3137), 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, + [228084] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3147), 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(3145), 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, + [228144] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [228304] = 5, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(191), 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(189), 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, + [228368] = 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, + 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_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, + [228468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 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(3255), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2576), 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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), 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, + [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, + 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(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), 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, + [228674] = 7, + 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(2479), 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_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(2481), 23, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2355), 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, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2357), 23, + sym__newline, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, + [228816] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 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(3043), 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, + [228876] = 5, + ACTIONS(630), 1, + anon_sym_if, + 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, + 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, + [228940] = 9, + ACTIONS(630), 1, + anon_sym_if, + ACTIONS(3820), 1, + anon_sym_and, + ACTIONS(3824), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 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, + 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(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), 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 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(3161), 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, + [229072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 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(3141), 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, + [229132] = 5, + ACTIONS(3993), 1, + anon_sym_PIPE, + STATE(2951), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2507), 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_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), 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, + [229196] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [229256] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 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(3135), 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, + [229316] = 4, + ACTIONS(3996), 1, + anon_sym_DASH_GT, + 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, + 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(3067), 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, + [229438] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3165), 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(3167), 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, + [229498] = 4, + ACTIONS(3998), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 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_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(2526), 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, + [229560] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 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(3063), 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, + [229620] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2885), 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, + [229680] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [229740] = 4, + STATE(2951), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2566), 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(2568), 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, + [229802] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3137), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3139), 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, + [229861] = 4, + STATE(2785), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2912), 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(2914), 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, + [229922] = 4, + ACTIONS(3979), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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(2562), 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, + [229983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 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(2948), 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, + [230042] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3125), 2, + 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_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, + [230101] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3109), 2, + 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, + 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, + [230160] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 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(2930), 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, + [230219] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2922), 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(2924), 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, + [230278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 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(2555), 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, + [230337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 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(2944), 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, + [230396] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2934), 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(2936), 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, + [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, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2481), 24, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [230522] = 4, + STATE(2996), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + [230583] = 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(2465), 22, + 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_and, + anon_sym_or, + 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_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, + [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, + 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_and, + anon_sym_or, + 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, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [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_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_and, + anon_sym_or, + 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_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [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, + 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_and, + anon_sym_or, + 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(2451), 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, + [230839] = 4, + STATE(2996), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + [230900] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3097), 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, + [230959] = 8, + ACTIONS(4009), 1, + anon_sym_not, + ACTIONS(4015), 1, + anon_sym_is, + STATE(2981), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4006), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4012), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2861), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 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(2526), 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, + [231087] = 4, + STATE(2857), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 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(2912), 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, + [231148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 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(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, + [231207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 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(2483), 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, + [231266] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 2, + 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, + 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, + [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, + 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_and, + anon_sym_or, + 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(2455), 24, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [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, + 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_and, + anon_sym_or, + 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_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, + [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, + 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, + 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, + [231516] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2950), 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(2952), 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, + [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, + 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_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_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, + [231735] = 4, + STATE(3177), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [231796] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3043), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3041), 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, + [231855] = 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(191), 22, + 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_and, + anon_sym_or, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + 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_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, + 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, + 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_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_QMARK_LBRACK, + sym_float, + [231987] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3069), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3071), 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, + [232046] = 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(2441), 22, + 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_and, + anon_sym_or, + 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, + 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, + [232109] = 5, + ACTIONS(4046), 1, + anon_sym_EQ, + STATE(2403), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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(2562), 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, + [232172] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(217), 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, + [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, + 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, + 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_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, + [232328] = 4, + STATE(2996), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 2, + 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_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, + [232448] = 4, + STATE(2996), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2859), 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(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, + [232509] = 4, + STATE(3379), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [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, + sym_comment, + sym_line_continuation, + ACTIONS(2576), 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(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, + sym_integer, + 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, + 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, + 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_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, + [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_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, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [232835] = 5, + ACTIONS(4056), 1, + anon_sym_in, + ACTIONS(4058), 1, + anon_sym_not, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(217), 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, + 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, + [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, + 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(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, + 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_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, + [232993] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2934), 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(2936), 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, + [233052] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [233111] = 4, + ACTIONS(3964), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [233172] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 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(2944), 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, + [233231] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 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(2948), 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, + [233290] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 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(2930), 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, + [233349] = 4, + STATE(3002), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [233410] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3045), 2, + 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_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, + [233469] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3057), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3059), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 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), 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, + [233601] = 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, + 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, + [233660] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3145), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3147), 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, + [233719] = 4, + STATE(3395), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [233780] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3149), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3151), 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, + [233839] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3157), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3159), 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, + [233898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2950), 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(2952), 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, + [233957] = 4, + STATE(3200), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [234018] = 4, + STATE(3399), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [234079] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3113), 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_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, + [234138] = 4, + STATE(2981), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [234199] = 4, + STATE(2981), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [234260] = 4, + STATE(2981), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [234321] = 4, + STATE(2981), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [234382] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3163), 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, + [234441] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3141), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3143), 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, + [234500] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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_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, + [234559] = 4, + STATE(2961), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2912), 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(2914), 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, + [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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [234701] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3187), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3189), 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, + [234760] = 4, + STATE(3047), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + 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_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, + 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(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_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_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, + [234890] = 4, + STATE(3032), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [234951] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 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(2883), 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, + [235010] = 4, + ACTIONS(3977), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2562), 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(2560), 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, + [235071] = 4, + STATE(3041), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [235132] = 4, + STATE(3041), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [235193] = 4, + STATE(3041), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [235254] = 4, + STATE(3041), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [235315] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3131), 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, + [235374] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3129), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3131), 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, + [235433] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(217), 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, + [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, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 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), 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, + [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, + 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(2518), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [235642] = 9, + 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(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, + 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(2469), 12, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + ACTIONS(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, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(217), 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, + [235772] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3201), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3203), 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, + [235831] = 5, + ACTIONS(4056), 1, + anon_sym_in, + ACTIONS(4072), 1, + anon_sym_not, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(221), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(217), 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, + 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, + [235894] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, + [235953] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3237), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3239), 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, + [236012] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3079), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3077), 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, + [236071] = 16, + 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(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(2520), 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(2518), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [236156] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3153), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3155), 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, + [236215] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(2365), 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, + [236274] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 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(2887), 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, + [236333] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3257), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3259), 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, + [236392] = 13, + 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(2520), 16, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2518), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [236471] = 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, + 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, + [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, + 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, + ACTIONS(217), 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, + [236593] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2898), 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(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, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3303), 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, + [236711] = 9, + ACTIONS(2447), 1, + anon_sym_QMARK_DOT, + 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), 3, + anon_sym_DOT, + anon_sym_as, + anon_sym_or, + ACTIONS(2467), 18, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2469), 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, + [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, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(2447), 24, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [236849] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + 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, + 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, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3293), 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, + [237028] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3291), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3289), 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, + [237087] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3285), 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, + [237146] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 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(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, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3283), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3281), 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, + [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, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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_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, + [237396] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3279), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3277), 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, + [237455] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2898), 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(2900), 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, + [237514] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 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(2883), 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, + [237573] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3275), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3273), 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, + [237632] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3253), 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, + [237691] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3067), 2, + 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_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, + [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, + 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, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(2518), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [237833] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3175), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3177), 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, + [237892] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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_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, + [237951] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3063), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3061), 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, + [238010] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 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(2887), 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, + [238069] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3053), 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, + [238128] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [238189] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3185), 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, + [238248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2922), 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(2924), 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, + [238307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 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(2940), 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, + [238366] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3051), 2, + sym_string_start, + anon_sym_LF, + ACTIONS(3049), 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, + [238425] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3167), 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, + 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, + [238484] = 3, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3135), 2, + 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_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, + 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, + [238602] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3177), 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(3175), 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, + [238718] = 7, + ACTIONS(2435), 1, + anon_sym_is, + STATE(1713), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [238784] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 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(3073), 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, + [238842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3111), 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(3109), 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, + [238900] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3127), 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(3125), 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, + [238958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3139), 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(3137), 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, + [239016] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3147), 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(3145), 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, + [239074] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 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(3149), 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, + [239132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3281), 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(3283), 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, + [239190] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 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(3279), 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, + [239248] = 7, + ACTIONS(2435), 1, + anon_sym_is, + STATE(1713), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [239314] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [239372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 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(3287), 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, + [239430] = 3, + 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, + 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, + 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, + [239488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 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(3079), 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, + [239546] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 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(3043), 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, + [239604] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 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(3161), 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, + [239662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 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(3141), 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, + [239720] = 3, + 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, + 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, + 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, + [239778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 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(3095), 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, + [239836] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3071), 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(3069), 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, + [239894] = 5, + ACTIONS(3960), 1, + anon_sym_in, + ACTIONS(4076), 1, + anon_sym_not, + 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, + 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(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, + 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, + [240072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 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(3063), 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, + [240130] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3053), 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(3055), 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, + [240188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3049), 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(3051), 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, + [240246] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 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(3135), 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, + [240304] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3115), 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(3113), 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, + [240362] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 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(3275), 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, + [240420] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 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(3043), 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, + [240478] = 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, + 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), 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, + [240536] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 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(3079), 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, + [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, + 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), 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, + 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(3153), 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, + [240710] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 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(3157), 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, + [240768] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3293), 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(3295), 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, + [240826] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3173), 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(3171), 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, + [240884] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3177), 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(3175), 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, + [240942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 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(3179), 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, + [241000] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3185), 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(3183), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3049), 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(3051), 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, + [241178] = 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_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(3187), 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, + [241236] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3193), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [241294] = 7, + ACTIONS(2435), 1, + anon_sym_is, + STATE(1713), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [241360] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3053), 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(3055), 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, + [241418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 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(3063), 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, + [241476] = 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, + 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, + [241534] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 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(3141), 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, + [241592] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3165), 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(3167), 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, + [241650] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 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(3161), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 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(3149), 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, + [241832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 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(3255), 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, + [241890] = 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, + [241956] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3147), 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(3145), 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, + [242014] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3139), 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(3137), 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, + [242072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3127), 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(3125), 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, + [242130] = 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, + [242196] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3111), 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(3109), 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, + [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, + 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(217), 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(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, + 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(3095), 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, + [242374] = 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, + [242440] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 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(3073), 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, + [242498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3071), 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(3069), 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, + [242556] = 5, + ACTIONS(4082), 1, + anon_sym_in, + ACTIONS(4084), 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_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, + [242618] = 3, + 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, + 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, + 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, + [242676] = 3, + 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, + 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, + 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, + [242734] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3059), 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(3057), 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, + [242792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3115), 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(3113), 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, + [242850] = 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, + 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), 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, + [242908] = 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, + 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), 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, + [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, + 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, + [243028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 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(3299), 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, + [243086] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 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(3305), 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, + [243144] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 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(3135), 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, + [243202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 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(3257), 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, + [243260] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [243318] = 4, + ACTIONS(3169), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(221), 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, + [243378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3155), 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(3153), 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, + [243436] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 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(3157), 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, + [243494] = 4, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(2859), 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, + [243554] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3173), 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(3171), 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, + [243612] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 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(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, + anon_sym_is, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4088), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4094), 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, + 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, + [243738] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3059), 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(3057), 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, + [243796] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 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(3275), 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, + [243854] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 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(3079), 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, + [243912] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 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(3179), 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, + [243970] = 4, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(2859), 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, + [244030] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3185), 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(3183), 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, + [244088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3281), 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(3283), 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, + [244146] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 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(3287), 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, + [244204] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3289), 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(3291), 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, + [244262] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3293), 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(3295), 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, + [244320] = 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_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(3187), 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, + [244378] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 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(3299), 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, + [244436] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 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(3305), 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, + [244494] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3193), 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(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, + [244552] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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, + 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(3237), 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, + [244668] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3235), 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(3233), 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, + [244726] = 5, + 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(217), 12, + 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_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(221), 20, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [244788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 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(2367), 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, + [244846] = 4, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(2859), 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, + [244906] = 4, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 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(2859), 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, + [244966] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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, + 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(3201), 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, + [245082] = 5, + 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(217), 12, + 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_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(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, + 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, + 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_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, + [245206] = 7, + ACTIONS(2435), 1, + anon_sym_is, + STATE(1713), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [245272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3235), 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(3233), 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, + [245330] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3239), 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(3237), 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, + [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, + 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(3079), 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, + [245508] = 4, + STATE(3421), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(221), 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, + [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, + 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_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, + [245630] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 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(3201), 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, + [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, + 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, + [245750] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [245808] = 4, + STATE(3208), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(221), 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, + [245868] = 4, + ACTIONS(4046), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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(2562), 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, + [245928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 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(2367), 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, + [245986] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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(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, + [246044] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3165), 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(3167), 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, + [246102] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 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(3257), 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, + [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, + 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, + [246222] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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), 33, + 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_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, + [246279] = 7, + ACTIONS(2771), 1, + anon_sym_is, + STATE(2020), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [246344] = 5, + ACTIONS(3597), 1, + anon_sym_in, + ACTIONS(4107), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(221), 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, + [246405] = 7, + ACTIONS(2771), 1, + anon_sym_is, + STATE(2020), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [246470] = 7, + ACTIONS(2771), 1, + anon_sym_is, + STATE(2020), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [246535] = 7, + ACTIONS(2789), 1, + anon_sym_is, + STATE(2006), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [246600] = 7, + ACTIONS(2789), 1, + anon_sym_is, + STATE(2006), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [246665] = 7, + ACTIONS(2805), 1, + anon_sym_is, + STATE(1982), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [246730] = 7, + ACTIONS(2789), 1, + anon_sym_is, + STATE(2006), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [246795] = 7, + ACTIONS(2805), 1, + anon_sym_is, + STATE(1982), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [246860] = 7, + ACTIONS(2789), 1, + anon_sym_is, + STATE(2006), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [246925] = 7, + ACTIONS(2805), 1, + anon_sym_is, + STATE(1982), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [246990] = 7, + ACTIONS(2805), 1, + anon_sym_is, + STATE(1982), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [247055] = 7, + ACTIONS(2813), 1, + anon_sym_is, + STATE(2001), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 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, + [247120] = 7, + ACTIONS(2813), 1, + anon_sym_is, + STATE(2001), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 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, + [247185] = 5, + ACTIONS(3597), 1, + anon_sym_in, + ACTIONS(4109), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(221), 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, + [247246] = 7, + ACTIONS(2813), 1, + anon_sym_is, + STATE(2001), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 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, + [247311] = 7, + ACTIONS(2813), 1, + anon_sym_is, + STATE(2001), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 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, + [247376] = 7, + ACTIONS(2771), 1, + anon_sym_is, + STATE(2020), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [247441] = 7, + ACTIONS(3039), 1, + anon_sym_is, + STATE(2120), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [247505] = 7, + ACTIONS(3039), 1, + anon_sym_is, + STATE(2120), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [247569] = 7, + ACTIONS(3107), 1, + anon_sym_is, + STATE(2121), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 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, + [247633] = 7, + ACTIONS(3107), 1, + anon_sym_is, + STATE(2121), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 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, + [247697] = 7, + ACTIONS(3039), 1, + anon_sym_is, + STATE(2120), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [247761] = 7, + ACTIONS(3107), 1, + anon_sym_is, + STATE(2121), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 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, + [247825] = 7, + ACTIONS(3107), 1, + anon_sym_is, + STATE(2121), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 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, + [247889] = 7, + ACTIONS(3039), 1, + anon_sym_is, + STATE(2120), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + 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, + [247953] = 7, + ACTIONS(3419), 1, + anon_sym_is, + STATE(2324), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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(2857), 21, + 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_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, + 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, + 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(2857), 21, + 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_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, + 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, + 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(2857), 21, + 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_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, + 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, + 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(2857), 21, + 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_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_is, + STATE(2362), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 21, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + 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, + [248257] = 7, + ACTIONS(3493), 1, + anon_sym_is, + STATE(2362), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 21, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + 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, + [248317] = 7, + ACTIONS(3493), 1, + anon_sym_is, + STATE(2362), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 21, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + 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, + [248377] = 7, + ACTIONS(3493), 1, + anon_sym_is, + STATE(2362), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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), 21, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + 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, + [248437] = 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(2459), 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(2461), 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, + [248492] = 6, + ACTIONS(766), 1, + anon_sym_if, + ACTIONS(4111), 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), 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(2445), 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, + [248549] = 6, + ACTIONS(758), 1, + anon_sym_if, + ACTIONS(4113), 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), 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(2449), 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, + [248606] = 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(189), 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(191), 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, + [248661] = 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(2459), 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(2461), 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, + [248716] = 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(2439), 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(2441), 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, + [248771] = 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, + 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, + 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, + [248826] = 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(2439), 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(2441), 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, + [248881] = 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(189), 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(191), 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, + [248936] = 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(2463), 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(2465), 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, + [248991] = 10, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(758), 1, + anon_sym_if, + ACTIONS(4113), 1, + anon_sym_PLUS, + ACTIONS(4115), 1, + anon_sym_and, + ACTIONS(4117), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(777), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 12, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2355), 22, + anon_sym_import, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [249056] = 7, + ACTIONS(3554), 1, + anon_sym_is, + STATE(2549), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_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_type, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [249115] = 7, + ACTIONS(3554), 1, + anon_sym_is, + STATE(2549), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_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_type, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [249174] = 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(2463), 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(2465), 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, + [249229] = 7, + ACTIONS(3554), 1, + anon_sym_is, + STATE(2549), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_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_type, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [249288] = 7, + ACTIONS(3554), 1, + anon_sym_is, + STATE(2549), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_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_type, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [249347] = 6, + ACTIONS(766), 1, + anon_sym_if, + ACTIONS(4111), 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), 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(2449), 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, + [249404] = 6, + ACTIONS(758), 1, + anon_sym_if, + ACTIONS(4113), 1, + anon_sym_PLUS, + 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, + 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(2445), 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, + [249461] = 6, + ACTIONS(766), 1, + anon_sym_if, + ACTIONS(4111), 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), 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(2457), 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, + [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, + 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, + 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, + 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, + 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, + 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, + [249636] = 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(2451), 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(2453), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 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(2355), 22, + anon_sym_import, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [249756] = 6, + ACTIONS(758), 1, + anon_sym_if, + ACTIONS(4113), 1, + anon_sym_PLUS, + 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, + 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(2457), 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, + [249813] = 9, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4121), 1, + sym_isMutableFlag, + ACTIONS(4123), 1, + anon_sym_QMARK_COLON, + STATE(3536), 1, + aux_sym_comparison_operator_repeat1, + STATE(3703), 1, + sym_dict_expr, + STATE(4412), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + 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, + 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, + 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, + 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, + [249994] = 6, + ACTIONS(4129), 1, + anon_sym_if, + ACTIONS(4131), 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), 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(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, + [250050] = 7, + ACTIONS(3651), 1, + anon_sym_is, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + 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, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2857), 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, + [250108] = 5, + ACTIONS(816), 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_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, + 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, + [250162] = 5, + ACTIONS(816), 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), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(191), 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, + [250216] = 5, + ACTIONS(816), 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_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, + 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, + [250270] = 6, + ACTIONS(4129), 1, + anon_sym_if, + ACTIONS(4131), 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), 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(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, + [250326] = 7, + ACTIONS(3709), 1, + anon_sym_is, + STATE(2760), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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(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_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, + 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, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2445), 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, + [250440] = 6, + ACTIONS(808), 1, + anon_sym_if, + ACTIONS(4133), 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), 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(2449), 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, + [250496] = 5, + ACTIONS(808), 1, + anon_sym_if, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2453), 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, + [250550] = 6, + ACTIONS(808), 1, + anon_sym_if, + ACTIONS(4133), 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_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(2457), 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, + [250606] = 7, + ACTIONS(3709), 1, + anon_sym_is, + STATE(2760), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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(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_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [250664] = 5, + ACTIONS(808), 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), 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, + [250718] = 5, + ACTIONS(808), 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), 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, + [250772] = 5, + ACTIONS(4129), 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), 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(2453), 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, + [250826] = 5, + ACTIONS(808), 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_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, + 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, + [250880] = 6, + ACTIONS(4129), 1, + anon_sym_if, + ACTIONS(4131), 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), 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(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, + [250936] = 6, + ACTIONS(4135), 1, + anon_sym_if, + ACTIONS(4137), 1, + anon_sym_PLUS, + 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, + 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(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, + [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, + 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, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2355), 22, + anon_sym_import, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [251056] = 6, + ACTIONS(4135), 1, + anon_sym_if, + ACTIONS(4137), 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), 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(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, + [251112] = 5, + ACTIONS(808), 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_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, + 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, + [251166] = 5, + ACTIONS(4129), 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), 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(2441), 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, + [251220] = 5, + ACTIONS(816), 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), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2441), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 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(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_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [251338] = 7, + ACTIONS(3651), 1, + anon_sym_is, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + 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, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2857), 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, + [251396] = 5, + ACTIONS(4135), 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, + 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, + 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, + [251450] = 6, + ACTIONS(4135), 1, + anon_sym_if, + ACTIONS(4137), 1, + anon_sym_PLUS, + 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, + 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(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, + [251506] = 5, + ACTIONS(4129), 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), 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(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, + [251560] = 5, + ACTIONS(4129), 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, + 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), 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, + [251614] = 7, + ACTIONS(3651), 1, + anon_sym_is, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + 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, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2857), 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, + [251672] = 7, + ACTIONS(3709), 1, + anon_sym_is, + STATE(2760), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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(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_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [251730] = 5, + ACTIONS(808), 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), 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(2441), 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, + [251784] = 5, + ACTIONS(4135), 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), 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(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, + [251838] = 5, + ACTIONS(4135), 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), 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(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, + [251892] = 7, + ACTIONS(3709), 1, + anon_sym_is, + STATE(2760), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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(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_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [251950] = 5, + ACTIONS(4135), 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), 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(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, + [252004] = 7, + ACTIONS(3651), 1, + anon_sym_is, + STATE(2729), 1, + aux_sym_comparison_operator_repeat1, + 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, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2857), 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, + [252062] = 10, + ACTIONS(197), 1, + anon_sym_DOT, + ACTIONS(199), 1, + anon_sym_QMARK_DOT, + ACTIONS(4135), 1, + anon_sym_if, + ACTIONS(4137), 1, + anon_sym_PLUS, + ACTIONS(4147), 1, + anon_sym_and, + ACTIONS(4149), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(777), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 12, + sym__newline, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(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_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [252126] = 5, + ACTIONS(4135), 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), 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(2441), 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, + [252180] = 6, + ACTIONS(816), 1, + anon_sym_if, + ACTIONS(4151), 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), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2445), 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, + [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, + 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, + 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(2355), 22, + anon_sym_import, + 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [252300] = 6, + ACTIONS(816), 1, + anon_sym_if, + ACTIONS(4151), 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_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(2449), 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, + [252356] = 5, + ACTIONS(4129), 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, + 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), 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, + [252410] = 5, + ACTIONS(4129), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 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(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, + [252464] = 5, + ACTIONS(4135), 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), 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(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, + [252518] = 5, + ACTIONS(816), 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), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2453), 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, + [252572] = 6, + ACTIONS(816), 1, + anon_sym_if, + ACTIONS(4151), 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), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2457), 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, + [252628] = 5, + ACTIONS(816), 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_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, + 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, + [252682] = 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, + 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, + 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, + [252737] = 10, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_if, + ACTIONS(4159), 1, + anon_sym_and, + ACTIONS(4161), 1, + anon_sym_or, + 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(2357), 11, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(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_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [252800] = 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(2439), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2441), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + 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_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, + [252914] = 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(189), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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, + 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_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, + [253028] = 12, + ACTIONS(213), 1, + anon_sym_DOT, + ACTIONS(215), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_if, + ACTIONS(4159), 1, + anon_sym_and, + ACTIONS(4161), 1, + anon_sym_or, + ACTIONS(4163), 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, + 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, + 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, + 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, + [253150] = 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, + 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, + 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, + [253205] = 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, + 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, + 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, + [253260] = 12, + ACTIONS(209), 1, + 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_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, + [253327] = 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(2443), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(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, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2453), 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, + [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_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), 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, + 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, + 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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, + 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, + [253604] = 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_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, + [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_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, + [253710] = 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(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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2453), 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, + [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_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(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, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2441), 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, + [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_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_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, + 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, + 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_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_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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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, + 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_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, + [254225] = 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(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, + 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, + [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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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, + 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_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, + [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, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [254573] = 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(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, + 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, + [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_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), 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_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, + 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, + 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_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, + 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, + [254909] = 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_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, + 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, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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, + [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, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4221), 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, + [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_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(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, + 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, + 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, + 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_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(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_is, + STATE(3041), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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, + 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, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4239), 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, + [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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4243), 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(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_is, + STATE(3041), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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, + 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, + [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, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4239), 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, + [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_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(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_is, + STATE(2996), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3926), 3, + anon_sym_in, + 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, + 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(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, + [255715] = 7, + ACTIONS(3948), 1, + anon_sym_is, + STATE(2996), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3926), 3, + anon_sym_in, + 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, + 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(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_is, + STATE(2996), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3926), 3, + anon_sym_in, + 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, + 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(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, + [255827] = 7, + ACTIONS(3948), 1, + anon_sym_is, + STATE(2996), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3926), 3, + anon_sym_in, + 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, + 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(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, + [255883] = 5, + 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, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2545), 28, + 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_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, + [255935] = 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(3885), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4250), 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(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, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [255993] = 7, + ACTIONS(3899), 1, + anon_sym_is, + STATE(3041), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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, + 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, + [256049] = 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_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, + 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, + [256105] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2367), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + ACTIONS(2365), 5, + 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_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, + [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_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(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_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [256215] = 7, + ACTIONS(3899), 1, + anon_sym_is, + STATE(3041), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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, + 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, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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, + [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, + 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, + anon_sym_PLUS, + ACTIONS(2365), 5, + 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_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, + [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, + 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, + [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_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(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, + [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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [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, + 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, + 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, + 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(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_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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4221), 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, + [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_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, + 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_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(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, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [257085] = 7, + ACTIONS(4054), 1, + anon_sym_is, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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, + 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4266), 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(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_is, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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, + 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_is, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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, + 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, + [257311] = 7, + ACTIONS(4054), 1, + anon_sym_is, + STATE(3188), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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, + 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, + [257367] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3397), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2570), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2572), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 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, + [257477] = 5, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2461), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2459), 29, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [257528] = 5, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2461), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2459), 29, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2467), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 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(2469), 19, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [257638] = 5, + 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, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2545), 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [257746] = 6, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(4282), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2457), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2455), 29, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [257799] = 5, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2453), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2451), 29, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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(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, + 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, + [257935] = 6, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(4282), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 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), 29, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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(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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 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, + anon_sym_is, + [258136] = 8, + ACTIONS(4287), 1, + sym_isMutableFlag, + ACTIONS(4289), 1, + anon_sym_QMARK_COLON, + STATE(3526), 1, + sym_dict_expr, + STATE(4412), 1, + aux_sym_dotted_name_repeat1, + STATE(4692), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [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, + 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, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 23, + 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_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2445), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2443), 29, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [258311] = 17, + 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(4313), 1, + anon_sym_AMP, + 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, + 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(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, + 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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [258445] = 16, + 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(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, + 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(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, + 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_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, + 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(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, + 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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [258648] = 7, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(4280), 1, + anon_sym_and, + ACTIONS(4282), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 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), 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_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, + [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, + 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, + 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, + 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, + anon_sym_is, + [258772] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [258821] = 8, + ACTIONS(4287), 1, + sym_isMutableFlag, + ACTIONS(4289), 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [258878] = 9, + ACTIONS(3760), 1, + anon_sym_LBRACE, + ACTIONS(3762), 1, + sym_isMutableFlag, + ACTIONS(3764), 1, + anon_sym_QMARK_COLON, + STATE(4165), 1, + aux_sym_comparison_operator_repeat1, + STATE(4379), 1, + sym_dict_expr, + STATE(4412), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [258937] = 6, + ACTIONS(4331), 1, + anon_sym_elif, + STATE(3449), 1, + aux_sym_if_statement_repeat1, + STATE(3582), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4334), 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(4329), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [259110] = 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 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, + anon_sym_is, + [259171] = 5, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2465), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2463), 29, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [259222] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3428), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2570), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2572), 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, + [259271] = 9, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(4280), 1, + anon_sym_and, + ACTIONS(4282), 1, + anon_sym_PLUS, + ACTIONS(4336), 1, + anon_sym_or, + 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(2355), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 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, + [259330] = 4, + STATE(3217), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2471), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2473), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2574), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2576), 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, + anon_sym_is, + [259440] = 8, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(4280), 1, + anon_sym_and, + ACTIONS(4282), 1, + anon_sym_PLUS, + 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, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2469), 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_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, + [259497] = 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(4705), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 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, + [259556] = 5, + ACTIONS(4338), 1, + anon_sym_LBRACE, + STATE(3656), 1, + sym_dictionary, + 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), 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, + [259607] = 6, + ACTIONS(4340), 1, + anon_sym_elif, + STATE(3461), 1, + aux_sym_if_statement_repeat1, + STATE(3645), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4334), 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(4329), 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, + [259660] = 5, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 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, + 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, + [259711] = 5, + ACTIONS(4278), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 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, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [259762] = 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(4682), 1, + aux_sym_comparison_operator_repeat1, + 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(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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2477), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [259896] = 23, + ACTIONS(2501), 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, + 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, + 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, + 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(2491), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + ACTIONS(2497), 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, + anon_sym_if, + ACTIONS(4280), 1, + anon_sym_and, + ACTIONS(4282), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2479), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 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_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, + [260125] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 7, + 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, + 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, + [260171] = 3, + 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, + 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2934), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2936), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 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(2461), 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, + [260313] = 5, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 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(2465), 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, + [260363] = 6, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(4343), 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), 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(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, + [260415] = 5, + ACTIONS(836), 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), 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(2453), 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, + [260465] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2940), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [260511] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3115), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3113), 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_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, + [260557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3047), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [260603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3079), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [260649] = 5, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 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(2461), 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, + [260699] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3157), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [260745] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3173), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3171), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [260791] = 5, + ACTIONS(836), 1, + anon_sym_if, + 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, + 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(191), 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, + [260841] = 5, + ACTIONS(836), 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), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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_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, + [260941] = 4, + STATE(3525), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2471), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2473), 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, + [260989] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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, + 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_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, + [261035] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2922), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2924), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261081] = 4, + STATE(3486), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2477), 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, + [261129] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3071), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [261175] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3175), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261221] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3073), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261267] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3179), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261359] = 6, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(4343), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 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, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [261457] = 4, + STATE(3530), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2485), 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, + [261505] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3111), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [261551] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3127), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [261597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3139), 7, + 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, + 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3149), 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_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, + [261735] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3149), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261781] = 4, + ACTIONS(4349), 1, + anon_sym_DASH_GT, + ACTIONS(3), 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), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [261829] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3059), 7, + 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [261921] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3161), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_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, + 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), 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, + [262015] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2894), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2896), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262061] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [262107] = 6, + ACTIONS(836), 1, + anon_sym_if, + ACTIONS(4343), 1, + anon_sym_PLUS, + 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, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 27, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262217] = 4, + STATE(3530), 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), 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, + [262265] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3065), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3067), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262311] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3063), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262357] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3055), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262403] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3049), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3051), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262449] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3043), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262495] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3079), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262541] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2887), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262587] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2944), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3135), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262679] = 4, + STATE(3530), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2534), 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, + [262727] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3047), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [262773] = 5, + STATE(3525), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4351), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2550), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2555), 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_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, + [262823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262869] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3255), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262915] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2948), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [262961] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3275), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263007] = 4, + STATE(3564), 1, + aux_sym_union_type_repeat1, + 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), 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, + [263055] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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_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, + [263101] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3305), 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_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, + [263147] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3281), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [263193] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [263239] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [263285] = 4, + STATE(3553), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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), 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, + [263333] = 4, + STATE(3553), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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), 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, + [263381] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263427] = 4, + STATE(3553), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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), 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, + [263475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3193), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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_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, + [263521] = 4, + STATE(3553), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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), 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, + [263569] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2367), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263615] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3291), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263661] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3293), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3295), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263707] = 4, + STATE(3530), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 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, + [263755] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2930), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263801] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [263847] = 4, + ACTIONS(4354), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2485), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263895] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3299), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [263941] = 5, + ACTIONS(4356), 1, + anon_sym_EQ, + STATE(3530), 1, + aux_sym_union_type_repeat1, + 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), 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, + [263991] = 4, + STATE(3530), 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), 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, + [264039] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3305), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4364), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2861), 4, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(4358), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2863), 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_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK_LBRACK, + [264141] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + 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), 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, + [264189] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3113), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264235] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3165), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3167), 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_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, + [264281] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 7, + anon_sym_EQ, + 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264327] = 4, + STATE(3539), 1, + aux_sym_comparison_operator_repeat1, + 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), 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, + [264375] = 4, + ACTIONS(4370), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2512), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2514), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_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, + [264469] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 7, + anon_sym_EQ, + 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264515] = 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(3153), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264561] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3233), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_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, + 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), 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264657] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2950), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2952), 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, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [264749] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3053), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3063), 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, + [264888] = 5, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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), 29, + 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_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, + [264937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3177), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + 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_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, + [264982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [265084] = 5, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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), 29, + 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_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, + [265133] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3155), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_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, + [265178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3129), 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, + [265223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3049), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3051), 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, + [265268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4381), 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(4379), 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, + [265313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3043), 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, + [265358] = 5, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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), 29, + 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_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, + [265407] = 5, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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), 29, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3129), 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, + [265546] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3079), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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), 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, + [265689] = 6, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(4393), 1, + anon_sym_PLUS, + 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, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 28, + 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_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [265740] = 6, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(4393), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2445), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2443), 28, + 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_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [265791] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3059), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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_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, + [265836] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4387), 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(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, + [265881] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2948), 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, + [265926] = 5, + ACTIONS(4395), 1, + anon_sym_in, + ACTIONS(4397), 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), 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_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [265975] = 6, + ACTIONS(4399), 1, + anon_sym_if, + ACTIONS(4401), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2445), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2443), 27, + anon_sym_DOT, + anon_sym_as, + 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, + [266026] = 6, + ACTIONS(4399), 1, + anon_sym_if, + ACTIONS(4401), 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), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 27, + anon_sym_DOT, + anon_sym_as, + 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, + [266077] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2944), 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, + [266122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2940), 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, + [266167] = 5, + ACTIONS(4399), 1, + anon_sym_if, + 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, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2451), 27, + anon_sym_DOT, + anon_sym_as, + 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, + [266216] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2934), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2936), 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, + [266261] = 5, + ACTIONS(4345), 1, + anon_sym_in, + ACTIONS(4347), 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), 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_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [266310] = 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_QMARK_LBRACK, + STATE(3552), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2574), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2576), 23, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + 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, + 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, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3135), 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, + [266473] = 6, + ACTIONS(4399), 1, + anon_sym_if, + ACTIONS(4401), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2457), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2455), 27, + anon_sym_DOT, + anon_sym_as, + 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, + [266524] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3161), 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, + [266569] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3065), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3067), 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, + [266614] = 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, + [266659] = 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, + 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(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_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_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2461), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2459), 27, + anon_sym_DOT, + anon_sym_as, + 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, + [266836] = 5, + ACTIONS(4441), 1, + anon_sym_PIPE, + STATE(3610), 1, + aux_sym_union_type_repeat1, + 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), 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, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [266942] = 21, + ACTIONS(4325), 1, + anon_sym_not, + ACTIONS(4327), 1, + anon_sym_is, + 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, + STATE(3791), 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(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(2491), 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, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [267023] = 5, + ACTIONS(4399), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2461), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2459), 27, + anon_sym_DOT, + anon_sym_as, + 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, + [267072] = 5, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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), 29, + 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_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, + [267121] = 5, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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, + 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, + [267170] = 8, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(4391), 1, + anon_sym_and, + ACTIONS(4393), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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), 23, + 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_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, + [267225] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4474), 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(4472), 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, + [267270] = 5, + ACTIONS(4399), 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), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2463), 27, + anon_sym_DOT, + anon_sym_as, + 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, + [267319] = 21, + ACTIONS(4325), 1, + anon_sym_not, + ACTIONS(4327), 1, + anon_sym_is, + 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, + STATE(3791), 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(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(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, + 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, + 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, + [267445] = 4, + STATE(3669), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2534), 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, + [267492] = 4, + ACTIONS(4356), 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), 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, + [267539] = 4, + STATE(3669), 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), 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, + [267586] = 5, + ACTIONS(4399), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 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, + 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, + [267635] = 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(2439), 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(2441), 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, + [267684] = 5, + ACTIONS(4399), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2439), 27, + anon_sym_DOT, + anon_sym_as, + 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, + [267733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_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, + [267778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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_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, + [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_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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3255), 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, + [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, + 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), 18, + 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_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + 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, + [268122] = 16, + 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(4464), 1, + anon_sym_AMP, + 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, + 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), 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, + [268193] = 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(2479), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 26, + anon_sym_DOT, + anon_sym_as, + 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_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, + [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, + 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(4460), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 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, + 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, + [268309] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3275), 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, + [268354] = 4, + ACTIONS(4476), 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), 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, + 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, + [268401] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2887), 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, + [268446] = 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, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [268505] = 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, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [268564] = 8, + 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(2447), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2467), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2469), 22, + 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [268619] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3111), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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, + 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, + [268664] = 9, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(4391), 1, + anon_sym_and, + ACTIONS(4393), 1, + anon_sym_PLUS, + ACTIONS(4478), 1, + anon_sym_or, + 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, + ACTIONS(2355), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 24, + 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_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, + [268721] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4385), 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(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, + [268766] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4474), 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(4472), 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, + [268811] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + 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_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, + [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, + 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, + [268901] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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_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, + [268946] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3289), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3291), 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, + [268991] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3293), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3295), 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, + [269036] = 3, + ACTIONS(3), 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, + 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, + [269081] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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, + 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, + [269126] = 7, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(4391), 1, + anon_sym_and, + ACTIONS(4393), 1, + anon_sym_PLUS, + 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, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 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, + [269179] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2930), 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, + [269224] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3299), 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, + [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, + 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), 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, + [269399] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4480), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3659), 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(2545), 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_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, + [269448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3139), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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, + 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, + [269493] = 8, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(4391), 1, + anon_sym_and, + ACTIONS(4393), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2467), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 8, + anon_sym_DOT, + anon_sym_as, + 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_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, + [269548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3147), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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, + 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, + [269593] = 5, + ACTIONS(4483), 1, + anon_sym_LBRACE, + STATE(3549), 1, + sym_dictionary, + 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), 28, + 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_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, + [269642] = 4, + STATE(3669), 1, + aux_sym_union_type_repeat1, + 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), 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, + [269689] = 3, + 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), 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, + [269734] = 5, + STATE(3666), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4485), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2550), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2555), 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_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, + [269783] = 5, + ACTIONS(4488), 1, + anon_sym_EQ, + STATE(3669), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 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, + [269832] = 4, + ACTIONS(4490), 1, + anon_sym_DASH_GT, + 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), 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, + 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, + [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, + 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, + [269926] = 4, + ACTIONS(4492), 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), 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, + 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, + [269973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2367), 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, + [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, + 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), 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(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, + 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_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_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_if, + ACTIONS(4494), 1, + anon_sym_PLUS, + 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, + 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_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_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [270261] = 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(2451), 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(2453), 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, + [270310] = 21, + ACTIONS(4325), 1, + anon_sym_not, + ACTIONS(4327), 1, + anon_sym_is, + 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, + STATE(3791), 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(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(2524), 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, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [270391] = 3, + 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), 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, + [270436] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2894), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2896), 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, + [270481] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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, + 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, + [270526] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2898), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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, + 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, + [270571] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2922), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2924), 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, + [270616] = 4, + STATE(3686), 1, + aux_sym_dotted_name_repeat1, + 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), 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, + [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, + 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2473), 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, + [270755] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3193), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1588), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [270857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2555), 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, + [270902] = 6, + ACTIONS(844), 1, + anon_sym_if, + ACTIONS(4494), 1, + anon_sym_PLUS, + 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, + 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3185), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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_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, + [270998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3189), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_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, + [271043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4498), 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(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_not, + sym_integer, + sym_identifier, + sym_true, + 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, + 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), 17, + 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_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [271147] = 6, + ACTIONS(4375), 1, + anon_sym_if, + ACTIONS(4393), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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), 28, + 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_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [271198] = 23, + ACTIONS(2522), 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(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, + 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, + [271328] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3659), 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), 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, + [271375] = 3, + ACTIONS(3), 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, + 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, + [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_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [271487] = 5, + ACTIONS(4395), 1, + anon_sym_in, + ACTIONS(4508), 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), 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_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [271536] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2950), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2952), 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, + [271581] = 3, + 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, + 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, + [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, + sym_comment, + sym_line_continuation, + ACTIONS(2574), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2576), 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + 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, + 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, + 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_QMARK_DOT, + ACTIONS(4411), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(4423), 1, + anon_sym_PLUS, + ACTIONS(4425), 1, + 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_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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [271825] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3235), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + 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_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, + [271870] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3239), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2467), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 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(2469), 19, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [271972] = 17, + 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(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_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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [272045] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4502), 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(4500), 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, + [272090] = 12, + 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, + 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), 4, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 21, + 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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4381), 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(4379), 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, + [272283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3079), 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, + [272328] = 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_is, + STATE(3791), 1, + sym_argument_list, + STATE(4687), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + 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_is, + STATE(3791), 1, + sym_argument_list, + STATE(3809), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [272486] = 6, + ACTIONS(844), 1, + anon_sym_if, + ACTIONS(4494), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2288), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 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(2445), 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, + [272537] = 5, + ACTIONS(4518), 1, + anon_sym_LBRACE, + STATE(4073), 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), 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, + [272586] = 23, + ACTIONS(2489), 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(2491), 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, + [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_QMARK_LBRACK, + STATE(3552), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 23, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [272730] = 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_QMARK_LBRACK, + STATE(3552), 1, + sym_argument_list, + STATE(4730), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 23, + 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [272789] = 10, + 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, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 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, + [272847] = 4, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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, + 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_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, + [272893] = 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(2463), 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(2465), 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, + [272941] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [272987] = 4, + STATE(4690), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [273033] = 3, + ACTIONS(3), 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), 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, + [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, + 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, + 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, + [273157] = 8, + ACTIONS(4559), 1, + anon_sym_not, + ACTIONS(4565), 1, + anon_sym_is, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4562), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2861), 4, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(4556), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2863), 21, + 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_QMARK_LBRACK, + [273211] = 5, + ACTIONS(4568), 1, + anon_sym_if, + 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, + 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, + 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, + [273259] = 5, + ACTIONS(4568), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(191), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(189), 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2505), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2507), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [273355] = 5, + ACTIONS(4568), 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), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2463), 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [273403] = 5, + ACTIONS(4568), 1, + anon_sym_if, + ACTIONS(3), 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, + 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [273497] = 5, + ACTIONS(4568), 1, + anon_sym_if, + ACTIONS(3), 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, + 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [273545] = 6, + ACTIONS(4568), 1, + anon_sym_if, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2457), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2455), 26, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [273595] = 5, + ACTIONS(4568), 1, + anon_sym_if, + 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, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2451), 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [273643] = 4, + ACTIONS(2514), 1, + anon_sym_LF, + ACTIONS(4575), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2512), 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, + [273689] = 6, + ACTIONS(4568), 1, + anon_sym_if, + ACTIONS(4573), 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), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 26, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2445), 5, + anon_sym_STAR, + anon_sym_DASH, + 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_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [273789] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 5, + anon_sym_EQ, + anon_sym_STAR, + 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, + 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2574), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2576), 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [273891] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2930), 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, + [273935] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3115), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3113), 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_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [273979] = 4, + ACTIONS(4577), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2485), 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_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, + [274025] = 4, + ACTIONS(2568), 1, + anon_sym_LF, + STATE(3755), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2566), 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, + [274071] = 20, + ACTIONS(2495), 1, + anon_sym_not, + ACTIONS(2499), 1, + anon_sym_is, + ACTIONS(2524), 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(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(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, + 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, + [274149] = 4, + ACTIONS(2528), 1, + anon_sym_LF, + ACTIONS(4591), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2526), 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, + [274195] = 5, + ACTIONS(2562), 1, + anon_sym_LF, + ACTIONS(4593), 1, + anon_sym_EQ, + STATE(3748), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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, + [274243] = 4, + ACTIONS(4595), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2512), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2514), 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_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, + [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, + 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), 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(3), 2, + sym_comment, + sym_line_continuation, + STATE(2288), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 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(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_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_PIPE, + STATE(3755), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2505), 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, + anon_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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2887), 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, + [274479] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2555), 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, + [274523] = 4, + ACTIONS(2534), 1, + anon_sym_LF, + STATE(3748), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 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, + [274569] = 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(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), 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, + [274617] = 4, + ACTIONS(2538), 1, + anon_sym_LF, + STATE(3748), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 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, + [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, + 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(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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2550), 31, + 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_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, + [274791] = 4, + STATE(3776), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2534), 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, + [274837] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2948), 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, + [274881] = 4, + STATE(3776), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 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, + [274927] = 4, + ACTIONS(4605), 1, + anon_sym_DASH_GT, + ACTIONS(3), 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, + 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_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, + [274973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2944), 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, + [275017] = 4, + STATE(3776), 1, + aux_sym_union_type_repeat1, + 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, + [275063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2940), 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, + [275107] = 4, + STATE(3776), 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_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2507), 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, + [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, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2912), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2914), 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, + [275257] = 8, + ACTIONS(2447), 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(2449), 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2467), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [275311] = 4, + ACTIONS(2485), 1, + anon_sym_LF, + ACTIONS(4613), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 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, + [275357] = 6, + ACTIONS(2443), 1, + anon_sym_LF, + ACTIONS(4607), 1, + anon_sym_if, + 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(2445), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [275407] = 4, + STATE(3733), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2566), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2568), 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, + [275453] = 6, + ACTIONS(2447), 1, + anon_sym_LF, + ACTIONS(4607), 1, + anon_sym_if, + 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(2449), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [275503] = 8, + ACTIONS(4618), 1, + anon_sym_not, + ACTIONS(4624), 1, + anon_sym_is, + STATE(3778), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2861), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4621), 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, + ACTIONS(2863), 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_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, + anon_sym_LF, + STATE(3762), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2471), 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, + [275603] = 3, + ACTIONS(3), 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, + 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, + [275647] = 4, + STATE(4685), 1, + aux_sym_comparison_operator_repeat1, + 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), 28, + 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_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, + [275693] = 5, + ACTIONS(2545), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2540), 30, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [275741] = 5, + ACTIONS(2451), 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(2453), 31, + anon_sym_DOT, + anon_sym_as, + 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, + [275789] = 4, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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, + 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_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, + [275835] = 4, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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, + 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_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, + [275881] = 4, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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, + 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_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, + [275927] = 10, + 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, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 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, + [275985] = 4, + ACTIONS(2477), 1, + anon_sym_LF, + STATE(3779), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 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, + [276031] = 4, + ACTIONS(4488), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 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, + [276077] = 22, + 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(4534), 1, + anon_sym_STAR_STAR, + 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, + 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(2524), 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, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [276159] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3305), 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_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [276203] = 6, + ACTIONS(2455), 1, + anon_sym_LF, + ACTIONS(4607), 1, + anon_sym_if, + 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(2457), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [276253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2894), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2896), 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, + [276297] = 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, + anon_sym_DOT, + anon_sym_as, + 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, + [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, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [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, + 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, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [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, + anon_sym_DOT, + anon_sym_as, + 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, + [276501] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2898), 5, + anon_sym_EQ, + anon_sym_STAR, + 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, + 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, + [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, + 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_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, + 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [276655] = 5, + ACTIONS(2463), 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(2465), 31, + anon_sym_DOT, + anon_sym_as, + 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, + [276703] = 11, + 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, + sym_comment, + sym_line_continuation, + ACTIONS(4579), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2518), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [276821] = 4, + ACTIONS(2485), 1, + anon_sym_LF, + STATE(3748), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 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, + [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, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + 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(2447), 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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [276983] = 5, + ACTIONS(221), 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, + 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, + [277031] = 4, + ACTIONS(2572), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(3782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2570), 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, + [277077] = 4, + STATE(3778), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [277123] = 4, + STATE(3778), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [277169] = 5, + ACTIONS(189), 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(191), 31, + anon_sym_DOT, + anon_sym_as, + 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, + [277217] = 4, + STATE(3778), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [277263] = 4, + STATE(3778), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [277309] = 9, + ACTIONS(4568), 1, + anon_sym_if, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4630), 1, + anon_sym_and, + ACTIONS(4634), 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_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 22, + 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_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [277365] = 7, + ACTIONS(2447), 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(2449), 29, + anon_sym_DOT, + anon_sym_as, + 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_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, + [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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3165), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3167), 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_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [277567] = 5, + ACTIONS(2439), 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(2441), 31, + anon_sym_DOT, + anon_sym_as, + 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, + [277615] = 5, + ACTIONS(4636), 1, + anon_sym_EQ, + STATE(3847), 1, + aux_sym_union_type_repeat1, + 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_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_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, + [277663] = 9, + ACTIONS(2357), 1, + anon_sym_LF, + ACTIONS(4607), 1, + anon_sym_if, + ACTIONS(4609), 1, + anon_sym_and, + ACTIONS(4611), 1, + anon_sym_PLUS, + ACTIONS(4638), 1, + anon_sym_or, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(734), 2, + 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_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [277719] = 15, + 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(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(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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + [277787] = 7, + 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(2449), 5, + anon_sym_STAR, + anon_sym_DASH, + 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_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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), 18, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + 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_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_PIPE, + ACTIONS(4585), 1, + anon_sym_AMP, + ACTIONS(4587), 1, + anon_sym_CARET, + ACTIONS(4642), 1, + anon_sym_not, + ACTIONS(4644), 1, + anon_sym_is, + STATE(3866), 1, + sym_argument_list, + STATE(4694), 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(2365), 7, + 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, + 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), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + 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, + sym_comment, + sym_line_continuation, + ACTIONS(4581), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4579), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2518), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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_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(4538), 1, + anon_sym_PLUS, + ACTIONS(4540), 1, + anon_sym_DASH, + 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(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), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + 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, + 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_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, + [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_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, + 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, + 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(2449), 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, + [278355] = 4, + STATE(3786), 1, + aux_sym_comparison_operator_repeat1, + 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), 28, + 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_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, + [278401] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3149), 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_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [278445] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2922), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2924), 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, + [278489] = 4, + STATE(3810), 1, + aux_sym_comparison_operator_repeat1, + 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, + 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, + [278535] = 16, + 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(4538), 1, + anon_sym_PLUS, + ACTIONS(4540), 1, + anon_sym_DASH, + 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(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), 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, + 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, + [278605] = 4, + STATE(3847), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2534), 28, + 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_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, + [278651] = 15, + 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(4538), 1, + anon_sym_PLUS, + ACTIONS(4540), 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(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_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_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, + 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(4538), 1, + anon_sym_PLUS, + ACTIONS(4540), 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(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, + 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_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2538), 28, + 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_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, + [278831] = 19, + ACTIONS(2367), 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(4583), 1, + anon_sym_PIPE, + ACTIONS(4585), 1, + anon_sym_AMP, + ACTIONS(4587), 1, + anon_sym_CARET, + ACTIONS(4642), 1, + 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_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(2365), 7, + 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, + [278907] = 22, + 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(4534), 1, + anon_sym_STAR_STAR, + 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, + 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(2503), 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, + 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_not, + ACTIONS(2499), 1, + anon_sym_is, + ACTIONS(2503), 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(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_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, + [279067] = 22, + 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(4534), 1, + anon_sym_STAR_STAR, + 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, + 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_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, + [279149] = 4, + STATE(3847), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2483), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2485), 28, + 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_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, + [279195] = 4, + STATE(3847), 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), 28, + 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_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, + [279241] = 4, + STATE(3850), 1, + aux_sym_union_type_repeat1, + 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, + 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, + [279287] = 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(2451), 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(2453), 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, + [279335] = 4, + ACTIONS(2507), 1, + anon_sym_LF, + STATE(3748), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2505), 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, + [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_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_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, + 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, + 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_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, + [279473] = 6, + ACTIONS(780), 1, + anon_sym_if, + 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(2455), 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(2457), 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, + [279523] = 7, + 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(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, + 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_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, + 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, + 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, + [279623] = 5, + ACTIONS(1305), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2532), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 13, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2465), 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, + [279670] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4653), 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(4651), 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, + [279713] = 5, + ACTIONS(4655), 1, + anon_sym_PIPE, + STATE(3857), 1, + aux_sym_union_type_repeat1, + 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, + 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [279760] = 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, + 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, + [279803] = 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(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, + 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, + [279854] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4666), 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(4664), 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, + [279897] = 3, + ACTIONS(2930), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 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, + [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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + [280017] = 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, + 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, + [280060] = 5, + ACTIONS(1305), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2532), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 13, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2441), 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, + [280107] = 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, + 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, + [280150] = 3, + ACTIONS(3305), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 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, + [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_DOT, + anon_sym_as, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4702), 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(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, + sym_integer, + sym_identifier, + sym_true, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4706), 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(4704), 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, + [280389] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4708), 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(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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4744), 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(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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 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), 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_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4754), 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(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, + [280832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4758), 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(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, + [280875] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4762), 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(4764), 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, + [280918] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4766), 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(4768), 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, + [280961] = 6, + ACTIONS(1305), 1, + 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(2443), 12, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + 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, + [281010] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4772), 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(4774), 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, + [281053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4776), 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(4778), 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, + [281096] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4780), 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(4782), 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, + [281139] = 5, + ACTIONS(1305), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2532), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 13, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(191), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4784), 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(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, + [281317] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4788), 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(4790), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4798), 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(4800), 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, + [281585] = 4, + STATE(3973), 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, + 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4798), 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(4800), 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, + [281716] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4802), 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(4804), 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, + [281759] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4806), 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(4808), 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, + [281802] = 4, + STATE(4113), 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, + 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, + 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_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, + [281978] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4706), 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(4704), 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, + [282021] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4702), 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(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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [282064] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4666), 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(4664), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2532), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_DQUOTE, + 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, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + 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, + 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, + 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, + [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_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_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_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, + 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, + 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, + [282506] = 3, + ACTIONS(2944), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 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, + [282549] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4806), 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(4808), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4802), 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(4804), 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, + [282678] = 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, + 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, + [282721] = 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, + 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, + [282764] = 3, + ACTIONS(2948), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 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, + [282807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4788), 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(4790), 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, + [282850] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4780), 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(4782), 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, + [282893] = 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, + 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, + [282936] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4776), 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(4778), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4816), 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(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, + [283067] = 5, + ACTIONS(4820), 1, + anon_sym_in, + ACTIONS(4822), 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), 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_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, + [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_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, + [283159] = 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, + [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_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, + [283249] = 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, + 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, + [283292] = 3, + ACTIONS(3073), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 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, + [283335] = 6, + ACTIONS(1293), 1, + anon_sym_if, + ACTIONS(4752), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 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(2449), 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_then, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [283384] = 4, + STATE(3974), 1, + aux_sym_dotted_name_repeat1, + 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, + 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, + [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_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, + [283474] = 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, + 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, + [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_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_if, + 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, + 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, + [283611] = 5, + ACTIONS(1293), 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), 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(2453), 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, + [283658] = 6, + ACTIONS(1293), 1, + anon_sym_if, + ACTIONS(4752), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 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(2457), 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_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, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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, + [283752] = 5, + ACTIONS(4658), 1, + anon_sym_if, + 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, + 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, + [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_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, + [283842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4772), 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(4774), 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, + [283885] = 5, + ACTIONS(4345), 1, + anon_sym_in, + ACTIONS(4347), 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), 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_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, + [283932] = 5, + ACTIONS(1293), 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), 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(2461), 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, + [283979] = 3, + ACTIONS(2887), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 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, + [284022] = 5, + ACTIONS(1293), 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), 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(2461), 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, + [284069] = 5, + ACTIONS(4658), 1, + anon_sym_if, + 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, + 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, + [284116] = 5, + ACTIONS(1293), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 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(2465), 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, + [284163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4826), 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(4828), 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, + [284206] = 5, + ACTIONS(4658), 1, + anon_sym_if, + 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, + 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, + [284253] = 5, + ACTIONS(4658), 1, + anon_sym_if, + 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, + 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, + [284300] = 10, + ACTIONS(600), 1, + anon_sym_DOT, + ACTIONS(602), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, + anon_sym_if, + ACTIONS(4752), 1, + anon_sym_PLUS, + ACTIONS(4830), 1, + anon_sym_and, + ACTIONS(4832), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 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(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_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, + sym_comment, + sym_line_continuation, + ACTIONS(2950), 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, + [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_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_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, + 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, + 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, + [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_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, + [284539] = 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, + 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, + [284582] = 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(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, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_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, + 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, + 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_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_if, + 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, + 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, + [284725] = 5, + ACTIONS(1293), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 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(191), 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, + [284772] = 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, + 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, + [284815] = 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_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, + 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, + [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_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, + 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, + [284905] = 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_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, + 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, + [284950] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4766), 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(4768), 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, + [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, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [285042] = 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(2445), 4, + 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_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, + 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, + 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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2534), 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, + [285228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4762), 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(4764), 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, + [285271] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4840), 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(4842), 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, + [285314] = 4, + STATE(4113), 1, + aux_sym_union_type_repeat1, + 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), 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, + [285359] = 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), 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, + [285402] = 4, + STATE(3999), 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, + 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, + [285447] = 4, + STATE(4691), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 5, + anon_sym_STAR, + anon_sym_DASH, + 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_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, + [285492] = 4, + STATE(3897), 1, + aux_sym_dotted_name_repeat1, + 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, + 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, + [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, + 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, + 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, + 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, + sym__newline, + 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_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, + [285670] = 4, + ACTIONS(4852), 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [285758] = 4, + STATE(3999), 1, + aux_sym_union_type_repeat1, + 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, + 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, + [285803] = 3, + ACTIONS(3149), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 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, + [285846] = 4, + ACTIONS(4858), 1, + anon_sym_DASH_GT, + 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), 27, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [285891] = 5, + ACTIONS(4792), 1, + anon_sym_if, + 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, + anon_sym_LT, + anon_sym_GT, + ACTIONS(189), 27, + sym__newline, + 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_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, + 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(2493), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2524), 2, + sym__newline, + anon_sym_COMMA, + 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, + [286017] = 5, + ACTIONS(4860), 1, + anon_sym_EQ, + STATE(4113), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 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, + [286064] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4862), 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(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(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), 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, + [286152] = 3, + 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, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(4651), 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, + [286195] = 4, + ACTIONS(4866), 1, + anon_sym_DASH_GT, + 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), 27, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3079), 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, + [286283] = 4, + STATE(3857), 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), 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, + [286328] = 4, + ACTIONS(221), 1, + anon_sym_LF, + STATE(3931), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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, + [286373] = 4, + ACTIONS(4868), 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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + 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, + [286553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3065), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3067), 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, + [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, + 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, + 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, + [286725] = 5, + ACTIONS(4345), 1, + anon_sym_in, + ACTIONS(4870), 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_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, + [286772] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3063), 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, + [286815] = 5, + ACTIONS(4792), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 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, + sym__newline, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 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, + sym__newline, + 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_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, + [286995] = 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(2467), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 6, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2469), 19, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [287048] = 5, + 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2545), 26, + sym__newline, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [287095] = 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), 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, + [287138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3043), 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, + [287181] = 5, + ACTIONS(4820), 1, + anon_sym_in, + ACTIONS(4879), 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), 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_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, + [287228] = 5, + ACTIONS(1305), 1, + anon_sym_if, + 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, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 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, + sym__newline, + 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_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, + [287322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 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, + [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, + 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_PLUS, + anon_sym_DASH, + ACTIONS(4728), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [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, + 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_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_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 23, + sym__newline, + anon_sym_DOT, + anon_sym_as, + 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 23, + sym__newline, + anon_sym_DOT, + anon_sym_as, + 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, + [287607] = 4, + STATE(3968), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 5, + anon_sym_STAR, + anon_sym_DASH, + 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_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, + [287652] = 4, + STATE(5502), 1, + aux_sym_quant_target_repeat1, + 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), 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, + 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, + 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(4684), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 21, + sym__newline, + anon_sym_DOT, + anon_sym_as, + 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_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + 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, + 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_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_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [287825] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3079), 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, + [287868] = 6, + ACTIONS(4792), 1, + anon_sym_if, + 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(2457), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2455), 26, + sym__newline, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [287917] = 5, + ACTIONS(4792), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 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, + sym__newline, + 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_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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3129), 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, + [288050] = 4, + ACTIONS(2562), 1, + anon_sym_LF, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 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, + [288095] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3129), 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, + [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, + 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), 15, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + 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, + [288207] = 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), 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, + [288250] = 4, + ACTIONS(2914), 1, + anon_sym_LF, + STATE(3748), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2912), 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, + [288295] = 4, + STATE(4113), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2534), 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, + [288340] = 3, + ACTIONS(2936), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2934), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(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_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_LPAREN, + ACTIONS(4714), 1, + anon_sym_LBRACK, + ACTIONS(4720), 1, + 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_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), 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, + 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), 26, + sym__newline, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [288664] = 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(2479), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 25, + sym__newline, + 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_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, + [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, + 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(4728), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 4, + anon_sym_STAR, + 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_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 4, + anon_sym_STAR, + 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_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [288976] = 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, + 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_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_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + 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_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(4218), 1, + sym_argument_list, + STATE(4701), 1, + aux_sym_comparison_operator_repeat1, + 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, + [289145] = 3, + 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), 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, + [289188] = 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3135), 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, + [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, + 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + 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, + [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, + sym_comment, + sym_line_continuation, + ACTIONS(4893), 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), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK_LBRACK, + [289392] = 6, + ACTIONS(4792), 1, + anon_sym_if, + 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(2445), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2443), 26, + sym__newline, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [289441] = 3, + 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), 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, + [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, + 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), 17, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + 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, + [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, + 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(2520), 19, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + 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, + [289612] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4904), 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(4902), 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, + [289655] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4908), 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(4906), 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, + [289698] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4910), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4068), 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(2545), 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_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, + [289745] = 3, + 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), 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, + [289788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_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, + [289831] = 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(2467), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(2469), 19, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [289884] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4915), 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(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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3299), 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, + [289970] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4919), 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(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, + [290013] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4904), 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(4902), 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, + [290056] = 5, + STATE(4076), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4921), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2550), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2555), 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_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, + [290103] = 3, + ACTIONS(2896), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2894), 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, + [290146] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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_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, + [290189] = 8, + ACTIONS(4927), 1, + anon_sym_not, + ACTIONS(4933), 1, + anon_sym_is, + STATE(4079), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 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, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2863), 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, + [290242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4938), 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(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_LT, + anon_sym_GT, + 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, + 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, + [290328] = 5, + ACTIONS(4940), 1, + anon_sym_LBRACE, + STATE(4406), 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, + 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, + [290375] = 3, + ACTIONS(3), 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, + 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_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_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_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 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, + [290514] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4946), 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(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_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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [290600] = 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(2493), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2524), 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, + [290679] = 3, + ACTIONS(3), 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, + 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, + [290722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4952), 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(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_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2898), 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, + [290808] = 5, + ACTIONS(1305), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2532), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 13, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2461), 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, + [290855] = 3, + ACTIONS(2940), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 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, + [290898] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3293), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3295), 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, + [290941] = 3, + 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), 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, + [290984] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4952), 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(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, + [291027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4950), 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(4948), 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, + [291070] = 5, + ACTIONS(1305), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2532), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 13, + sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2461), 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, + [291117] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4889), 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(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, + [291160] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4946), 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(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, + [291203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4826), 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(4828), 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, + [291246] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4840), 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(4842), 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, + [291289] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4885), 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(4887), 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, + [291332] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4881), 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(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, + [291375] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 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_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, + [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, + 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, + [291461] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 4, + anon_sym_STAR, + anon_sym_SLASH, + 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, + 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, + [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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [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, + 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_STAR, + anon_sym_DASH, + 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_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, + [291694] = 4, + STATE(3776), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 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, + 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, + [291739] = 4, + STATE(3963), 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), 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, + [291784] = 3, + ACTIONS(3167), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3165), 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, + [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, + 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, + 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, + 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, + 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, + [292130] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3255), 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, + [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, + 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 22, + sym__newline, + anon_sym_as, + 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, + [292228] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3275), 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, + [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, + 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, + 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, + 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, + [292471] = 8, + ACTIONS(4963), 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, + 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, + 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, + [292565] = 3, + ACTIONS(3299), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 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, + [292607] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2930), 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, + [292649] = 3, + ACTIONS(3187), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3189), 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, + [292691] = 3, + ACTIONS(3), 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), 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, + [292733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2940), 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, + [292775] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2944), 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, + [292817] = 3, + 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), 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, + [292859] = 3, + ACTIONS(3191), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, + 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, + [292901] = 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), 29, + 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, + 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, + [292943] = 4, + STATE(4706), 1, + aux_sym_comparison_operator_repeat1, + 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, + [292987] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + 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_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, + [293031] = 3, + ACTIONS(3079), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 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, + [293073] = 5, + ACTIONS(4345), 1, + anon_sym_in, + ACTIONS(4972), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(221), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [293119] = 3, + ACTIONS(3043), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 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, + [293161] = 4, + STATE(4128), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [293205] = 3, + ACTIONS(3051), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3049), 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, + [293247] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3149), 29, + 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, + 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, + [293289] = 4, + STATE(4128), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [293333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3115), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3113), 29, + 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, + 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, + [293375] = 4, + STATE(4128), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [293419] = 4, + STATE(4201), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [293463] = 3, + ACTIONS(3287), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 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, + [293505] = 3, + ACTIONS(3055), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, + 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, + [293547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2898), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2900), 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, + [293589] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2922), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2924), 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, + [293631] = 3, + ACTIONS(3291), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3289), 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, + [293673] = 3, + ACTIONS(3095), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3097), 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, + [293715] = 3, + ACTIONS(3063), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 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, + [293757] = 3, + ACTIONS(3175), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3177), 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, + [293799] = 3, + ACTIONS(3067), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3065), 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, + [293841] = 3, + ACTIONS(221), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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, + [293883] = 3, + ACTIONS(3171), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3173), 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, + [293925] = 3, + ACTIONS(3157), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 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, + [293967] = 3, + ACTIONS(3283), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3281), 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, + [294009] = 5, + ACTIONS(221), 1, + anon_sym_LF, + ACTIONS(3195), 1, + anon_sym_in, + ACTIONS(3197), 1, + anon_sym_not, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [294099] = 3, + ACTIONS(3153), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, + 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, + [294141] = 3, + ACTIONS(3129), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 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, + [294183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2887), 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, + [294225] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2885), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2887), 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, + [294267] = 3, + ACTIONS(3279), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 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, + [294309] = 3, + ACTIONS(3129), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 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, + [294351] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2928), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2930), 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, + [294393] = 4, + STATE(4201), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [294437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2555), 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, + [294479] = 3, + ACTIONS(3057), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3059), 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, + [294521] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3151), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3149), 29, + 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, + 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, + [294563] = 4, + STATE(4201), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [294607] = 3, + ACTIONS(3), 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, + 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, + [294649] = 5, + ACTIONS(1335), 1, + anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2439), 2, + sym_string_start, + anon_sym_LF, + STATE(2754), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 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, + [294695] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2922), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2924), 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, + [294737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2948), 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, + [294779] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3115), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3113), 29, + 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, + 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, + [294821] = 3, + ACTIONS(3045), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3047), 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, + [294863] = 3, + ACTIONS(3275), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 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, + [294905] = 3, + ACTIONS(3), 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, + 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, + [294947] = 3, + ACTIONS(3045), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3047), 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, + [294989] = 5, + ACTIONS(4345), 1, + anon_sym_in, + ACTIONS(4974), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(221), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [295035] = 4, + ACTIONS(4942), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 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, + [295079] = 3, + ACTIONS(3069), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3071), 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, + [295121] = 4, + STATE(3999), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2912), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2914), 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, + [295165] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3305), 29, + 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, + 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, + [295207] = 3, + ACTIONS(2367), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2365), 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, + [295249] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2883), 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, + [295291] = 3, + ACTIONS(3237), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, + anon_sym_QMARK_LBRACK, + [295333] = 3, + ACTIONS(3233), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3235), 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, + [295375] = 4, + STATE(4201), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2550), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2555), 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, + [295517] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2894), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2896), 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, + [295559] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2898), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2900), 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, + [295601] = 8, + ACTIONS(4983), 1, + anon_sym_not, + ACTIONS(4989), 1, + anon_sym_is, + STATE(4201), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2861), 2, + 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK_LBRACK, + [295653] = 8, + ACTIONS(4399), 1, + anon_sym_if, + ACTIONS(4444), 1, + anon_sym_and, + ACTIONS(4992), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2467), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_COLON, + 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_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, + [295705] = 3, + ACTIONS(3135), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 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, + [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, + 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, + 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, + 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_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, + [295885] = 3, + ACTIONS(3141), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 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, + [295927] = 5, + ACTIONS(221), 1, + anon_sym_LF, + ACTIONS(4996), 1, + anon_sym_in, + ACTIONS(4998), 1, + anon_sym_not, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_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, + 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, + 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, + [296021] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3165), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3167), 29, + 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, + 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, + [296063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2894), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2896), 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, + [296105] = 3, + ACTIONS(3109), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3111), 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, + [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, + 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_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, + [296237] = 3, + ACTIONS(3179), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 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, + [296279] = 3, + ACTIONS(3161), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3163), 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, + [296321] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2948), 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, + [296363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3303), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3305), 29, + 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, + 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, + [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, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 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, + [296493] = 3, + ACTIONS(3137), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3139), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2883), 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, + [296631] = 4, + STATE(4147), 1, + aux_sym_comparison_operator_repeat1, + 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, + [296675] = 3, + ACTIONS(3145), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3147), 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, + [296717] = 4, + ACTIONS(4860), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 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, + [296761] = 5, + ACTIONS(1335), 1, + anon_sym_if, + ACTIONS(5), 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, + 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_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, + [296853] = 5, + ACTIONS(221), 1, + anon_sym_LF, + ACTIONS(4996), 1, + anon_sym_in, + ACTIONS(5004), 1, + anon_sym_not, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [296899] = 4, + STATE(4733), 1, + aux_sym_comparison_operator_repeat1, + 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, + [296943] = 3, + ACTIONS(3079), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 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, + [296985] = 3, + ACTIONS(3), 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), 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, + [297027] = 3, + ACTIONS(3255), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 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, + [297069] = 3, + ACTIONS(3257), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 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, + [297111] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2940), 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, + [297153] = 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), 29, + 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, + 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, + [297195] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2942), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2944), 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, + [297237] = 5, + ACTIONS(1335), 1, + anon_sym_if, + ACTIONS(5), 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, + 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, + [297283] = 3, + ACTIONS(221), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(217), 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, + [297325] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3165), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3167), 29, + 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, + 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, + [297367] = 4, + STATE(4113), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 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, + 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, + [297411] = 4, + STATE(4177), 1, + aux_sym_comparison_operator_repeat1, + 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_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, + [297455] = 3, + ACTIONS(3), 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, + 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, + [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, + 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, + 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_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + 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_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, + 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, + 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_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_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, + 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, + [297757] = 5, + ACTIONS(5028), 1, + anon_sym_in, + ACTIONS(5030), 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [297802] = 4, + STATE(4706), 1, + aux_sym_comparison_operator_repeat1, + 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), 27, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [297845] = 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), 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, + [297886] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3043), 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, + [297927] = 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), 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, + [297968] = 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), 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, + [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, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3279), 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, + [298097] = 8, + 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(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), 19, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [298148] = 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(2447), 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(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_LT, + anon_sym_GT, + ACTIONS(221), 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, + [298281] = 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), 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, + [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, + 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), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3135), 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, + [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, + 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), 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, + [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, + 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, + 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, + [298723] = 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(2459), 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(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_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3275), 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, + [298809] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3063), 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, + [298850] = 5, + ACTIONS(5048), 1, + anon_sym_EQ, + STATE(3847), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [298895] = 5, + ACTIONS(4345), 1, + anon_sym_in, + ACTIONS(4347), 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [298940] = 3, + ACTIONS(3), 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, + 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, + [298981] = 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(2459), 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(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, + [299026] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3065), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3067), 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, + [299067] = 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), 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, + [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, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(5054), 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(5050), 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, + [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, + 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 20, + anon_sym_as, + 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, + [299218] = 3, + 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, + 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, + [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, + 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, + 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, + [299334] = 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), 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, + [299375] = 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), 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, + [299416] = 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), 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, + [299457] = 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(2463), 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(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_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_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_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3079), 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, + [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, + 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), 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, + [299688] = 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_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, + [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_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [299782] = 5, + ACTIONS(4345), 1, + anon_sym_in, + ACTIONS(4347), 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, + [299827] = 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), 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, + [299868] = 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_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, + [299909] = 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), 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, + [299950] = 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), 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, + [299991] = 5, + ACTIONS(5028), 1, + anon_sym_in, + ACTIONS(5068), 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [300036] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3133), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3135), 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, + [300077] = 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), 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, + [300118] = 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, + 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, + [300159] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3253), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3255), 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, + [300200] = 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), 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, + [300241] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3279), 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, + [300282] = 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, + 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, + [300323] = 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), 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, + [300364] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3287), 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, + [300405] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3129), 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, + [300446] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3129), 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, + [300487] = 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, + 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, + [300562] = 3, + 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, + 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [300658] = 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2518), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2520), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + 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, + ACTIONS(3), 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(5012), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2520), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [300772] = 16, + 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(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(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), 13, + 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_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, + 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, + [300880] = 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(2443), 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, + 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, + [300927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3293), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3295), 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, + [300968] = 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, + sym_comment, + sym_line_continuation, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(5072), 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(5070), 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, + [301025] = 15, + 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(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(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), 14, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [301090] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, + 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, + [301131] = 3, + 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, + 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, + [301172] = 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(2443), 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(2445), 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, + [301219] = 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(189), 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(191), 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, + [301264] = 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), 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, + [301305] = 6, + ACTIONS(1359), 1, + anon_sym_if, + 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(2443), 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(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_DASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [301352] = 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), 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, + [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, + ACTIONS(3), 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(2520), 17, + 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, + [301454] = 6, + ACTIONS(1359), 1, + anon_sym_if, + 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(2447), 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(2449), 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, + [301501] = 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), 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, + [301542] = 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), 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, + [301583] = 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(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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3275), 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, + [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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3299), 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, + [301751] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3061), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3063), 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, + [301792] = 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(2447), 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(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, + [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, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 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(2453), 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, + [301929] = 6, + ACTIONS(5034), 1, + anon_sym_if, + 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(2445), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2443), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [301976] = 6, + ACTIONS(5034), 1, + anon_sym_if, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2447), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [302023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3185), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3183), 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, + [302064] = 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(2453), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2451), 25, + anon_sym_DOT, + anon_sym_as, + 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, + [302109] = 6, + ACTIONS(5034), 1, + anon_sym_if, + 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(2457), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2455), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [302156] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3157), 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, + [302197] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, + 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, + [302238] = 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(2461), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2459), 25, + anon_sym_DOT, + anon_sym_as, + 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, + [302283] = 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(189), 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(191), 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, + [302328] = 3, + 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, + 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, + [302369] = 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(2451), 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(2453), 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, + [302414] = 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), 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, + [302455] = 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(2461), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2459), 25, + anon_sym_DOT, + anon_sym_as, + 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, + [302500] = 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, + 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, + 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, + 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, + 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, + 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, + [302736] = 6, + ACTIONS(1359), 1, + anon_sym_if, + 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(2455), 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(2457), 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, + [302783] = 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(191), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(189), 25, + anon_sym_DOT, + anon_sym_as, + 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, + [302828] = 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(2441), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2439), 25, + anon_sym_DOT, + anon_sym_as, + 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, + [302873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3065), 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, + 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, + [302914] = 3, + 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, + 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, + [302955] = 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(2459), 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(2461), 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, + [303000] = 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(2455), 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, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2457), 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, + [303047] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3159), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, + 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, + [303088] = 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(2459), 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(2461), 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, + [303133] = 3, + 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, + 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, + [303174] = 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), 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, + [303215] = 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(2463), 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(2465), 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, + [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, + 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, + 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, + [303335] = 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, + 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, + [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, + 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), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [303431] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3129), 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, + [303472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3131), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3129), 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, + [303513] = 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), 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, + [303554] = 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), 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, + [303595] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3285), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, + 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, + [303636] = 5, + ACTIONS(5074), 1, + anon_sym_in, + ACTIONS(5078), 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, + [303681] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 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, + [303722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 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, + [303763] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3181), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3179), 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, + [303804] = 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), 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, + [303845] = 3, + 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, + 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, + [303886] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3185), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3183), 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, + [303927] = 3, + 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, + 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, + [303968] = 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(2451), 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(2453), 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, + [304013] = 3, + 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, + 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, + [304054] = 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(2455), 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(2457), 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, + [304101] = 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), 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, + [304142] = 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, + 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, + [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, + 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), 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, + [304228] = 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), 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, + [304269] = 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), 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, + [304310] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3293), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3295), 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, + [304351] = 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), 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, + [304392] = 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), 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, + [304433] = 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, + 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2481), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [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, + 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, + [304617] = 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, + 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, + [304658] = 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, + 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, + [304699] = 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), 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, + [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, + 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3095), 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, + [304826] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3297), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3299), 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, + [304867] = 4, + STATE(4413), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [304909] = 4, + STATE(4413), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [304951] = 4, + ACTIONS(5048), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2562), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [304993] = 4, + STATE(4413), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [305035] = 4, + STATE(4413), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2859), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + 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, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2861), 2, + 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK_LBRACK, + [305171] = 4, + STATE(4411), 1, + aux_sym_comparison_operator_repeat1, + 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, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [305213] = 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), 27, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [305253] = 5, + ACTIONS(4345), 1, + anon_sym_in, + ACTIONS(5094), 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), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [305296] = 4, + ACTIONS(5098), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5100), 12, + sym_string_start, + 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(5096), 13, + anon_sym_DOT, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [305333] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5106), 1, + anon_sym_RPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5365), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305389] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5126), 1, + anon_sym_RBRACE, + ACTIONS(5132), 1, + sym_float, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5579), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305445] = 14, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5136), 1, + anon_sym_COLON, + 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5463), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305501] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5601), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305557] = 14, + 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, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5493), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305613] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5154), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5701), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305669] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5156), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5699), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305725] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5158), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5464), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305781] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5549), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305837] = 14, + 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, + ACTIONS(5162), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5440), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305893] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5164), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5557), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [305949] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5166), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5610), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306005] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5168), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5636), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306061] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5170), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5354), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306117] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5172), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5597), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306173] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5180), 1, + anon_sym_RBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5681), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306229] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5188), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5479), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306285] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5190), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5590), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306341] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 12, + sym_string_start, + 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(5192), 13, + anon_sym_DOT, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [306375] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5194), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5509), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306431] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5196), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5668), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306487] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5533), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306543] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5200), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5443), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306599] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5202), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5685), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306655] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5204), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5660), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306711] = 14, + 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, + ACTIONS(5206), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5500), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306767] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5208), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5616), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306823] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5210), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5600), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306879] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5212), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5349), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306935] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5214), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5371), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [306991] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5216), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5352), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307047] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5218), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5357), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307103] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5220), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5374), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307159] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5222), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5342), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307215] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5224), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5442), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307271] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5226), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5563), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307327] = 14, + 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, + ACTIONS(5228), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5624), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307383] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5230), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5356), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307439] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5232), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5368), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307495] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5234), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5432), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307551] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5236), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5370), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307607] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5238), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5522), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307663] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5240), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5634), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307719] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5242), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5594), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307775] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5244), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5363), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307831] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5246), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5702), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307887] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5248), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5348), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307943] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5250), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5562), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [307999] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5252), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5455), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308055] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5254), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5375), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308111] = 14, + 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, + ACTIONS(5256), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5454), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308167] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5258), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5626), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308223] = 14, + 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, + ACTIONS(5260), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5606), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308279] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5262), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5345), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308335] = 14, + 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, + ACTIONS(5264), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5588), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308391] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5266), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5694), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308447] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5268), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5540), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308503] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5270), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5466), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308559] = 14, + 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, + ACTIONS(5272), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5618), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308615] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5274), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5355), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308671] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5276), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5698), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308727] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5278), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5353), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308783] = 14, + 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, + ACTIONS(5280), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5470), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308839] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5282), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5451), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308895] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5284), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5343), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [308951] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5286), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5569), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309007] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5288), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5622), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309063] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5290), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5351), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309119] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5292), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5495), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309175] = 14, + 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, + ACTIONS(5294), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5570), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309231] = 14, + 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, + ACTIONS(5296), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5552), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309287] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5298), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5487), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309343] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5300), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5366), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309399] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5302), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5521), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309455] = 14, + 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, + ACTIONS(5304), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5534), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309511] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5306), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5527), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309567] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5308), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5459), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309623] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5310), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5488), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309679] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5312), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5507), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309735] = 14, + 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, + ACTIONS(5314), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5516), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309791] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5316), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5449), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309847] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5318), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5670), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309903] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5320), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5358), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [309959] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5322), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5361), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310015] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5324), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5494), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310071] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5326), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5559), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310127] = 14, + 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, + ACTIONS(5328), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5655), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310183] = 14, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5405), 1, + sym_type, + STATE(5834), 1, + sym_schema_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310239] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5344), 1, + anon_sym_RBRACK, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5543), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310295] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5346), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5362), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310351] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5700), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310407] = 14, + 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, + ACTIONS(5350), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5480), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310463] = 14, + 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, + ACTIONS(5352), 1, + anon_sym_COLON, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5498), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310519] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5354), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5373), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310575] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5661), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310628] = 14, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5358), 1, + anon_sym_LPAREN, + ACTIONS(5360), 1, + anon_sym_LBRACK, + ACTIONS(5362), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + sym_float, + STATE(2394), 1, + sym_type, + STATE(2436), 1, + sym_dotted_name, + STATE(2438), 1, + sym_string, + STATE(2527), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5366), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5364), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2435), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310683] = 13, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2748), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310736] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5384), 1, + sym_identifier, + ACTIONS(5386), 1, + anon_sym_LPAREN, + STATE(3988), 1, + sym_type, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + 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, + sym_string_start, + ACTIONS(5388), 1, + sym_identifier, + ACTIONS(5390), 1, + anon_sym_LPAREN, + ACTIONS(5392), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + sym_float, + STATE(1930), 1, + sym_dotted_name, + STATE(1934), 1, + sym_string, + STATE(1959), 1, + sym_type, + STATE(2226), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5396), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1925), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310844] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5416), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310897] = 13, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5406), 1, + anon_sym_LPAREN, + ACTIONS(5408), 1, + anon_sym_LBRACK, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + sym_float, + STATE(1601), 1, + sym_type, + STATE(2018), 1, + sym_dotted_name, + STATE(2024), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5414), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5412), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2017), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [310950] = 13, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5420), 1, + anon_sym_LPAREN, + ACTIONS(5422), 1, + anon_sym_LBRACK, + ACTIONS(5424), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + sym_float, + STATE(2764), 1, + sym_type, + STATE(3012), 1, + sym_dotted_name, + STATE(3014), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5428), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5426), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3011), 7, + 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, + sym_string_start, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5432), 1, + sym_identifier, + ACTIONS(5434), 1, + anon_sym_LPAREN, + STATE(3623), 1, + sym_type, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311056] = 13, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_LPAREN, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5448), 1, + sym_float, + STATE(2800), 1, + sym_type, + STATE(2971), 1, + sym_string, + STATE(3097), 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), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311109] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5377), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311162] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5384), 1, + sym_identifier, + ACTIONS(5386), 1, + anon_sym_LPAREN, + STATE(3995), 1, + sym_type, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + 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, + sym_string_start, + ACTIONS(5450), 1, + sym_identifier, + ACTIONS(5452), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_LBRACE, + ACTIONS(5462), 1, + sym_float, + STATE(2750), 1, + sym_type, + STATE(2811), 1, + sym_dotted_name, + STATE(2812), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5460), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5458), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2809), 7, + 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, + sym_string_start, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5406), 1, + anon_sym_LPAREN, + ACTIONS(5408), 1, + anon_sym_LBRACK, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + sym_float, + STATE(1643), 1, + sym_type, + STATE(2018), 1, + sym_dotted_name, + STATE(2024), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5414), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5412), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2017), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311321] = 13, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(5388), 1, + sym_identifier, + ACTIONS(5390), 1, + anon_sym_LPAREN, + ACTIONS(5392), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + sym_float, + STATE(1930), 1, + sym_dotted_name, + STATE(1934), 1, + sym_string, + STATE(1961), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5396), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1925), 7, + 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, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5402), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311427] = 13, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(5464), 1, + sym_identifier, + ACTIONS(5466), 1, + anon_sym_LPAREN, + ACTIONS(5468), 1, + anon_sym_LBRACK, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(5476), 1, + sym_float, + STATE(3758), 1, + sym_type, + STATE(3916), 1, + sym_string, + STATE(4093), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5474), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5472), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4042), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311480] = 14, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5384), 1, + sym_identifier, + ACTIONS(5386), 1, + anon_sym_LPAREN, + STATE(4085), 1, + sym_type, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(4188), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311535] = 13, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(5478), 1, + sym_identifier, + ACTIONS(5480), 1, + anon_sym_LPAREN, + ACTIONS(5482), 1, + anon_sym_LBRACK, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + sym_float, + STATE(2284), 1, + sym_type, + STATE(2345), 1, + sym_dotted_name, + STATE(2346), 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5658), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311641] = 14, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5420), 1, + anon_sym_LPAREN, + ACTIONS(5422), 1, + anon_sym_LBRACK, + ACTIONS(5424), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + sym_float, + STATE(2851), 1, + sym_type, + STATE(3012), 1, + sym_dotted_name, + STATE(3013), 1, + sym_union_type, + STATE(3014), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5428), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5426), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3011), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311696] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5384), 1, + sym_identifier, + ACTIONS(5386), 1, + anon_sym_LPAREN, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(4190), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311749] = 13, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5420), 1, + anon_sym_LPAREN, + ACTIONS(5422), 1, + anon_sym_LBRACK, + ACTIONS(5424), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + sym_float, + STATE(3012), 1, + sym_dotted_name, + STATE(3014), 1, + sym_string, + STATE(3037), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5428), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5426), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3011), 7, + 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, + sym_string_start, + ACTIONS(5492), 1, + sym_identifier, + ACTIONS(5494), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LBRACK, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, + sym_float, + STATE(804), 1, + sym_type, + STATE(1667), 1, + sym_string, + STATE(1668), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5502), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5500), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1669), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311855] = 13, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5420), 1, + anon_sym_LPAREN, + ACTIONS(5422), 1, + anon_sym_LBRACK, + ACTIONS(5424), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + sym_float, + STATE(2770), 1, + sym_type, + STATE(3012), 1, + sym_dotted_name, + STATE(3014), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5428), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5426), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3011), 7, + 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, + 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5656), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [311961] = 13, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5506), 1, + sym_identifier, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3513), 1, + sym_type, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312014] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5427), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312067] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5654), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312120] = 13, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_LBRACK, + ACTIONS(5516), 1, + anon_sym_LBRACE, + ACTIONS(5522), 1, + sym_float, + STATE(2474), 1, + sym_type, + STATE(2717), 1, + sym_string, + STATE(2719), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5520), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5518), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2720), 7, + 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, + sym_string_start, + ACTIONS(5450), 1, + sym_identifier, + ACTIONS(5452), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_LBRACE, + ACTIONS(5462), 1, + sym_float, + STATE(2675), 1, + sym_type, + STATE(2811), 1, + sym_dotted_name, + STATE(2812), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5460), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5458), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2809), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312226] = 14, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(5492), 1, + sym_identifier, + ACTIONS(5494), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LBRACK, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, + sym_float, + STATE(786), 1, + sym_type, + STATE(1667), 1, + sym_string, + STATE(1668), 1, + sym_dotted_name, + STATE(1710), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5502), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5500), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1669), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312281] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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(3770), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312334] = 13, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(5388), 1, + sym_identifier, + ACTIONS(5390), 1, + anon_sym_LPAREN, + ACTIONS(5392), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + sym_float, + STATE(1622), 1, + sym_type, + STATE(1930), 1, + sym_dotted_name, + STATE(1934), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5396), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1925), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312387] = 13, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_LBRACK, + ACTIONS(5516), 1, + anon_sym_LBRACE, + ACTIONS(5522), 1, + sym_float, + STATE(2485), 1, + sym_type, + STATE(2717), 1, + sym_string, + STATE(2719), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5520), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5518), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2720), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312440] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5328), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + 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, + sym_string_start, + ACTIONS(5478), 1, + sym_identifier, + ACTIONS(5480), 1, + anon_sym_LPAREN, + ACTIONS(5482), 1, + anon_sym_LBRACK, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + sym_float, + STATE(2298), 1, + sym_type, + STATE(2345), 1, + sym_dotted_name, + STATE(2346), 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, + [312591] = 13, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5435), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312644] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5422), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + 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, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5409), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312750] = 13, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(5492), 1, + sym_identifier, + ACTIONS(5494), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LBRACK, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, + sym_float, + STATE(1667), 1, + sym_string, + STATE(1668), 1, + sym_dotted_name, + STATE(1711), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5502), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5500), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1669), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312803] = 13, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5406), 1, + anon_sym_LPAREN, + ACTIONS(5408), 1, + anon_sym_LBRACK, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + sym_float, + STATE(1634), 1, + sym_type, + STATE(2018), 1, + sym_dotted_name, + STATE(2024), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5414), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5412), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2017), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312856] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5534), 1, + sym_identifier, + ACTIONS(5536), 1, + anon_sym_LPAREN, + STATE(3902), 1, + sym_type, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312909] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + sym_float, + ACTIONS(5526), 1, + anon_sym_LPAREN, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5310), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [312962] = 13, + 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(771), 1, + sym_type, + STATE(1605), 1, + sym_dotted_name, + STATE(1606), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5548), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5546), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1604), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313015] = 13, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(5464), 1, + sym_identifier, + ACTIONS(5466), 1, + anon_sym_LPAREN, + ACTIONS(5468), 1, + anon_sym_LBRACK, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(5476), 1, + sym_float, + STATE(3849), 1, + sym_type, + STATE(3916), 1, + sym_string, + STATE(4093), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5474), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5472), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4042), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313068] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5677), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313121] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5410), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313174] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5630), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313227] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5639), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313280] = 13, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(5478), 1, + sym_identifier, + ACTIONS(5480), 1, + anon_sym_LPAREN, + ACTIONS(5482), 1, + anon_sym_LBRACK, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + sym_float, + STATE(2282), 1, + sym_type, + STATE(2345), 1, + sym_dotted_name, + STATE(2346), 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, + [313333] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + anon_sym_LPAREN, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5439), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313386] = 13, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5506), 1, + sym_identifier, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3545), 1, + sym_type, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313439] = 14, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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(4274), 1, + sym_type, + STATE(4409), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313494] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5407), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313547] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5425), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313600] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5432), 1, + sym_identifier, + ACTIONS(5434), 1, + anon_sym_LPAREN, + STATE(3664), 1, + sym_type, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313653] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5418), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313706] = 13, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_LPAREN, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5448), 1, + sym_float, + STATE(2808), 1, + sym_type, + STATE(2971), 1, + sym_string, + STATE(3097), 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), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313759] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5651), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313812] = 13, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5506), 1, + sym_identifier, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3551), 1, + sym_type, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313865] = 13, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(5388), 1, + sym_identifier, + ACTIONS(5390), 1, + anon_sym_LPAREN, + ACTIONS(5392), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + sym_float, + STATE(1620), 1, + sym_type, + STATE(1930), 1, + sym_dotted_name, + STATE(1934), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5396), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1925), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313918] = 13, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(5388), 1, + sym_identifier, + ACTIONS(5390), 1, + anon_sym_LPAREN, + ACTIONS(5392), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + sym_float, + STATE(1617), 1, + sym_type, + STATE(1930), 1, + sym_dotted_name, + STATE(1934), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5396), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1925), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [313971] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5314), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314024] = 13, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2742), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314077] = 14, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2741), 1, + sym_type, + STATE(2846), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314132] = 14, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5506), 1, + sym_identifier, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3550), 1, + sym_type, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(3622), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314187] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5396), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314240] = 13, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5472), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314293] = 13, + 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(769), 1, + sym_type, + STATE(1605), 1, + sym_dotted_name, + STATE(1606), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5548), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5546), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1604), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314346] = 14, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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(3820), 1, + sym_type, + STATE(3913), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314401] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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(3736), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314454] = 13, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(5464), 1, + sym_identifier, + ACTIONS(5466), 1, + anon_sym_LPAREN, + ACTIONS(5468), 1, + anon_sym_LBRACK, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(5476), 1, + sym_float, + STATE(3760), 1, + sym_type, + STATE(3916), 1, + sym_string, + STATE(4093), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5474), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5472), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4042), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314507] = 13, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(5464), 1, + sym_identifier, + ACTIONS(5466), 1, + anon_sym_LPAREN, + ACTIONS(5468), 1, + anon_sym_LBRACK, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(5476), 1, + sym_float, + STATE(3804), 1, + sym_type, + STATE(3916), 1, + sym_string, + STATE(4093), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5474), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5472), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4042), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314560] = 13, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_LPAREN, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5448), 1, + sym_float, + STATE(2825), 1, + sym_type, + STATE(2971), 1, + sym_string, + STATE(3097), 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), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314613] = 13, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + ACTIONS(5554), 1, + anon_sym_LPAREN, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2861), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314666] = 13, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(5492), 1, + sym_identifier, + ACTIONS(5494), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LBRACK, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, + sym_float, + STATE(801), 1, + sym_type, + STATE(1667), 1, + sym_string, + STATE(1668), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5502), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5500), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1669), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314719] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5647), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314772] = 13, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(5464), 1, + sym_identifier, + ACTIONS(5466), 1, + anon_sym_LPAREN, + ACTIONS(5468), 1, + anon_sym_LBRACK, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(5476), 1, + sym_float, + STATE(3916), 1, + sym_string, + STATE(4040), 1, + sym_type, + STATE(4093), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5474), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5472), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4042), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314825] = 13, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5506), 1, + sym_identifier, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3523), 1, + sym_type, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314878] = 14, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_LBRACK, + ACTIONS(5516), 1, + anon_sym_LBRACE, + ACTIONS(5522), 1, + sym_float, + STATE(2515), 1, + sym_type, + STATE(2717), 1, + sym_string, + STATE(2719), 1, + sym_dotted_name, + STATE(2731), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5520), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5518), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2720), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314933] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5534), 1, + sym_identifier, + ACTIONS(5536), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_type, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [314986] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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(4112), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315039] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5645), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315092] = 13, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(5478), 1, + sym_identifier, + ACTIONS(5480), 1, + anon_sym_LPAREN, + ACTIONS(5482), 1, + anon_sym_LBRACK, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + sym_float, + STATE(2300), 1, + sym_type, + STATE(2345), 1, + sym_dotted_name, + STATE(2346), 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, + [315145] = 13, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_LBRACK, + ACTIONS(5516), 1, + anon_sym_LBRACE, + ACTIONS(5522), 1, + sym_float, + STATE(2717), 1, + sym_string, + STATE(2719), 1, + sym_dotted_name, + STATE(2727), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5520), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5518), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2720), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315198] = 13, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(5450), 1, + sym_identifier, + ACTIONS(5452), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_LBRACE, + ACTIONS(5462), 1, + sym_float, + STATE(2718), 1, + sym_type, + STATE(2811), 1, + sym_dotted_name, + STATE(2812), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5460), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5458), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2809), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315251] = 13, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, + anon_sym_LPAREN, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5448), 1, + sym_float, + STATE(2834), 1, + sym_type, + STATE(2971), 1, + sym_string, + STATE(3097), 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), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315304] = 14, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5406), 1, + anon_sym_LPAREN, + ACTIONS(5408), 1, + anon_sym_LBRACK, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + sym_float, + STATE(1420), 1, + sym_type, + STATE(1915), 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, + sym_integer, + sym_true, + sym_false, + ACTIONS(5412), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2017), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315359] = 14, + ACTIONS(576), 1, + sym_string_start, + ACTIONS(5464), 1, + sym_identifier, + ACTIONS(5466), 1, + anon_sym_LPAREN, + ACTIONS(5468), 1, + anon_sym_LBRACK, + ACTIONS(5470), 1, + anon_sym_LBRACE, + ACTIONS(5476), 1, + sym_float, + STATE(3751), 1, + sym_type, + STATE(3916), 1, + sym_string, + STATE(4036), 1, + sym_union_type, + STATE(4093), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5474), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5472), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4042), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315414] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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(3846), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315467] = 13, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5358), 1, + anon_sym_LPAREN, + ACTIONS(5360), 1, + anon_sym_LBRACK, + ACTIONS(5362), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + sym_float, + STATE(2366), 1, + sym_type, + STATE(2436), 1, + sym_dotted_name, + STATE(2438), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5366), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5364), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2435), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315520] = 13, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5406), 1, + anon_sym_LPAREN, + ACTIONS(5408), 1, + anon_sym_LBRACK, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + sym_float, + STATE(1619), 1, + sym_type, + STATE(2018), 1, + sym_dotted_name, + STATE(2024), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5414), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5412), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2017), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315573] = 14, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(5492), 1, + sym_identifier, + ACTIONS(5494), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LBRACK, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, + sym_float, + STATE(1436), 1, + sym_type, + STATE(1667), 1, + sym_string, + STATE(1668), 1, + sym_dotted_name, + STATE(1926), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5502), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5500), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1669), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315628] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5432), 1, + sym_identifier, + ACTIONS(5434), 1, + anon_sym_LPAREN, + STATE(3658), 1, + sym_type, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315681] = 13, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5358), 1, + anon_sym_LPAREN, + ACTIONS(5360), 1, + anon_sym_LBRACK, + ACTIONS(5362), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + sym_float, + STATE(2330), 1, + sym_type, + STATE(2436), 1, + sym_dotted_name, + STATE(2438), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5366), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5364), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2435), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315734] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5178), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5432), 1, + sym_identifier, + ACTIONS(5434), 1, + anon_sym_LPAREN, + STATE(3621), 1, + sym_type, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315787] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5648), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315840] = 13, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(5450), 1, + sym_identifier, + ACTIONS(5452), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_LBRACE, + ACTIONS(5462), 1, + sym_float, + STATE(2698), 1, + sym_type, + STATE(2811), 1, + sym_dotted_name, + STATE(2812), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5460), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5458), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2809), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315893] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + sym_float, + ACTIONS(5526), 1, + anon_sym_LPAREN, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5278), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315946] = 13, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(5492), 1, + sym_identifier, + ACTIONS(5494), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LBRACK, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, + sym_float, + STATE(805), 1, + sym_type, + STATE(1667), 1, + sym_string, + STATE(1668), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5502), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5500), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1669), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [315999] = 13, + 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(772), 1, + sym_type, + STATE(1605), 1, + sym_dotted_name, + STATE(1606), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5548), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5546), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1604), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316052] = 13, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5358), 1, + anon_sym_LPAREN, + ACTIONS(5360), 1, + anon_sym_LBRACK, + ACTIONS(5362), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + sym_float, + STATE(2340), 1, + sym_type, + STATE(2436), 1, + sym_dotted_name, + STATE(2438), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5366), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5364), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2435), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316105] = 13, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5372), 1, + anon_sym_LPAREN, + ACTIONS(5374), 1, + anon_sym_LBRACK, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2746), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316158] = 13, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5406), 1, + anon_sym_LPAREN, + ACTIONS(5408), 1, + anon_sym_LBRACK, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + sym_float, + STATE(1933), 1, + sym_type, + STATE(2018), 1, + sym_dotted_name, + STATE(2024), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5414), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5412), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2017), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316211] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5534), 1, + sym_identifier, + ACTIONS(5536), 1, + anon_sym_LPAREN, + STATE(3912), 1, + sym_type, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316264] = 13, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_LBRACK, + ACTIONS(5516), 1, + anon_sym_LBRACE, + ACTIONS(5522), 1, + sym_float, + STATE(2467), 1, + sym_type, + STATE(2717), 1, + sym_string, + STATE(2719), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5520), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5518), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2720), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + 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, + anon_sym_LBRACK, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_float, + STATE(1573), 1, + sym_type, + STATE(1605), 1, + sym_dotted_name, + STATE(1606), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5548), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5546), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1604), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316370] = 14, + ACTIONS(153), 1, + sym_string_start, + ACTIONS(5404), 1, + sym_identifier, + ACTIONS(5406), 1, + anon_sym_LPAREN, + ACTIONS(5408), 1, + anon_sym_LBRACK, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + sym_float, + STATE(1877), 1, + sym_type, + STATE(2018), 1, + sym_dotted_name, + STATE(2024), 1, + sym_string, + STATE(2103), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5414), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5412), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2017), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316425] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5643), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316478] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5387), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316531] = 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(775), 1, + sym_type, + STATE(1574), 1, + sym_union_type, + STATE(1605), 1, + sym_dotted_name, + STATE(1606), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5548), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5546), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1604), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316586] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5404), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316639] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5334), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5534), 1, + sym_identifier, + ACTIONS(5536), 1, + anon_sym_LPAREN, + STATE(3978), 1, + sym_type, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316692] = 13, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5358), 1, + anon_sym_LPAREN, + ACTIONS(5360), 1, + anon_sym_LBRACK, + ACTIONS(5362), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + sym_float, + STATE(2349), 1, + sym_type, + STATE(2436), 1, + sym_dotted_name, + STATE(2438), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5366), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5364), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2435), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316745] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316798] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5384), 1, + sym_identifier, + ACTIONS(5386), 1, + anon_sym_LPAREN, + STATE(3980), 1, + sym_type, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316851] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5641), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316904] = 13, + ACTIONS(111), 1, + sym_string_start, + ACTIONS(5492), 1, + sym_identifier, + ACTIONS(5494), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LBRACK, + ACTIONS(5498), 1, + anon_sym_LBRACE, + ACTIONS(5504), 1, + sym_float, + STATE(797), 1, + sym_type, + STATE(1667), 1, + sym_string, + STATE(1668), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5502), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5500), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1669), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [316957] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + ACTIONS(5384), 1, + sym_identifier, + ACTIONS(5386), 1, + anon_sym_LPAREN, + STATE(3975), 1, + sym_type, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317010] = 13, + 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(770), 1, + sym_type, + STATE(1605), 1, + sym_dotted_name, + STATE(1606), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5548), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5546), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1604), 7, + 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, + sym_string_start, + ACTIONS(5122), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + ACTIONS(5506), 1, + sym_identifier, + ACTIONS(5508), 1, + anon_sym_LPAREN, + STATE(3497), 1, + sym_type, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317116] = 14, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(5450), 1, + sym_identifier, + ACTIONS(5452), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_LBRACE, + ACTIONS(5462), 1, + sym_float, + STATE(2758), 1, + sym_type, + STATE(2775), 1, + sym_union_type, + STATE(2811), 1, + sym_dotted_name, + STATE(2812), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5460), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5458), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2809), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317171] = 14, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5358), 1, + anon_sym_LPAREN, + ACTIONS(5360), 1, + anon_sym_LBRACK, + ACTIONS(5362), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + sym_float, + STATE(2436), 1, + sym_dotted_name, + STATE(2438), 1, + sym_string, + STATE(2999), 1, + sym_type, + STATE(3225), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5366), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5364), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2435), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317226] = 14, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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, + sym_type, + STATE(3937), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317281] = 13, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5420), 1, + anon_sym_LPAREN, + ACTIONS(5422), 1, + anon_sym_LBRACK, + ACTIONS(5424), 1, + anon_sym_LBRACE, + ACTIONS(5430), 1, + sym_float, + STATE(2787), 1, + sym_type, + STATE(3012), 1, + sym_dotted_name, + STATE(3014), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5428), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5426), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3011), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317334] = 14, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(5388), 1, + sym_identifier, + ACTIONS(5390), 1, + anon_sym_LPAREN, + ACTIONS(5392), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + sym_float, + STATE(1471), 1, + sym_type, + STATE(1930), 1, + sym_dotted_name, + STATE(1934), 1, + sym_string, + STATE(2041), 1, + sym_union_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5396), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1925), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317389] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, + anon_sym_LPAREN, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5382), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317442] = 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, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5631), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1687), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317495] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5178), 1, 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, - [129577] = 3, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5520), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1863), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317548] = 13, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5372), 1, anon_sym_LPAREN, + ACTIONS(5374), 1, 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, - [129619] = 3, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2744), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1837), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317601] = 13, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5440), 1, anon_sym_LBRACK, + ACTIONS(5442), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [129661] = 4, - STATE(1900), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5448), 1, + sym_float, + STATE(2963), 1, + sym_type, + STATE(2971), 1, + sym_string, + STATE(3097), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + 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), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317654] = 14, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5178), 1, 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, - [129705] = 3, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5432), 1, + sym_identifier, + ACTIONS(5434), 1, + anon_sym_LPAREN, + STATE(3667), 1, + sym_type, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(3789), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1667), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317709] = 13, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5374), 1, 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, - [129747] = 3, - ACTIONS(1843), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + ACTIONS(5554), 1, + anon_sym_LPAREN, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2983), 1, + sym_type, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317762] = 14, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5374), 1, 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, - [129789] = 3, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + ACTIONS(5554), 1, + anon_sym_LPAREN, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2909), 1, + sym_type, + STATE(3044), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1813), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317817] = 13, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, anon_sym_LPAREN, + ACTIONS(5122), 1, 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, - [129831] = 4, - STATE(2249), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5476), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317870] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5334), 1, 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, - [129875] = 3, - ACTIONS(1847), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5534), 1, + sym_identifier, + ACTIONS(5536), 1, + anon_sym_LPAREN, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(4241), 1, + sym_type, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317923] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, 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, - [129917] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2734), 1, - anon_sym_not, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 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(3840), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [317976] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5138), 1, anon_sym_LPAREN, + ACTIONS(5140), 1, anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [129963] = 3, + ACTIONS(5148), 1, + sym_float, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5637), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1805), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318029] = 13, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, anon_sym_LPAREN, + ACTIONS(5122), 1, 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, - [130005] = 3, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5132), 1, + sym_float, + STATE(3595), 1, + sym_string, + STATE(3596), 1, + sym_dotted_name, + STATE(5474), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1709), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5130), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5128), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3598), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318082] = 13, + ACTIONS(652), 1, + sym_string_start, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5420), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5422), 1, anon_sym_LBRACK, + ACTIONS(5424), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [130047] = 3, + ACTIONS(5430), 1, + sym_float, + STATE(2862), 1, + sym_type, + STATE(3012), 1, + sym_dotted_name, + STATE(3014), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1801), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5428), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5426), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3011), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318135] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, anon_sym_LPAREN, + ACTIONS(5334), 1, 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, - [130089] = 3, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5378), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1725), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318188] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5138), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5140), 1, anon_sym_LBRACK, + ACTIONS(5142), 1, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [130131] = 3, + ACTIONS(5148), 1, + sym_float, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5283), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1697), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318241] = 14, + ACTIONS(700), 1, + sym_string_start, + ACTIONS(5436), 1, + sym_identifier, + ACTIONS(5438), 1, anon_sym_LPAREN, + ACTIONS(5440), 1, 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, - [130173] = 5, - ACTIONS(1641), 1, - anon_sym_LF, - ACTIONS(2736), 1, - anon_sym_in, - ACTIONS(2738), 1, - anon_sym_not, - ACTIONS(5), 2, + ACTIONS(5442), 1, + anon_sym_LBRACE, + ACTIONS(5448), 1, + sym_float, + STATE(2918), 1, + sym_type, + STATE(2964), 1, + sym_union_type, + STATE(2971), 1, + sym_string, + STATE(3097), 1, + sym_dotted_name, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [130219] = 4, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5544), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + sym_float, + STATE(1568), 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(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5548), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5546), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1604), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318351] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + sym_float, + ACTIONS(5524), 1, + sym_identifier, + ACTIONS(5552), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(3845), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318404] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5178), 1, 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, - [130263] = 3, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + ACTIONS(5432), 1, + sym_identifier, + ACTIONS(5434), 1, + anon_sym_LPAREN, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(3772), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1705), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318457] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5332), 1, anon_sym_LPAREN, + ACTIONS(5334), 1, 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, - [130305] = 4, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5388), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318510] = 13, + ACTIONS(528), 1, + sym_string_start, + ACTIONS(5370), 1, + sym_identifier, + ACTIONS(5372), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5374), 1, 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, - [130349] = 4, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(5382), 1, + sym_float, + STATE(2563), 1, + sym_dotted_name, + STATE(2565), 1, + sym_string, + STATE(2745), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5380), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5378), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2562), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318563] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5138), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5140), 1, 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, - [130393] = 4, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + sym_float, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5633), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318616] = 13, + ACTIONS(179), 1, + sym_string_start, + ACTIONS(5388), 1, + sym_identifier, + ACTIONS(5390), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5392), 1, 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, - [130437] = 3, + ACTIONS(5394), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + sym_float, + STATE(1628), 1, + sym_type, + STATE(1930), 1, + sym_dotted_name, + STATE(1934), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1713), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5398), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5396), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1925), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318669] = 13, + ACTIONS(598), 1, + sym_string_start, + ACTIONS(5450), 1, + sym_identifier, + ACTIONS(5452), 1, anon_sym_LPAREN, + ACTIONS(5454), 1, 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, - [130479] = 3, - ACTIONS(1863), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5456), 1, + anon_sym_LBRACE, + ACTIONS(5462), 1, + sym_float, + STATE(2774), 1, + sym_type, + STATE(2811), 1, + sym_dotted_name, + STATE(2812), 1, + sym_string, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5460), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5458), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2809), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318722] = 13, + ACTIONS(732), 1, + sym_string_start, + ACTIONS(5102), 1, + sym_identifier, + ACTIONS(5104), 1, anon_sym_LPAREN, + ACTIONS(5108), 1, 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, - [130521] = 3, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5116), 1, + sym_float, + STATE(4134), 1, + sym_dotted_name, + STATE(4135), 1, + sym_string, + STATE(5381), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5114), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5112), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4133), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318775] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, anon_sym_LPAREN, + ACTIONS(5178), 1, 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, - [130563] = 3, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5519), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318828] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5138), 1, anon_sym_LPAREN, + ACTIONS(5140), 1, 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, - [130605] = 3, - ACTIONS(1799), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + sym_float, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5683), 1, + sym_type, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318881] = 14, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(5334), 1, 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, - [130647] = 3, - ACTIONS(1691), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5534), 1, + sym_identifier, + ACTIONS(5536), 1, + anon_sym_LPAREN, + STATE(3993), 1, + sym_type, + STATE(4226), 1, + sym_union_type, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318936] = 13, + ACTIONS(434), 1, + sym_string_start, + ACTIONS(5356), 1, + sym_identifier, + ACTIONS(5358), 1, anon_sym_LPAREN, + ACTIONS(5360), 1, 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, - [130689] = 3, + ACTIONS(5362), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + sym_float, + STATE(2392), 1, + sym_type, + STATE(2436), 1, + sym_dotted_name, + STATE(2438), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5366), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5364), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2435), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [318989] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5138), 1, anon_sym_LPAREN, + ACTIONS(5140), 1, 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, - [130731] = 3, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + sym_float, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5672), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1659), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [319042] = 14, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(5478), 1, + sym_identifier, + ACTIONS(5480), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5482), 1, 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, - [130773] = 3, - ACTIONS(1867), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + sym_float, + STATE(2345), 1, + sym_dotted_name, + STATE(2346), 1, + sym_string, + STATE(2385), 1, + sym_type, + STATE(2514), 1, + sym_union_type, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [319097] = 13, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(5478), 1, + sym_identifier, + ACTIONS(5480), 1, anon_sym_LPAREN, + ACTIONS(5482), 1, 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, - [130815] = 3, - ACTIONS(1871), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + sym_float, + STATE(2345), 1, + sym_dotted_name, + STATE(2346), 1, + sym_string, + STATE(2384), 1, + sym_type, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + 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, + [319150] = 13, + ACTIONS(552), 1, + sym_string_start, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, anon_sym_LPAREN, + ACTIONS(5178), 1, 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, - [130857] = 5, - ACTIONS(1641), 1, - anon_sym_LF, - ACTIONS(2736), 1, - anon_sym_in, - ACTIONS(2740), 1, - anon_sym_not, - ACTIONS(5), 2, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + sym_float, + STATE(3767), 1, + sym_string, + STATE(3769), 1, + sym_dotted_name, + STATE(5491), 1, + sym_type, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5184), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3780), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [319203] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5138), 1, anon_sym_LPAREN, + ACTIONS(5140), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [130903] = 3, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + sym_float, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5635), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1721), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + 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, + sym_string_start, + ACTIONS(5332), 1, anon_sym_LPAREN, + ACTIONS(5334), 1, 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, - [130945] = 3, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + sym_float, + ACTIONS(5402), 1, + sym_identifier, + STATE(4235), 1, + sym_dotted_name, + STATE(4237), 1, + sym_string, + STATE(5429), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1478), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(5340), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5338), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(4232), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [319309] = 13, + ACTIONS(472), 1, + sym_string_start, + ACTIONS(5510), 1, + sym_identifier, + ACTIONS(5512), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5514), 1, 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, - [130987] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2135), 1, - anon_sym_not, + ACTIONS(5516), 1, + anon_sym_LBRACE, + ACTIONS(5522), 1, + sym_float, + STATE(2466), 1, + sym_type, + STATE(2717), 1, + sym_string, + STATE(2719), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5520), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5518), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(2720), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [319362] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(5138), 1, anon_sym_LPAREN, + ACTIONS(5140), 1, 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, - [131033] = 3, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5148), 1, + sym_float, + STATE(3476), 1, + sym_dotted_name, + STATE(3521), 1, + sym_string, + STATE(5323), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(5146), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(5144), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(3471), 7, + 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, + sym_string_start, + ACTIONS(5478), 1, + sym_identifier, + ACTIONS(5480), 1, anon_sym_LPAREN, + ACTIONS(5482), 1, 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, - [131075] = 3, + ACTIONS(5484), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + sym_float, + STATE(2286), 1, + sym_type, + STATE(2345), 1, + sym_dotted_name, + STATE(2346), 1, + sym_string, + STATE(2364), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + 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), 6, + sym_schema_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [319470] = 8, + ACTIONS(4303), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4321), 1, + anon_sym_is, + STATE(3553), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 2, + anon_sym_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, + 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [131117] = 3, - ACTIONS(1879), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1877), 32, + ACTIONS(2859), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_for, 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_PLUS_EQ, + [319512] = 8, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131159] = 3, + STATE(3553), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2857), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, - [131201] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1733), 29, - sym__newline, + ACTIONS(2859), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, 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_PLUS_EQ, + [319554] = 8, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131243] = 3, + STATE(3553), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2857), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1831), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, - [131285] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1825), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1827), 29, - sym__newline, + ACTIONS(2859), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACE, 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, - [131327] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2742), 1, + anon_sym_PLUS_EQ, + [319596] = 8, + ACTIONS(4303), 1, anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(3553), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2857), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4295), 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, - [131373] = 3, - ACTIONS(1853), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1855), 32, + ACTIONS(2859), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_for, 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_PLUS_EQ, + [319638] = 8, + ACTIONS(4421), 1, + anon_sym_not, + ACTIONS(4439), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131415] = 3, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2857), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4417), 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, - [131457] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1743), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1741), 29, - sym__newline, + ACTIONS(2859), 10, 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_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_PLUS_EQ, + anon_sym_then, + [319679] = 8, + ACTIONS(4421), 1, + anon_sym_not, + ACTIONS(4439), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131499] = 3, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2857), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4417), 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, - [131541] = 3, - ACTIONS(1693), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1695), 32, + ACTIONS(2859), 10, 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_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_PLUS_EQ, + anon_sym_then, + [319720] = 8, + ACTIONS(4421), 1, + anon_sym_not, + ACTIONS(4439), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131583] = 3, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2857), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4417), 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, - [131625] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1821), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1823), 29, - sym__newline, + ACTIONS(2859), 10, 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_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_PLUS_EQ, + anon_sym_then, + [319761] = 8, + ACTIONS(4421), 1, + anon_sym_not, + ACTIONS(4439), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131667] = 3, + STATE(3730), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2857), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(4437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 29, - sym__newline, + ACTIONS(4417), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2859), 10, 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_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_PLUS_EQ, + anon_sym_then, + [319802] = 7, + ACTIONS(4512), 1, + anon_sym_not, + ACTIONS(4516), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131709] = 3, + STATE(3778), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4514), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4510), 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, - [131751] = 3, - ACTIONS(1849), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1851), 32, + ACTIONS(2859), 11, 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, + [319840] = 7, + ACTIONS(4512), 1, + anon_sym_not, + ACTIONS(4516), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131793] = 3, + STATE(3778), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4514), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1785), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4510), 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, - [131835] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1759), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1757), 29, - sym__newline, + ACTIONS(2859), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, + [319878] = 7, + ACTIONS(4512), 1, + anon_sym_not, + ACTIONS(4516), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131877] = 4, - STATE(2267), 1, + STATE(3778), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4514), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(4510), 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, - [131921] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1763), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1761), 29, - sym__newline, + ACTIONS(2859), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, + [319916] = 7, + ACTIONS(4512), 1, + anon_sym_not, + ACTIONS(4516), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [131963] = 3, + STATE(3778), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4514), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 29, - sym__newline, + ACTIONS(4510), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2859), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, + [319954] = 7, + ACTIONS(4536), 1, + anon_sym_not, + ACTIONS(4554), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [132005] = 3, + STATE(4079), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4552), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1769), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4530), 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, - [132047] = 3, - ACTIONS(1813), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1815), 32, + ACTIONS(2859), 10, 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_DASH_GT, + anon_sym_LBRACE, 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, + [319991] = 7, + ACTIONS(4536), 1, + anon_sym_not, + ACTIONS(4554), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [132089] = 3, + STATE(4079), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4552), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4530), 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, - [132131] = 3, - ACTIONS(1805), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1807), 32, + ACTIONS(2859), 10, 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_DASH_GT, + anon_sym_LBRACE, 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, + [320028] = 7, + ACTIONS(2859), 1, + anon_sym_LF, + ACTIONS(4642), 1, + anon_sym_not, + ACTIONS(4644), 1, + anon_sym_is, + STATE(4061), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132173] = 3, - ACTIONS(1741), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1743), 32, + ACTIONS(2857), 9, 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, + [320065] = 7, + ACTIONS(2859), 1, + anon_sym_LF, + ACTIONS(4642), 1, + anon_sym_not, + ACTIONS(4644), 1, + anon_sym_is, + STATE(4061), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132215] = 3, - ACTIONS(1801), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1803), 32, + ACTIONS(2857), 9, 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, + [320102] = 7, + ACTIONS(4536), 1, + anon_sym_not, + ACTIONS(4554), 1, + anon_sym_is, + STATE(4079), 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, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132257] = 3, - ACTIONS(1697), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1699), 32, + ACTIONS(2859), 10, 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_DASH_GT, + anon_sym_LBRACE, 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, + [320139] = 7, + ACTIONS(2859), 1, + anon_sym_LF, + ACTIONS(4642), 1, + anon_sym_not, + ACTIONS(4644), 1, + anon_sym_is, + STATE(4061), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132299] = 3, - ACTIONS(1745), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1747), 32, + ACTIONS(2857), 9, 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, + [320176] = 7, + ACTIONS(4536), 1, + anon_sym_not, + ACTIONS(4554), 1, + anon_sym_is, + STATE(4079), 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, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132341] = 3, - ACTIONS(1749), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1751), 32, + ACTIONS(2859), 10, 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_DASH_GT, + anon_sym_LBRACE, 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, + [320213] = 7, + ACTIONS(2859), 1, + anon_sym_LF, + ACTIONS(4642), 1, + anon_sym_not, + ACTIONS(4644), 1, + anon_sym_is, + STATE(4061), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132383] = 3, - ACTIONS(1705), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1707), 32, + ACTIONS(2857), 9, 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, + [320250] = 7, + ACTIONS(4680), 1, + anon_sym_not, + ACTIONS(4696), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [132425] = 3, + STATE(4128), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4694), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1799), 29, + ACTIONS(4672), 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, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + [320286] = 15, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 1, + anon_sym_if, + ACTIONS(1173), 1, + anon_sym_STAR_STAR, + ACTIONS(1251), 1, + anon_sym_LF, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(5556), 1, + sym_identifier, + ACTIONS(5558), 1, + anon_sym_LBRACE, + ACTIONS(5560), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6097), 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, + [320338] = 7, + ACTIONS(4724), 1, + anon_sym_not, + ACTIONS(4740), 1, + anon_sym_is, + STATE(4201), 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, + ACTIONS(2859), 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, + [320374] = 7, + ACTIONS(4724), 1, + anon_sym_not, + ACTIONS(4740), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [132467] = 3, + STATE(4201), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4738), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 28, + ACTIONS(4716), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(2859), 9, 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, + [320410] = 7, + ACTIONS(4724), 1, + anon_sym_not, + ACTIONS(4740), 1, + anon_sym_is, + STATE(4201), 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132509] = 3, - ACTIONS(1753), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1755), 32, + ACTIONS(2859), 9, 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_RPAREN, 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, + [320446] = 7, + ACTIONS(4680), 1, + anon_sym_not, + ACTIONS(4696), 1, + anon_sym_is, + STATE(4128), 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, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132551] = 3, - ACTIONS(1757), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1759), 32, + ACTIONS(2859), 9, + 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, 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, + [320482] = 7, + ACTIONS(4724), 1, + anon_sym_not, + ACTIONS(4740), 1, + anon_sym_is, + STATE(4201), 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, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132593] = 3, - ACTIONS(1761), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1763), 32, + ACTIONS(2859), 9, 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_RPAREN, 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, + [320518] = 7, + ACTIONS(4680), 1, + anon_sym_not, + ACTIONS(4696), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [132635] = 3, + STATE(4128), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4694), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1795), 29, + ACTIONS(4672), 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, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132677] = 5, - ACTIONS(2744), 1, - anon_sym_in, - ACTIONS(2746), 1, + [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, anon_sym_not, + ACTIONS(4696), 1, + anon_sym_is, + STATE(4128), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4694), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 27, + ACTIONS(4672), 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, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_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, - [132723] = 3, - ACTIONS(1713), 1, + [320642] = 15, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 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, + sym_identifier, + ACTIONS(5558), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(5924), 1, + sym_config_entries, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 32, - anon_sym_DOT, - anon_sym_as, + 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, + [320694] = 14, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 1, anon_sym_if, - anon_sym_COMMA, + ACTIONS(1173), 1, + anon_sym_STAR_STAR, + ACTIONS(1267), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(5556), 1, + sym_identifier, + ACTIONS(5558), 1, + anon_sym_LBRACE, + ACTIONS(5568), 1, 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, - [132765] = 3, - ACTIONS(1717), 1, + ACTIONS(5570), 1, anon_sym_LF, + STATE(5667), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 32, - anon_sym_DOT, - anon_sym_as, + 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, + [320743] = 15, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 1, anon_sym_if, - anon_sym_COMMA, + ACTIONS(5556), 1, + sym_identifier, + ACTIONS(5562), 1, + sym_integer, + ACTIONS(5572), 1, + anon_sym_LBRACE, + ACTIONS(5574), 1, + anon_sym_RBRACE, + ACTIONS(5576), 1, + anon_sym_STAR_STAR, + ACTIONS(5578), 1, + sym_float, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(5927), 1, + sym_config_entries, + 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, + [320794] = 15, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + 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(5580), 1, anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6303), 1, + sym_config_entries, + 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, + [320845] = 15, + 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, - 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, - [132807] = 3, - ACTIONS(1717), 1, + ACTIONS(5578), 1, + sym_float, + ACTIONS(5582), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6209), 1, + sym_config_entries, + 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, + [320896] = 15, + 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(5584), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(5887), 1, + sym_config_entries, + 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, + [320947] = 15, + 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(5586), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(5843), 1, + sym_config_entries, + 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, + [320998] = 15, + 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(5588), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6016), 1, + sym_config_entries, + 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, + [321049] = 15, + 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(5590), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6019), 1, + sym_config_entries, + 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, + [321100] = 15, + 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(5592), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(5885), 1, + sym_config_entries, + 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, + [321151] = 15, + 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(5594), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6192), 1, + sym_config_entries, + 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, + [321202] = 15, + 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(5596), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6138), 1, + sym_config_entries, + 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, + [321253] = 15, + 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(5598), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(5826), 1, + sym_config_entries, + 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, + [321304] = 15, + 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(5600), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(5893), 1, + sym_config_entries, + 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, + [321355] = 15, + 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(5602), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6144), 1, + sym_config_entries, + 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, + [321406] = 15, + 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(5604), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6261), 1, + sym_config_entries, + 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, + [321457] = 14, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 1, + anon_sym_if, + ACTIONS(1173), 1, + anon_sym_STAR_STAR, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(5556), 1, + sym_identifier, + ACTIONS(5558), 1, + anon_sym_LBRACE, + ACTIONS(5606), 1, + anon_sym_RBRACE, + ACTIONS(5608), 1, anon_sym_LF, + STATE(5667), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 32, - anon_sym_DOT, - anon_sym_as, + 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, + [321506] = 15, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 1, anon_sym_if, - anon_sym_COMMA, + 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(5610), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6226), 1, + sym_config_entries, + 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, + [321557] = 15, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + 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(5612), 1, anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6020), 1, + sym_config_entries, + 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, + [321608] = 15, + 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, - anon_sym_QMARK_DOT, + ACTIONS(5578), 1, + sym_float, + ACTIONS(5614), 1, + anon_sym_RBRACE, + STATE(5420), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, + STATE(6252), 1, + sym_config_entries, + 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, + [321659] = 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(5616), 1, + anon_sym_RBRACE, + STATE(5605), 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, + [321707] = 7, + ACTIONS(4325), 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, - 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(4327), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [132849] = 3, + STATE(4413), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2493), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 29, - sym__newline, + 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_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + [321741] = 7, + ACTIONS(4325), 1, + anon_sym_not, + ACTIONS(4327), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [132891] = 3, + STATE(4413), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(2493), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2497), 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [132933] = 3, - ACTIONS(1721), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1723), 32, + ACTIONS(2859), 7, 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, + [321775] = 7, + ACTIONS(4325), 1, + anon_sym_not, + ACTIONS(4327), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [132975] = 3, + STATE(4413), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2493), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1679), 28, + 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_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, + [321809] = 7, + ACTIONS(4325), 1, + anon_sym_not, + ACTIONS(4327), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [133017] = 3, + STATE(4413), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2493), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1675), 28, + 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_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, - [133059] = 3, - ACTIONS(1765), 1, + [321843] = 13, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 1, + anon_sym_if, + ACTIONS(1173), 1, + anon_sym_STAR_STAR, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(5556), 1, + sym_identifier, + ACTIONS(5558), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, anon_sym_LF, + STATE(5667), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 32, - anon_sym_DOT, - anon_sym_as, + 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, + [321889] = 14, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 1, anon_sym_if, - anon_sym_COMMA, + 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, + 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, - anon_sym_LBRACK, + 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(5622), 1, anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + 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_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, - 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, - [133101] = 3, + ACTIONS(5578), 1, + sym_float, + ACTIONS(5616), 1, + anon_sym_RBRACE, + STATE(5667), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1671), 28, - anon_sym_DOT, - anon_sym_as, + STATE(5693), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(5565), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [322033] = 13, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(504), 1, + sym_string_start, + ACTIONS(1161), 1, anon_sym_if, - anon_sym_COMMA, + 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, + STATE(5605), 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, + [322078] = 13, + ACTIONS(486), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, + 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, - 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, - [133143] = 5, - ACTIONS(2744), 1, - anon_sym_in, - ACTIONS(2748), 1, - anon_sym_not, + ACTIONS(5578), 1, + sym_float, + STATE(5667), 1, + sym_config_entry, + STATE(5692), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_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, - [133189] = 3, + STATE(5693), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(5565), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [322123] = 5, + STATE(3973), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 5, + ACTIONS(5624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2471), 3, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 28, - anon_sym_DOT, + ACTIONS(2473), 10, + sym__newline, 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, - [133231] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1689), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1691), 29, - sym__newline, - anon_sym_DOT, + [322152] = 14, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, + ACTIONS(5630), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, + 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, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133273] = 3, + 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(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - sym__newline, + ACTIONS(626), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322198] = 5, + ACTIONS(2465), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133315] = 3, - ACTIONS(1769), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 32, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 11, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_for, + 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, + [322226] = 5, + ACTIONS(2441), 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, - [133357] = 3, - ACTIONS(1729), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 32, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 11, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_for, + 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, + [322254] = 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, - 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, - [133399] = 3, + STATE(5264), 1, + sym_for_in_clause, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, + STATE(5884), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1448), 29, - sym__newline, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322300] = 14, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, + ACTIONS(5630), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, + 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, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133441] = 3, + STATE(5264), 1, + sym_for_in_clause, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, + STATE(6193), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 29, - sym__newline, + ACTIONS(626), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322346] = 5, + ACTIONS(191), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133483] = 3, - ACTIONS(1729), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 32, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 11, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_for, + 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, - [133525] = 3, - ACTIONS(1733), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1735), 32, - anon_sym_DOT, + anon_sym_PLUS_EQ, + [322374] = 14, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, + ACTIONS(5630), 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, + 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, - 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, - [133567] = 3, - ACTIONS(1737), 1, - anon_sym_LF, - ACTIONS(5), 2, + STATE(5264), 1, + sym_for_in_clause, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, + STATE(6254), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 32, + ACTIONS(626), 2, 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, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322420] = 5, + ACTIONS(2461), 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, - [133609] = 3, + ACTIONS(5642), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1879), 28, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 11, 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_COLON, + anon_sym_for, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + [322448] = 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, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133650] = 3, + STATE(5264), 1, + sym_for_in_clause, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, + STATE(6021), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1795), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 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, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, + 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, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133691] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - ACTIONS(2758), 1, - anon_sym_PIPE, - ACTIONS(2760), 1, - anon_sym_AMP, - ACTIONS(2762), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(5264), 1, + sym_for_in_clause, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, + STATE(6194), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, + ACTIONS(626), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [133766] = 10, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(3698), 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, - ACTIONS(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 21, - anon_sym_DOT, + 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, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - anon_sym_in, - anon_sym_not, + 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, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [133821] = 10, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(1396), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 21, + ACTIONS(626), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322624] = 5, + ACTIONS(5642), 1, anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(5656), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [133876] = 12, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 19, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 11, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, + 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, + [322652] = 8, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [133935] = 16, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - ACTIONS(2760), 1, - anon_sym_AMP, - ACTIONS(2762), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5658), 1, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 13, + ACTIONS(476), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_for, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + [322686] = 14, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - anon_sym_in, - anon_sym_not, + 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, - anon_sym_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [134002] = 15, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - ACTIONS(2762), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5640), 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 14, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322732] = 14, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - anon_sym_in, - anon_sym_not, + 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, - 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, - [134067] = 14, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5640), 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(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1398), 15, + ACTIONS(626), 2, 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_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [134130] = 13, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322778] = 5, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1398), 17, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 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, + [322806] = 14, + ACTIONS(5626), 1, + anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - anon_sym_in, - anon_sym_not, + 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [134191] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - ACTIONS(2758), 1, - anon_sym_PIPE, - ACTIONS(2760), 1, - anon_sym_AMP, - ACTIONS(2762), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5640), 1, + anon_sym_PLUS, + STATE(5264), 1, + sym_for_in_clause, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, + STATE(6015), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322852] = 10, + ACTIONS(41), 1, + anon_sym_AT, + ACTIONS(5662), 1, + anon_sym_rule, + ACTIONS(5664), 1, + anon_sym_LBRACK, + ACTIONS(5666), 1, + anon_sym_schema, + ACTIONS(5668), 1, + anon_sym_mixin, + ACTIONS(5670), 1, + anon_sym_protocol, + ACTIONS(5672), 1, + anon_sym_check, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5198), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(3896), 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, - [134266] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - ACTIONS(2758), 1, - anon_sym_PIPE, - ACTIONS(2760), 1, - anon_sym_AMP, - ACTIONS(2762), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + 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(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, + ACTIONS(626), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [322936] = 5, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(5642), 1, anon_sym_if, - anon_sym_and, - anon_sym_or, - [134341] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2135), 1, - anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 26, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 11, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_for, + anon_sym_EQ, + anon_sym_RBRACE, 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, - [134386] = 11, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(2768), 1, + anon_sym_PLUS_EQ, + [322964] = 14, + ACTIONS(5626), 1, anon_sym_as, - ACTIONS(2770), 1, + ACTIONS(5628), 1, anon_sym_if, - ACTIONS(2774), 1, + 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(2776), 1, + ACTIONS(5638), 1, anon_sym_or, - ACTIONS(2778), 1, + ACTIONS(5640), 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, + anon_sym_if, + ACTIONS(5656), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, + STATE(3454), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2772), 11, - sym_string_start, + ACTIONS(2443), 11, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2766), 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, - [134443] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - ACTIONS(2758), 1, - anon_sym_PIPE, - ACTIONS(2760), 1, - anon_sym_AMP, - ACTIONS(2762), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2060), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [323038] = 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(5903), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [323084] = 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, - [134518] = 8, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2782), 1, - anon_sym_or, - ACTIONS(2784), 1, + ACTIONS(5640), 1, anon_sym_PLUS, + STATE(5264), 1, + sym_for_in_clause, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, + STATE(5897), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, + ACTIONS(626), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1175), 2, + STATE(3698), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1548), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1550), 21, + [323130] = 14, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - 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, - [134569] = 10, - ACTIONS(2780), 1, + 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(2782), 1, + ACTIONS(5638), 1, anon_sym_or, - ACTIONS(2784), 1, + ACTIONS(5640), 1, anon_sym_PLUS, - ACTIONS(2786), 1, - anon_sym_as, - ACTIONS(2788), 1, - anon_sym_if, + STATE(5264), 1, + sym_for_in_clause, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, + STATE(5853), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, + ACTIONS(626), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1175), 2, + STATE(3698), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1569), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [134624] = 11, - ACTIONS(1012), 1, + [323176] = 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(6304), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(626), 2, anon_sym_DOT, - ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(2768), 1, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [323222] = 14, + ACTIONS(5626), 1, anon_sym_as, - ACTIONS(2770), 1, + ACTIONS(5628), 1, anon_sym_if, - ACTIONS(2774), 1, + 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(2776), 1, + ACTIONS(5638), 1, anon_sym_or, - ACTIONS(2778), 1, + 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, - STATE(1022), 2, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2792), 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(2790), 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, - [134681] = 5, - ACTIONS(2794), 1, - anon_sym_in, - ACTIONS(2796), 1, - anon_sym_not, + [323268] = 5, + ACTIONS(2453), 1, + anon_sym_PLUS, + ACTIONS(5642), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 26, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 11, anon_sym_DOT, anon_sym_as, - anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_for, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + [323296] = 5, + ACTIONS(5674), 1, + anon_sym_if, + ACTIONS(5676), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [134726] = 4, - STATE(2241), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 27, - sym__newline, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 10, 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_EQ, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [323323] = 5, + ACTIONS(2441), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [134769] = 3, + ACTIONS(5674), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1343), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1448), 28, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 10, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [323350] = 5, + ACTIONS(191), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [134810] = 5, - ACTIONS(2784), 1, - anon_sym_PLUS, + ACTIONS(5674), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, + STATE(3423), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1428), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1430), 25, + ACTIONS(189), 10, 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_EQ, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [134855] = 5, - ACTIONS(2784), 1, + 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(1175), 2, + STATE(3423), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1291), 25, + ACTIONS(2447), 10, 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_EQ, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [134900] = 5, - ACTIONS(2784), 1, + anon_sym_PLUS_EQ, + anon_sym_then, + [323404] = 5, + ACTIONS(2465), 1, anon_sym_PLUS, + ACTIONS(5674), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, + STATE(3423), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1422), 25, + ACTIONS(2463), 10, 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_EQ, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [134945] = 3, + 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, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 10, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [323458] = 5, + ACTIONS(2453), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [134986] = 3, + ACTIONS(5674), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1691), 28, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 10, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [323485] = 5, + ACTIONS(2461), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135027] = 5, - ACTIONS(2794), 1, - anon_sym_in, - ACTIONS(2798), 1, - anon_sym_not, + ACTIONS(5674), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 26, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 10, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [323512] = 5, + ACTIONS(5674), 1, + anon_sym_if, + ACTIONS(5676), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1791), 28, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 10, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_EQ, 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_PLUS_EQ, + anon_sym_then, + [323539] = 8, + ACTIONS(4421), 1, + anon_sym_not, + ACTIONS(4439), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [135113] = 3, + ACTIONS(5680), 1, + anon_sym_EQ, + STATE(4684), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1799), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(5678), 2, + anon_sym_COLON, + anon_sym_PLUS_EQ, + ACTIONS(4417), 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, - [135154] = 3, + [323571] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5686), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1811), 28, + ACTIONS(476), 2, anon_sym_DOT, - anon_sym_as, + 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, + [323607] = 4, + ACTIONS(5628), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 10, + 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, - [135195] = 3, + [323631] = 12, + 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(5688), 1, + anon_sym_COMMA, + ACTIONS(5690), 1, + anon_sym_COLON, + ACTIONS(5692), 1, + anon_sym_RBRACK, + STATE(5515), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [323671] = 12, + 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(5690), 1, + anon_sym_COLON, + ACTIONS(5694), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(5696), 1, + anon_sym_RBRACK, + STATE(5614), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(626), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_not, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [323711] = 8, + ACTIONS(5628), 1, + anon_sym_if, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1785), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 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, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 9, + 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_COLON, + anon_sym_for, + anon_sym_RBRACK, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, + [323769] = 5, + ACTIONS(5628), 1, + anon_sym_if, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1819), 28, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 9, 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, - [135318] = 3, + [323795] = 4, + ACTIONS(5628), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1823), 28, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 10, 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, - [135359] = 3, + [323819] = 4, + ACTIONS(5628), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1827), 28, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 10, 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, - [135400] = 3, + [323843] = 12, + 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(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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1831), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [323883] = 12, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, 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, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135441] = 3, + ACTIONS(5690), 1, + anon_sym_COLON, + ACTIONS(5702), 1, + anon_sym_COMMA, + ACTIONS(5704), 1, + anon_sym_RBRACK, + STATE(5575), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1835), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [323923] = 12, + 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(5690), 1, + anon_sym_COLON, + ACTIONS(5706), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(5708), 1, + anon_sym_RBRACK, + STATE(5501), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(626), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_not, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [323963] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 1, anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5710), 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, + [323999] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135482] = 3, + ACTIONS(5658), 1, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5712), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1843), 28, + 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, + [324035] = 12, + 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(5690), 1, + anon_sym_COLON, + ACTIONS(5714), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(5716), 1, + anon_sym_RBRACK, + STATE(5469), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(626), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_not, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [324075] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 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, - [135523] = 3, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5718), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 28, + 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, + [324111] = 12, + 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(5690), 1, + anon_sym_COLON, + ACTIONS(5720), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(5722), 1, + anon_sym_RBRACK, + STATE(5613), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(626), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_not, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [324151] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 1, anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5724), 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, + [324187] = 5, + ACTIONS(5628), 1, + anon_sym_if, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1863), 28, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 9, 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, + [324213] = 8, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [135605] = 3, + ACTIONS(5680), 1, + anon_sym_EQ, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1799), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(5678), 2, + anon_sym_COLON, + anon_sym_PLUS_EQ, + ACTIONS(4295), 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, - [135646] = 3, + [324245] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5726), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1867), 28, + ACTIONS(476), 2, anon_sym_DOT, - anon_sym_as, + 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, + [324281] = 10, + ACTIONS(5642), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5728), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(476), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_not, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(5684), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [324317] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 1, anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5730), 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, + [324353] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135687] = 3, + ACTIONS(5658), 1, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5732), 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, + [324389] = 4, + ACTIONS(5628), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 28, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 10, 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, - [135728] = 3, + [324413] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5734), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1875), 28, + ACTIONS(476), 2, 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, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(5684), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [324449] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 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, - [135769] = 3, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5736), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 4, - anon_sym_STAR, - anon_sym_SLASH, + 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, + [324485] = 5, + STATE(1571), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2471), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 28, + ACTIONS(5738), 2, 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, + ACTIONS(2473), 8, + sym_string_start, + 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, - anon_sym_QMARK_LBRACK, - [135810] = 3, + [324511] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5740), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1693), 28, + ACTIONS(476), 2, anon_sym_DOT, - anon_sym_as, + 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, + [324547] = 4, + ACTIONS(5628), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 10, + 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, - [135851] = 3, + [324571] = 12, + 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(5690), 1, + anon_sym_COLON, + ACTIONS(5742), 1, + anon_sym_COMMA, + ACTIONS(5744), 1, + anon_sym_RBRACK, + STATE(5554), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1849), 28, + ACTIONS(626), 2, 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, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [324611] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 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, - [135892] = 3, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5746), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1813), 28, + ACTIONS(476), 2, anon_sym_DOT, - anon_sym_as, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 10, + 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_COLON, + anon_sym_for, + anon_sym_RBRACK, 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, - [135933] = 3, + [324671] = 12, + 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(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(1807), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1805), 28, + ACTIONS(626), 2, 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, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [324711] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 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, - [135974] = 3, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5752), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1801), 28, + ACTIONS(476), 2, 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, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(5684), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [324747] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 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, - [136015] = 3, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5754), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1697), 28, + 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, + [324783] = 12, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, 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, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136056] = 3, + 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(1707), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1705), 28, + ACTIONS(626), 2, 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, + STATE(3698), 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, anon_sym_and, + ACTIONS(5762), 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, - [136097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1713), 28, + ACTIONS(674), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 5, + anon_sym_as, + 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, - 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, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136138] = 3, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [324895] = 12, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, 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, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136179] = 3, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1717), 28, + ACTIONS(626), 2, 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, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [324935] = 10, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 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, - [136220] = 3, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5772), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1721), 28, + 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, + [324971] = 12, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, 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, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136261] = 20, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - ACTIONS(2758), 1, - anon_sym_PIPE, - ACTIONS(2760), 1, - anon_sym_AMP, - ACTIONS(2762), 1, - anon_sym_CARET, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5690), 1, + anon_sym_COLON, + ACTIONS(5774), 1, + anon_sym_COMMA, + ACTIONS(5776), 1, + anon_sym_RBRACK, + STATE(5608), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2750), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2754), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2756), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1448), 5, + ACTIONS(626), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [325011] = 10, + ACTIONS(5642), 1, anon_sym_if, + ACTIONS(5656), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 1, anon_sym_or, - [136336] = 10, - ACTIONS(2175), 1, - anon_sym_LPAREN, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(2183), 1, - anon_sym_QMARK_DOT, - ACTIONS(2199), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2752), 1, - anon_sym_STAR_STAR, - STATE(1296), 1, - sym_argument_list, - STATE(2266), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5778), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1544), 21, + 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, + [325047] = 12, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - anon_sym_in, - anon_sym_not, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [136391] = 3, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [325087] = 12, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, 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, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136432] = 3, + ACTIONS(5690), 1, + anon_sym_COLON, + ACTIONS(5784), 1, + anon_sym_COMMA, + ACTIONS(5786), 1, + anon_sym_RBRACK, + STATE(5664), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [325127] = 12, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, 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, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136473] = 3, + ACTIONS(5690), 1, + anon_sym_COLON, + ACTIONS(5788), 1, + anon_sym_COMMA, + ACTIONS(5790), 1, + anon_sym_RBRACK, + STATE(5460), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1733), 28, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [325167] = 12, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, 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, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136514] = 7, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2784), 1, - anon_sym_PLUS, + ACTIONS(5690), 1, + anon_sym_COLON, + ACTIONS(5792), 1, + anon_sym_COMMA, + ACTIONS(5794), 1, + anon_sym_RBRACK, + STATE(5652), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, + [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(1291), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1299), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 5, 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, - [136563] = 3, + [325238] = 4, + ACTIONS(5796), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1737), 28, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 9, 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_DASH_GT, + anon_sym_LBRACE, 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, - [136604] = 6, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2784), 1, + [325261] = 6, + ACTIONS(2443), 1, + anon_sym_LF, + ACTIONS(5798), 1, + anon_sym_if, + ACTIONS(5800), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, + STATE(3808), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1331), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1333), 24, + ACTIONS(2445), 7, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_QMARK_DOT, - anon_sym_not, + anon_sym_and, anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136651] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1743), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1741), 28, - anon_sym_DOT, + [325288] = 11, + ACTIONS(5802), 1, anon_sym_as, + ACTIONS(5804), 1, anon_sym_if, + ACTIONS(5806), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5808), 1, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, + ACTIONS(5810), 1, anon_sym_and, + ACTIONS(5812), 1, anon_sym_or, + ACTIONS(5814), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136692] = 3, + STATE(5671), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1745), 28, + ACTIONS(754), 2, 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, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [325325] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [136733] = 3, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5741), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, - [136774] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1755), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1753), 28, - anon_sym_DOT, + [325356] = 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(5816), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5818), 1, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + STATE(5611), 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, + [325393] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [136815] = 3, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5746), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 28, - anon_sym_DOT, + ACTIONS(4295), 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, - anon_sym_LPAREN, + ACTIONS(5822), 1, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + 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, + sym_string_start, + ACTIONS(4303), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [136856] = 3, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5790), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, - [136897] = 6, - ACTIONS(2780), 1, - anon_sym_and, - ACTIONS(2784), 1, + [325492] = 9, + ACTIONS(2357), 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(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3808), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2355), 3, + anon_sym_as, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1291), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + [325556] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [136944] = 3, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5735), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, + [325587] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [136985] = 3, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5736), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1769), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, - [137026] = 5, - ACTIONS(2778), 1, + [325618] = 6, + ACTIONS(2447), 1, + anon_sym_LF, + ACTIONS(5798), 1, + anon_sym_if, + ACTIONS(5800), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, + STATE(3808), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1430), 12, - sym_string_start, + ACTIONS(2449), 7, + anon_sym_DOT, + anon_sym_as, 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(1428), 17, - anon_sym_DOT, + anon_sym_and, + anon_sym_or, + [325645] = 11, + ACTIONS(5802), 1, anon_sym_as, + ACTIONS(5804), 1, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, + ACTIONS(5810), 1, anon_sym_and, + ACTIONS(5812), 1, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [137071] = 5, - ACTIONS(2778), 1, + ACTIONS(5814), 1, anon_sym_PLUS, + ACTIONS(5828), 1, + anon_sym_COMMA, + ACTIONS(5830), 1, + anon_sym_RPAREN, + STATE(5438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1291), 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(1289), 17, - anon_sym_DOT, - anon_sym_as, + [325682] = 9, + ACTIONS(5796), 1, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, + ACTIONS(5832), 1, + anon_sym_as, + ACTIONS(5836), 1, anon_sym_and, + ACTIONS(5838), 1, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [137116] = 5, - ACTIONS(2778), 1, + ACTIONS(5840), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, + ACTIONS(674), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3423), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1422), 12, - sym_string_start, + ACTIONS(5834), 3, 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_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1424), 17, - anon_sym_DOT, + [325715] = 11, + ACTIONS(5802), 1, anon_sym_as, + ACTIONS(5804), 1, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [137161] = 9, - ACTIONS(1012), 1, - anon_sym_DOT, - ACTIONS(1315), 1, - anon_sym_QMARK_DOT, - ACTIONS(2774), 1, + ACTIONS(5810), 1, anon_sym_and, - ACTIONS(2776), 1, + ACTIONS(5812), 1, anon_sym_or, - ACTIONS(2778), 1, + ACTIONS(5814), 1, anon_sym_PLUS, + ACTIONS(5842), 1, + anon_sym_COMMA, + ACTIONS(5844), 1, + anon_sym_RPAREN, + STATE(5490), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 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(1548), 14, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [137214] = 11, - ACTIONS(1012), 1, + ACTIONS(754), 2, anon_sym_DOT, - ACTIONS(1315), 1, anon_sym_QMARK_DOT, - ACTIONS(2768), 1, - anon_sym_as, - ACTIONS(2770), 1, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [325752] = 9, + ACTIONS(5642), 1, anon_sym_if, - ACTIONS(2774), 1, + ACTIONS(5658), 1, anon_sym_and, - ACTIONS(2776), 1, + ACTIONS(5660), 1, anon_sym_or, - ACTIONS(2778), 1, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1567), 11, - sym_string_start, + ACTIONS(5054), 3, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_for, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1569), 12, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + [325785] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [137271] = 5, - ACTIONS(2800), 1, - anon_sym_EQ, - STATE(1450), 1, - aux_sym_union_type_repeat1, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5785), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, + [325816] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [137316] = 4, - ACTIONS(2800), 1, - anon_sym_EQ, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5786), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1490), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, - [137358] = 3, - ACTIONS(3), 2, + [325847] = 5, + ACTIONS(2463), 1, + anon_sym_LF, + ACTIONS(5798), 1, + anon_sym_if, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 27, - sym__newline, + STATE(3808), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2465), 8, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, 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, + [325872] = 10, + 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(5848), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5850), 2, + anon_sym_for, + anon_sym_RBRACE, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [325907] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [137398] = 4, - STATE(2061), 1, + STATE(4681), 1, aux_sym_comparison_operator_repeat1, + STATE(5796), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, + [325938] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [137440] = 4, - STATE(2065), 1, + STATE(4681), 1, aux_sym_comparison_operator_repeat1, + STATE(5793), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 26, + ACTIONS(4295), 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, + anon_sym_LF, + ACTIONS(5798), 1, + anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(3808), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(191), 8, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, 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, - [137482] = 4, - STATE(2065), 1, - aux_sym_comparison_operator_repeat1, + [325994] = 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(5852), 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(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 26, + ACTIONS(754), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [326031] = 11, + ACTIONS(5802), 1, anon_sym_as, + ACTIONS(5804), 1, anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, + ACTIONS(5810), 1, anon_sym_and, + ACTIONS(5812), 1, anon_sym_or, + ACTIONS(5814), 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, + 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 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, - anon_sym_QMARK_LBRACK, - [137524] = 4, - STATE(2065), 1, + STATE(4681), 1, aux_sym_comparison_operator_repeat1, + STATE(5761), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4295), 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, - [137566] = 4, - STATE(2065), 1, - aux_sym_comparison_operator_repeat1, + [326099] = 9, + ACTIONS(5674), 1, + anon_sym_if, + ACTIONS(5676), 1, + anon_sym_PLUS, + ACTIONS(5760), 1, + anon_sym_and, + ACTIONS(5762), 1, + anon_sym_or, + ACTIONS(5860), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 26, + ACTIONS(674), 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, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(5810), 1, + anon_sym_and, + ACTIONS(5812), 1, + anon_sym_or, + ACTIONS(5814), 1, + anon_sym_PLUS, + ACTIONS(5862), 1, + 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, - anon_sym_not, + STATE(4121), 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, + anon_sym_if, + ACTIONS(5636), 1, anon_sym_and, + ACTIONS(5638), 1, anon_sym_or, + ACTIONS(5640), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [137608] = 5, - STATE(1037), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 2, + ACTIONS(626), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1323), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1325), 24, + ACTIONS(1714), 2, 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, - [137652] = 8, - ACTIONS(2807), 1, + anon_sym_RBRACK, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [326204] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, anon_sym_not, - ACTIONS(2813), 1, + ACTIONS(4321), 1, anon_sym_is, - STATE(2065), 1, + STATE(4681), 1, aux_sym_comparison_operator_repeat1, + STATE(5766), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2810), 2, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2804), 5, + ACTIONS(4295), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1625), 19, + [326235] = 9, + ACTIONS(5674), 1, + anon_sym_if, + ACTIONS(5676), 1, + anon_sym_PLUS, + ACTIONS(5760), 1, + anon_sym_and, + ACTIONS(5762), 1, + anon_sym_or, + ACTIONS(5860), 1, + anon_sym_as, + 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(5866), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [326268] = 11, + ACTIONS(5802), 1, anon_sym_as, + ACTIONS(5804), 1, anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(5810), 1, anon_sym_and, + ACTIONS(5812), 1, anon_sym_or, + ACTIONS(5814), 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_QMARK_LBRACK, - [137702] = 5, - ACTIONS(2133), 1, - anon_sym_in, - ACTIONS(2816), 1, - anon_sym_not, + 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(1643), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1641), 24, + ACTIONS(754), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [326305] = 11, + ACTIONS(5802), 1, anon_sym_as, + ACTIONS(5804), 1, anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + ACTIONS(5810), 1, anon_sym_and, + ACTIONS(5812), 1, anon_sym_or, + ACTIONS(5814), 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, + ACTIONS(5872), 1, + anon_sym_COMMA, + ACTIONS(5874), 1, + anon_sym_RPAREN, + STATE(5513), 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, + [326342] = 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(5789), 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [137745] = 4, - ACTIONS(2820), 1, - anon_sym_COMMA, + [326373] = 4, + ACTIONS(5796), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2822), 12, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_TILDE, - sym_float, - ACTIONS(2818), 13, - anon_sym_DOT, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [137782] = 14, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2830), 1, - anon_sym_RBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2861), 1, - sym_type, + [326396] = 4, + ACTIONS(5796), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [137838] = 14, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2842), 1, - anon_sym_RPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - STATE(1963), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [326419] = 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(5739), 1, sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2692), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [137894] = 14, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(2854), 1, - anon_sym_RBRACK, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2757), 1, - sym_type, + 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, + [326450] = 8, + ACTIONS(5796), 1, + anon_sym_if, + ACTIONS(5836), 1, + anon_sym_and, + ACTIONS(5838), 1, + anon_sym_or, + ACTIONS(5840), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [137950] = 14, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, + 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, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2856), 1, - anon_sym_RPAREN, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2681), 1, - sym_type, - ACTIONS(3), 2, + [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, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138006] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2866), 1, + ACTIONS(734), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5878), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2872), 1, - sym_float, - STATE(1377), 1, + STATE(3808), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [326516] = 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(5738), 1, sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2779), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138062] = 14, - ACTIONS(475), 1, + 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, + [326547] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_COLON, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5726), 1, sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2760), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138118] = 14, - ACTIONS(439), 1, + 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, + [326578] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2890), 1, - anon_sym_RBRACE, - STATE(1377), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5722), 1, sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2772), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138174] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2892), 1, + 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, + [326609] = 5, + ACTIONS(2439), 1, + anon_sym_LF, + ACTIONS(5798), 1, + anon_sym_if, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(3808), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2441), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2758), 1, - sym_type, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [326634] = 4, + ACTIONS(5796), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138230] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2894), 1, - anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2894), 1, - sym_type, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [326657] = 4, + ACTIONS(5796), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138286] = 14, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(2896), 1, - anon_sym_COLON, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2769), 1, - sym_type, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [326680] = 5, + ACTIONS(5796), 1, + anon_sym_if, + ACTIONS(5840), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138342] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2898), 1, - anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2907), 1, - sym_type, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [326705] = 4, + ACTIONS(5796), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138398] = 14, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, + 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, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2900), 1, - anon_sym_RPAREN, - STATE(1963), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [326728] = 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(5805), 1, sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2686), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138454] = 14, - ACTIONS(475), 1, + 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, + [326759] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(2902), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5772), 1, sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2807), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138510] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2904), 1, - anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2789), 1, - sym_type, + 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, + [326790] = 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(5882), 1, + anon_sym_COMMA, + ACTIONS(5884), 1, + anon_sym_RPAREN, + STATE(5553), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138566] = 14, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2906), 1, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [326827] = 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(5886), 1, + anon_sym_COMMA, + ACTIONS(5888), 1, anon_sym_RPAREN, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2695), 1, - sym_type, + STATE(5612), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138622] = 14, - ACTIONS(796), 1, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [326864] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2908), 1, - anon_sym_RPAREN, - STATE(1963), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5723), 1, sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2699), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138678] = 14, - ACTIONS(475), 1, + 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, + [326895] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(2910), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5729), 1, sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2833), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138734] = 14, - ACTIONS(547), 1, + 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, + [326926] = 5, + ACTIONS(2459), 1, + anon_sym_LF, + ACTIONS(5798), 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), 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, + [326951] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(2912), 1, - anon_sym_RBRACK, - STATE(1540), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5763), 1, sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2823), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138790] = 14, - ACTIONS(796), 1, + 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, + [326982] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2914), 1, - anon_sym_RPAREN, - STATE(1963), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5757), 1, sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2697), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138846] = 14, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2916), 1, + 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, + [327013] = 5, + ACTIONS(2459), 1, + anon_sym_LF, + ACTIONS(5798), 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), 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, + [327038] = 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(5890), 1, + anon_sym_COMMA, + ACTIONS(5892), 1, anon_sym_RPAREN, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2702), 1, - sym_type, + STATE(5679), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138902] = 14, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(2918), 1, - anon_sym_RBRACK, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2884), 1, - sym_type, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [327075] = 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(5894), 1, + anon_sym_COMMA, + ACTIONS(5896), 1, + anon_sym_RPAREN, + STATE(5504), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [138958] = 14, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2920), 1, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [327112] = 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(5898), 1, + anon_sym_COMMA, + ACTIONS(5900), 1, anon_sym_RPAREN, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2698), 1, - sym_type, + STATE(5577), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139014] = 14, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(2922), 1, - anon_sym_RBRACK, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2780), 1, - sym_type, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [327149] = 9, + ACTIONS(5796), 1, + anon_sym_if, + ACTIONS(5832), 1, + anon_sym_as, + ACTIONS(5836), 1, + anon_sym_and, + ACTIONS(5838), 1, + anon_sym_or, + ACTIONS(5840), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139070] = 14, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(674), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(5902), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2924), 1, - anon_sym_RPAREN, - STATE(1963), 1, + [327182] = 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(5705), 1, sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2701), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139126] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, + 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, + [327213] = 5, + ACTIONS(5796), 1, + anon_sym_if, + ACTIONS(5840), 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), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2926), 1, + 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(1377), 1, + 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, - STATE(1379), 1, - sym_dotted_name, - STATE(2914), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139182] = 14, - ACTIONS(475), 1, + 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, sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(2928), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5777), 1, sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2859), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139238] = 14, - ACTIONS(439), 1, + 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, + [327335] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2930), 1, - anon_sym_RBRACE, - STATE(1377), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5765), 1, sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2842), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139294] = 14, - ACTIONS(475), 1, + 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, + [327366] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(2932), 1, - anon_sym_COLON, - STATE(1245), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5775), 1, sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2890), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139350] = 14, - ACTIONS(439), 1, + 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, + [327397] = 10, + 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(5904), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5850), 2, + anon_sym_for, + anon_sym_RBRACK, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [327432] = 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(5906), 1, + anon_sym_COMMA, + ACTIONS(5908), 1, + anon_sym_RPAREN, + STATE(5467), 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, + [327469] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2934), 1, - anon_sym_RBRACE, - STATE(1377), 1, + 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, - STATE(1379), 1, - sym_dotted_name, - STATE(2892), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139406] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2936), 1, + 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, + 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, - STATE(1377), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + 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, - STATE(1379), 1, - sym_dotted_name, - STATE(2887), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139462] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2938), 1, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2453), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1377), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [327583] = 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(5788), 1, sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2849), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139518] = 3, + 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, + [327614] = 10, + 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(5910), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(657), 12, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1972), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [327649] = 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(5912), 1, + anon_sym_COMMA, + ACTIONS(5914), 1, + anon_sym_RPAREN, + STATE(5511), 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, + [327686] = 5, + ACTIONS(5796), 1, + anon_sym_if, + ACTIONS(5840), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [327711] = 10, + 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, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2940), 13, + ACTIONS(5690), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(626), 2, anon_sym_DOT, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_QMARK_DOT, + ACTIONS(5916), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [327746] = 8, + ACTIONS(408), 1, + sym_string_start, + ACTIONS(4303), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [139552] = 14, - ACTIONS(55), 1, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5791), 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, + [327777] = 8, + ACTIONS(408), 1, sym_string_start, - ACTIONS(2942), 1, - sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, + ACTIONS(4303), 1, + anon_sym_not, + ACTIONS(4321), 1, + anon_sym_is, + STATE(4681), 1, + aux_sym_comparison_operator_repeat1, + STATE(5792), 1, sym_string, - STATE(2724), 1, - sym_type, - STATE(3005), 1, - sym_schema_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139608] = 14, - ACTIONS(475), 1, + 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, + [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, + 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, sym_string_start, - ACTIONS(2874), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(2956), 1, - anon_sym_COLON, - STATE(1245), 1, + STATE(6055), 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, - STATE(1248), 1, - sym_dotted_name, - STATE(2882), 1, - sym_type, + [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(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139664] = 14, - ACTIONS(547), 1, + 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, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(2958), 1, - anon_sym_RBRACK, - STATE(1540), 1, + STATE(6054), 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, - STATE(1541), 1, - sym_dotted_name, - STATE(2891), 1, - sym_type, + [327930] = 4, + ACTIONS(5940), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139720] = 14, - ACTIONS(796), 1, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 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, + [327952] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2960), 1, - anon_sym_RPAREN, - STATE(1963), 1, + 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, - STATE(1964), 1, - sym_dotted_name, - STATE(2690), 1, - sym_type, + [327980] = 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139776] = 14, - ACTIONS(439), 1, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5942), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [328012] = 4, + ACTIONS(5940), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 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, + [328034] = 4, + ACTIONS(5940), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 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, + [328056] = 8, + ACTIONS(5674), 1, + anon_sym_if, + ACTIONS(5760), 1, + anon_sym_and, + ACTIONS(5944), 1, + anon_sym_or, + ACTIONS(5946), 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), 3, + anon_sym_as, + anon_sym_COLON, + anon_sym_LPAREN, + [328086] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2962), 1, - anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2771), 1, - sym_type, + STATE(6050), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139832] = 14, - ACTIONS(796), 1, + 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(2838), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2964), 1, - anon_sym_RPAREN, - STATE(1963), 1, + 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, - STATE(1964), 1, - sym_dotted_name, - STATE(2687), 1, - sym_type, + [328142] = 9, + ACTIONS(5674), 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(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139888] = 14, - ACTIONS(475), 1, + ACTIONS(674), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5902), 2, + anon_sym_COLON, + anon_sym_LPAREN, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [328174] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2874), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(2966), 1, - anon_sym_COLON, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2870), 1, - sym_type, + STATE(6276), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [139944] = 14, - ACTIONS(475), 1, + 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(2874), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(2968), 1, - anon_sym_COLON, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2800), 1, - sym_type, + STATE(6059), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140000] = 14, - ACTIONS(796), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328230] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2970), 1, - anon_sym_RPAREN, - STATE(1963), 1, + STATE(6047), 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, - STATE(1964), 1, - sym_dotted_name, - STATE(2688), 1, - sym_type, + [328258] = 4, + ACTIONS(5804), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140056] = 14, - ACTIONS(547), 1, + 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, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(2972), 1, - anon_sym_RBRACK, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2810), 1, - sym_type, + STATE(6062), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140112] = 14, - ACTIONS(439), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328308] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2974), 1, - anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2752), 1, - sym_type, + STATE(6046), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140168] = 14, - ACTIONS(796), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328336] = 9, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(5950), 1, sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(5952), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, + ACTIONS(5954), 1, + sym_integer, + ACTIONS(5956), 1, sym_float, - ACTIONS(2976), 1, - anon_sym_RPAREN, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2700), 1, - sym_type, + STATE(6332), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140224] = 14, - ACTIONS(439), 1, + STATE(6184), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [328368] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2978), 1, - anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2852), 1, - sym_type, + STATE(6063), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140280] = 14, - ACTIONS(439), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328396] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2980), 1, - anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2866), 1, - sym_type, + STATE(6066), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140336] = 14, - ACTIONS(439), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328424] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2982), 1, - anon_sym_RBRACE, - STATE(1377), 1, + STATE(6052), 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, - STATE(1379), 1, - sym_dotted_name, - STATE(2843), 1, - sym_type, + [328452] = 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(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140392] = 14, - ACTIONS(796), 1, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5958), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [328484] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2984), 1, - anon_sym_RPAREN, - STATE(1963), 1, + 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, - STATE(1964), 1, - sym_dotted_name, - STATE(2693), 1, - sym_type, + [328512] = 5, + ACTIONS(5804), 1, + anon_sym_if, + ACTIONS(5814), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140448] = 14, - ACTIONS(439), 1, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 7, + 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(2858), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2986), 1, - anon_sym_RBRACE, - STATE(1377), 1, + STATE(6045), 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, - STATE(1379), 1, - sym_dotted_name, - STATE(2846), 1, - sym_type, + [328564] = 8, + 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140504] = 14, - ACTIONS(439), 1, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + [328594] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(2988), 1, - anon_sym_RBRACE, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2762), 1, - sym_type, + STATE(6043), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140560] = 14, - ACTIONS(547), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328622] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(2990), 1, - anon_sym_RBRACK, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2811), 1, - sym_type, + STATE(6042), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140616] = 14, - ACTIONS(796), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328650] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(2992), 1, - anon_sym_RPAREN, - STATE(1963), 1, + STATE(6070), 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, - STATE(1964), 1, - sym_dotted_name, - STATE(2689), 1, - sym_type, + [328678] = 4, + ACTIONS(5940), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140672] = 14, - ACTIONS(547), 1, + 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, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 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, + [328722] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(2994), 1, - anon_sym_RBRACK, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2829), 1, - sym_type, + STATE(6071), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140728] = 13, - ACTIONS(796), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328750] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2715), 1, - sym_type, + STATE(6039), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140781] = 13, - ACTIONS(547), 1, + STATE(6028), 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(2824), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2832), 1, - sym_type, + STATE(6038), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140834] = 13, - ACTIONS(958), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328806] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2996), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2998), 1, - anon_sym_LPAREN, - ACTIONS(3000), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(3008), 1, - sym_float, - STATE(1492), 1, - sym_type, - STATE(1837), 1, - sym_dotted_name, - STATE(1838), 1, - sym_string, + STATE(6074), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3004), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1836), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140887] = 13, - ACTIONS(439), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328834] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2862), 1, + ACTIONS(5920), 1, + sym_identifier, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1321), 1, - sym_type, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, + STATE(6075), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140940] = 13, - ACTIONS(796), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [328862] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2743), 1, - sym_type, + STATE(6035), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140993] = 13, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1318), 1, - sym_type, - STATE(1377), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, sym_string, - STATE(1379), 1, - sym_dotted_name, + [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(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141046] = 13, - ACTIONS(475), 1, + 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, sym_string_start, - ACTIONS(2880), 1, + ACTIONS(5920), 1, + sym_identifier, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1245), 1, + STATE(6034), 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, - STATE(1248), 1, - sym_dotted_name, - STATE(1472), 1, - sym_type, + [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(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141099] = 13, - ACTIONS(439), 1, + 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, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 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, + [329004] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2862), 1, + ACTIONS(5920), 1, + sym_identifier, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1314), 1, - sym_type, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, + STATE(6078), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141152] = 13, - ACTIONS(475), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [329032] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2874), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, + STATE(6079), 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, - STATE(1248), 1, - sym_dotted_name, - STATE(2828), 1, - sym_type, + [329060] = 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141205] = 13, - ACTIONS(475), 1, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5960), 2, + anon_sym_for, + anon_sym_RBRACE, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [329092] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2874), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, + STATE(6082), 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, - STATE(1248), 1, - sym_dotted_name, - STATE(2876), 1, - sym_type, + [329120] = 4, + ACTIONS(5804), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141258] = 13, - ACTIONS(475), 1, + 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, sym_string_start, - ACTIONS(2874), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2801), 1, - sym_type, + STATE(6031), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141311] = 13, - ACTIONS(439), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [329170] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2862), 1, + ACTIONS(5920), 1, + sym_identifier, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1306), 1, - sym_type, - STATE(1377), 1, + STATE(6030), 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, - STATE(1379), 1, - sym_dotted_name, + [329198] = 5, + ACTIONS(5936), 1, + anon_sym_PLUS, + ACTIONS(5940), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141364] = 13, - ACTIONS(475), 1, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 7, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [329222] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2874), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2799), 1, - sym_type, + STATE(6083), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141417] = 13, - ACTIONS(924), 1, + STATE(6028), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [329250] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(3018), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - sym_float, - STATE(877), 1, - sym_type, - STATE(900), 1, - sym_dotted_name, - STATE(901), 1, - sym_string, + STATE(6027), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3028), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3026), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(898), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141470] = 14, - ACTIONS(924), 1, + STATE(6028), 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, sym_string_start, - ACTIONS(3018), 1, + ACTIONS(5950), 1, sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, + ACTIONS(5952), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(5954), 1, + sym_integer, + ACTIONS(5956), 1, sym_float, - STATE(835), 1, - sym_type, - STATE(876), 1, - sym_union_type, - STATE(900), 1, - sym_dotted_name, - STATE(901), 1, - sym_string, + STATE(6228), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3028), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3026), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(898), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141525] = 13, - ACTIONS(55), 1, + STATE(6184), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [329310] = 7, + ACTIONS(504), 1, sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, + ACTIONS(5920), 1, + sym_identifier, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2948), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, + STATE(6026), 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, - STATE(2739), 1, - sym_type, + [329338] = 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141578] = 13, - ACTIONS(439), 1, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5072), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [329370] = 10, + 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(5962), 1, + anon_sym_if, + ACTIONS(5964), 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, + 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, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(5920), 1, sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, + ACTIONS(5922), 1, anon_sym_LBRACK, - ACTIONS(2864), 1, + ACTIONS(5924), 1, anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - STATE(1377), 1, + STATE(6025), 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, - STATE(1379), 1, - sym_dotted_name, - STATE(2902), 1, - sym_type, + [329456] = 9, + ACTIONS(5674), 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(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141631] = 13, + ACTIONS(674), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5834), 2, + anon_sym_COLON, + anon_sym_LPAREN, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [329488] = 5, + ACTIONS(5804), 1, + anon_sym_if, + ACTIONS(5814), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 7, + 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_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(1972), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [329544] = 9, + ACTIONS(21), 1, + anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, + ACTIONS(5950), 1, + sym_identifier, + ACTIONS(5952), 1, anon_sym_LBRACE, - ACTIONS(2954), 1, + ACTIONS(5954), 1, + sym_integer, + ACTIONS(5956), 1, sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, + STATE(6167), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6184), 4, sym_dotted_name, - STATE(1724), 1, + sym_paren_expression, + sym_config_expr, sym_string, - STATE(2731), 1, - sym_type, + [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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141684] = 13, - ACTIONS(1106), 1, + 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, + 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(5970), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [329636] = 9, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3034), 1, + ACTIONS(5950), 1, sym_identifier, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LBRACK, - ACTIONS(3040), 1, + ACTIONS(5952), 1, anon_sym_LBRACE, - ACTIONS(3046), 1, + ACTIONS(5954), 1, + sym_integer, + ACTIONS(5956), 1, sym_float, - STATE(436), 1, - sym_type, - STATE(897), 1, - sym_dotted_name, - STATE(899), 1, - sym_string, + STATE(6337), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3044), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3042), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(896), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141737] = 13, + STATE(6184), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [329668] = 9, + ACTIONS(21), 1, + anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, + ACTIONS(5950), 1, + sym_identifier, + ACTIONS(5952), 1, anon_sym_LBRACE, - ACTIONS(2954), 1, + ACTIONS(5954), 1, + sym_integer, + ACTIONS(5956), 1, sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, + STATE(6135), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6184), 4, sym_dotted_name, - STATE(1724), 1, + sym_paren_expression, + sym_config_expr, sym_string, - STATE(2741), 1, - sym_type, + [329700] = 8, + 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141790] = 13, - ACTIONS(1106), 1, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2357), 3, + sym__newline, + anon_sym_as, + anon_sym_COMMA, + [329730] = 9, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3034), 1, + ACTIONS(5950), 1, sym_identifier, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LBRACK, - ACTIONS(3040), 1, + ACTIONS(5952), 1, anon_sym_LBRACE, - ACTIONS(3046), 1, + ACTIONS(5954), 1, + sym_integer, + ACTIONS(5956), 1, sym_float, - STATE(447), 1, - sym_type, - STATE(897), 1, + STATE(6336), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6184), 4, sym_dotted_name, - STATE(899), 1, + 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(3044), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3042), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(896), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141843] = 14, - ACTIONS(547), 1, + 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, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 7, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [329818] = 5, + ACTIONS(5936), 1, + anon_sym_PLUS, + ACTIONS(5940), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 7, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [329842] = 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(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, + [329864] = 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(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, + ACTIONS(21), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(5950), 1, + sym_identifier, + ACTIONS(5952), 1, anon_sym_LBRACE, - ACTIONS(2836), 1, + ACTIONS(5954), 1, + sym_integer, + ACTIONS(5956), 1, sym_float, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3050), 1, - anon_sym_LPAREN, - STATE(1429), 1, - sym_type, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(1620), 1, - sym_union_type, + STATE(6301), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141898] = 13, + STATE(6184), 4, + sym_dotted_name, + sym_paren_expression, + sym_config_expr, + sym_string, + [329918] = 9, + ACTIONS(21), 1, + anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, + ACTIONS(5950), 1, + sym_identifier, + ACTIONS(5952), 1, anon_sym_LBRACE, - ACTIONS(2954), 1, + ACTIONS(5954), 1, + sym_integer, + ACTIONS(5956), 1, sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, + STATE(6329), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(6184), 4, sym_dotted_name, - STATE(1724), 1, + sym_paren_expression, + sym_config_expr, sym_string, - STATE(2725), 1, - sym_type, + [329950] = 10, + 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(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(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [141951] = 14, - ACTIONS(1106), 1, + ACTIONS(43), 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 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, + [330006] = 4, + ACTIONS(5940), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2439), 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, + [330028] = 9, + ACTIONS(576), 1, sym_string_start, - ACTIONS(3034), 1, - sym_identifier, - ACTIONS(3036), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LBRACK, - ACTIONS(3040), 1, + ACTIONS(5980), 1, + sym_identifier, + ACTIONS(5982), 1, anon_sym_LBRACE, - ACTIONS(3046), 1, + ACTIONS(5984), 1, + sym_integer, + ACTIONS(5986), 1, sym_float, - STATE(549), 1, - sym_type, - STATE(892), 1, - sym_union_type, - STATE(897), 1, + STATE(5676), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5644), 4, sym_dotted_name, - STATE(899), 1, + sym_paren_expression, + sym_config_expr, sym_string, + [330060] = 6, + ACTIONS(4680), 1, + anon_sym_not, + ACTIONS(4696), 1, + anon_sym_is, + STATE(4149), 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, + [330085] = 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(5988), 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, + [330116] = 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(5990), 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, + [330147] = 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(5992), 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, + [330178] = 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(5994), 1, + anon_sym_RBRACK, + 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, + [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, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(5996), 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, + [330265] = 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(5998), 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, + [330296] = 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(6000), 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, + [330327] = 6, + ACTIONS(6002), 1, + anon_sym_not, + ACTIONS(6004), 1, + anon_sym_is, + STATE(2354), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3487), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3491), 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, + anon_sym_not, + ACTIONS(6008), 1, + anon_sym_is, + STATE(3278), 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, + [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, + 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(6014), 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, + [330439] = 9, + ACTIONS(5674), 1, + anon_sym_if, + ACTIONS(5760), 1, + anon_sym_and, + ACTIONS(5762), 1, + anon_sym_or, + ACTIONS(5860), 1, + anon_sym_as, + ACTIONS(5946), 1, + anon_sym_PLUS, + ACTIONS(6016), 1, + anon_sym_then, + 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, + [330470] = 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(6018), 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, + [330501] = 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(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, + 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(6020), 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, + [330563] = 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(6022), 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, + [330594] = 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(6024), 1, + anon_sym_RBRACK, + 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, + [330625] = 6, + ACTIONS(6002), 1, + anon_sym_not, + ACTIONS(6004), 1, + anon_sym_is, + STATE(3264), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3487), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3491), 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, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6026), 1, + anon_sym_if, + ACTIONS(6028), 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, + [330681] = 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(6026), 1, + anon_sym_if, + ACTIONS(6030), 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, + [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, + anon_sym_if, + ACTIONS(5810), 1, + anon_sym_and, + ACTIONS(5812), 1, + anon_sym_or, + ACTIONS(5814), 1, + anon_sym_PLUS, + ACTIONS(6032), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3044), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3042), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(896), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142006] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3050), 1, - anon_sym_LPAREN, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(1612), 1, - sym_type, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [330768] = 6, + ACTIONS(6034), 1, + anon_sym_not, + ACTIONS(6036), 1, + anon_sym_is, + STATE(3390), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142059] = 13, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(3034), 1, - sym_identifier, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LBRACK, - ACTIONS(3040), 1, - anon_sym_LBRACE, - ACTIONS(3046), 1, - sym_float, - STATE(889), 1, - sym_type, - STATE(897), 1, - sym_dotted_name, - STATE(899), 1, - sym_string, + 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, + [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(3044), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3042), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(896), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142112] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2722), 1, - sym_type, + 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, + 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(6040), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142165] = 8, - ACTIONS(2052), 1, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [330855] = 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(6042), 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, + [330886] = 6, + ACTIONS(4303), 1, anon_sym_not, - ACTIONS(2070), 1, + ACTIONS(4321), 1, anon_sym_is, - STATE(1291), 1, + STATE(4681), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2068), 2, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2044), 5, + ACTIONS(4295), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 12, + [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, 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, anon_sym_if, - anon_sym_COMMA, + ACTIONS(5760), 1, + anon_sym_and, + ACTIONS(5762), 1, + anon_sym_or, + ACTIONS(5860), 1, + anon_sym_as, + ACTIONS(5946), 1, + anon_sym_PLUS, + ACTIONS(6048), 1, anon_sym_COLON, - anon_sym_else, + 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, + [331004] = 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(6050), 1, anon_sym_RBRACE, - anon_sym_for, + 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, + [331035] = 9, + ACTIONS(5642), 1, + anon_sym_if, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 1, anon_sym_or, - anon_sym_PLUS_EQ, - [142208] = 8, - ACTIONS(2052), 1, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6052), 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, + [331066] = 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(6054), 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, + [331097] = 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(6056), 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, + [331128] = 6, + ACTIONS(4724), 1, anon_sym_not, - ACTIONS(2070), 1, + ACTIONS(4740), 1, anon_sym_is, - STATE(1291), 1, + STATE(4173), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2068), 2, + ACTIONS(4738), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2044), 5, + ACTIONS(4716), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 12, + [331153] = 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(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, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6026), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(6060), 1, anon_sym_RBRACE, - anon_sym_for, + 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, + [331215] = 9, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 1, anon_sym_or, - anon_sym_PLUS_EQ, - [142251] = 13, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2904), 1, - sym_type, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6010), 1, + anon_sym_if, + ACTIONS(6062), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142304] = 8, - ACTIONS(2052), 1, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331246] = 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(6026), 1, + anon_sym_if, + ACTIONS(6064), 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, + [331277] = 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(6066), 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331339] = 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(6026), 1, + anon_sym_if, + ACTIONS(6070), 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, + [331370] = 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(6072), 1, + anon_sym_RBRACK, + 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, + [331401] = 6, + ACTIONS(6074), 1, anon_sym_not, - ACTIONS(2070), 1, + ACTIONS(6076), 1, anon_sym_is, - STATE(1291), 1, + STATE(3234), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2068), 2, + ACTIONS(2765), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2044), 5, + ACTIONS(2769), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 12, - anon_sym_DOT, + [331426] = 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, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, + ACTIONS(6078), 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, + [331457] = 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, - anon_sym_PLUS_EQ, - [142347] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3054), 1, - anon_sym_LPAREN, - STATE(1506), 1, - sym_type, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, + ACTIONS(5814), 1, + anon_sym_PLUS, + ACTIONS(6080), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142400] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3054), 1, - anon_sym_LPAREN, - STATE(1503), 1, - sym_type, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331488] = 4, + STATE(4412), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142453] = 13, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(3034), 1, - sym_identifier, - ACTIONS(3036), 1, + ACTIONS(5080), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2477), 7, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LBRACK, - ACTIONS(3040), 1, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(3046), 1, - sym_float, - STATE(487), 1, - sym_type, - STATE(897), 1, - sym_dotted_name, - STATE(899), 1, - sym_string, + anon_sym_PIPE, + [331509] = 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(6026), 1, + anon_sym_if, + ACTIONS(6082), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3044), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3042), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(896), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142506] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2738), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 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(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142559] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2841), 1, - sym_type, + 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, + anon_sym_not, + ACTIONS(4327), 1, + anon_sym_is, + STATE(4407), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142612] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3054), 1, - anon_sym_LPAREN, - STATE(1530), 1, - sym_type, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, + 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, + [331590] = 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(6084), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142665] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2737), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331621] = 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(6086), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142718] = 13, - ACTIONS(1106), 1, - sym_string_start, - ACTIONS(3034), 1, - sym_identifier, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LBRACK, - ACTIONS(3040), 1, - anon_sym_LBRACE, - ACTIONS(3046), 1, - sym_float, - STATE(522), 1, - sym_type, - STATE(897), 1, - sym_dotted_name, - STATE(899), 1, - sym_string, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3044), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3042), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(896), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142771] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2670), 1, - sym_type, + 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, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6092), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142824] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3054), 1, - anon_sym_LPAREN, - STATE(1567), 1, - sym_type, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331708] = 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(6094), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142877] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2631), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331739] = 6, + ACTIONS(6096), 1, + anon_sym_not, + ACTIONS(6098), 1, + anon_sym_is, + STATE(2101), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142930] = 13, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2905), 1, - sym_type, + ACTIONS(3099), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3105), 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, + 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(6100), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142983] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2637), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331795] = 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(6102), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143036] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2804), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [331826] = 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(6026), 1, + anon_sym_if, + ACTIONS(6104), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143089] = 13, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2703), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 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(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143142] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(1517), 1, - sym_type, + 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, + 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(6112), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143195] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2708), 1, - sym_type, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3889), 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(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143248] = 13, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(3058), 1, - sym_identifier, - ACTIONS(3060), 1, - anon_sym_LPAREN, - ACTIONS(3062), 1, - anon_sym_LBRACK, - ACTIONS(3064), 1, - anon_sym_LBRACE, - ACTIONS(3070), 1, - sym_float, - STATE(1040), 1, - sym_type, - STATE(1075), 1, - sym_string, - STATE(1076), 1, - sym_dotted_name, + 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, + anon_sym_if, + ACTIONS(5636), 1, + anon_sym_and, + ACTIONS(5638), 1, + anon_sym_or, + ACTIONS(5640), 1, + anon_sym_PLUS, + ACTIONS(6118), 1, + anon_sym_RBRACK, + 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, + [331969] = 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(6120), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3068), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3066), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1077), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143301] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2815), 1, - sym_type, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 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(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143354] = 13, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2858), 1, - sym_identifier, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(2906), 1, - sym_type, + 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, + 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(6126), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143407] = 13, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(3058), 1, - sym_identifier, - ACTIONS(3060), 1, - anon_sym_LPAREN, - ACTIONS(3062), 1, - anon_sym_LBRACK, - ACTIONS(3064), 1, - anon_sym_LBRACE, - ACTIONS(3070), 1, - sym_float, - STATE(1048), 1, - sym_type, - STATE(1075), 1, - sym_string, - STATE(1076), 1, - sym_dotted_name, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3889), 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(3068), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3066), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1077), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143460] = 13, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(3058), 1, - sym_identifier, - ACTIONS(3060), 1, - anon_sym_LPAREN, - ACTIONS(3062), 1, - anon_sym_LBRACK, - ACTIONS(3064), 1, - anon_sym_LBRACE, - ACTIONS(3070), 1, - sym_float, - STATE(1062), 1, - sym_type, - STATE(1075), 1, - sym_string, - STATE(1076), 1, - sym_dotted_name, + 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(3068), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3066), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1077), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143513] = 13, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2716), 1, - sym_type, + 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, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6026), 1, + anon_sym_if, + ACTIONS(6136), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143566] = 13, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(2998), 1, - anon_sym_LPAREN, - ACTIONS(3000), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, - anon_sym_LBRACE, - ACTIONS(3008), 1, - sym_float, - STATE(1769), 1, - sym_type, - STATE(1837), 1, - sym_dotted_name, - STATE(1838), 1, - sym_string, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332137] = 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(6138), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3004), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1836), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143619] = 14, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(2998), 1, - anon_sym_LPAREN, - ACTIONS(3000), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, - anon_sym_LBRACE, - ACTIONS(3008), 1, - sym_float, - STATE(1592), 1, - sym_type, - STATE(1770), 1, - sym_union_type, - STATE(1837), 1, - sym_dotted_name, - STATE(1838), 1, - sym_string, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332168] = 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(6140), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3004), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1836), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143674] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2817), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 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(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143727] = 13, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(3018), 1, - sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, - sym_float, - STATE(741), 1, - sym_type, - STATE(900), 1, - sym_dotted_name, - STATE(901), 1, - sym_string, + 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, + 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(6146), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3028), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3026), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(898), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143780] = 14, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_LPAREN, - STATE(1845), 1, - sym_type, - STATE(1855), 1, - sym_union_type, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332255] = 6, + ACTIONS(6074), 1, + anon_sym_not, + ACTIONS(6076), 1, + anon_sym_is, + STATE(2013), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143835] = 13, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(3058), 1, - sym_identifier, - ACTIONS(3060), 1, - anon_sym_LPAREN, - ACTIONS(3062), 1, - anon_sym_LBRACK, - ACTIONS(3064), 1, - anon_sym_LBRACE, - ACTIONS(3070), 1, - sym_float, - STATE(1026), 1, - sym_type, - STATE(1075), 1, - sym_string, - STATE(1076), 1, - sym_dotted_name, + ACTIONS(2765), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2769), 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, + anon_sym_if, + ACTIONS(5810), 1, + anon_sym_and, + ACTIONS(5812), 1, + anon_sym_or, + ACTIONS(5814), 1, + anon_sym_PLUS, + ACTIONS(6148), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3068), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3066), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1077), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143888] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2744), 1, - sym_type, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 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(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143941] = 9, - ACTIONS(2349), 1, + 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, anon_sym_not, - ACTIONS(2365), 1, + ACTIONS(6152), 1, anon_sym_is, - ACTIONS(3076), 1, - anon_sym_COLON, - ACTIONS(3078), 1, - anon_sym_EQ, - STATE(2239), 1, + STATE(3317), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, + ACTIONS(3645), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2341), 5, + ACTIONS(3649), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(3080), 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, - [143986] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2812), 1, - sym_type, + [332361] = 6, + ACTIONS(4536), 1, + anon_sym_not, + ACTIONS(4554), 1, + anon_sym_is, + STATE(3967), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144039] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3054), 1, - anon_sym_LPAREN, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(1742), 1, - sym_type, + 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, + [332386] = 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(6154), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144092] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2710), 1, - sym_type, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 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(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144145] = 14, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3054), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_type, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(1741), 1, - sym_union_type, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144200] = 14, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(3058), 1, - sym_identifier, - ACTIONS(3060), 1, - anon_sym_LPAREN, - ACTIONS(3062), 1, - anon_sym_LBRACK, - ACTIONS(3064), 1, - anon_sym_LBRACE, - ACTIONS(3070), 1, - sym_float, - STATE(1047), 1, - sym_type, - STATE(1072), 1, - sym_union_type, - STATE(1075), 1, - sym_string, - STATE(1076), 1, - sym_dotted_name, + 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, + anon_sym_if, + ACTIONS(5636), 1, + anon_sym_and, + ACTIONS(5638), 1, + anon_sym_or, + ACTIONS(5640), 1, + anon_sym_PLUS, + ACTIONS(6156), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3068), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3066), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1077), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144255] = 13, - ACTIONS(1032), 1, - sym_string_start, - ACTIONS(3058), 1, - sym_identifier, - ACTIONS(3060), 1, - anon_sym_LPAREN, - ACTIONS(3062), 1, - anon_sym_LBRACK, - ACTIONS(3064), 1, - anon_sym_LBRACE, - ACTIONS(3070), 1, - sym_float, - STATE(1073), 1, - sym_type, - STATE(1075), 1, - sym_string, - STATE(1076), 1, - sym_dotted_name, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332498] = 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(6158), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3068), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3066), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1077), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144308] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2874), 1, - sym_type, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332529] = 6, + ACTIONS(4512), 1, + anon_sym_not, + ACTIONS(4516), 1, + anon_sym_is, + STATE(4689), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144361] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2808), 1, - sym_type, + 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, + [332554] = 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(6160), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144414] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2901), 1, - sym_type, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332585] = 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(6162), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144467] = 14, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(1499), 1, - sym_type, - STATE(1692), 1, - sym_union_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332616] = 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(6164), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144522] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(1647), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 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(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144575] = 14, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1278), 1, - sym_type, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, - STATE(1413), 1, - sym_union_type, + 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, + 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(6166), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144630] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2806), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332703] = 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(6026), 1, + anon_sym_if, + ACTIONS(6168), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144683] = 13, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(3018), 1, - sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, - sym_float, - STATE(714), 1, - sym_type, - STATE(900), 1, - sym_dotted_name, - STATE(901), 1, - sym_string, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 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(3028), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3026), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(898), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144736] = 13, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_LPAREN, - STATE(1763), 1, - sym_type, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, + 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, + anon_sym_not, + ACTIONS(6172), 1, + anon_sym_is, + STATE(3240), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144789] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3050), 1, - anon_sym_LPAREN, - STATE(1420), 1, - sym_type, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, + ACTIONS(2799), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2803), 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, + anon_sym_if, + ACTIONS(5760), 1, + anon_sym_and, + ACTIONS(5762), 1, + anon_sym_or, + ACTIONS(5860), 1, + anon_sym_as, + ACTIONS(5946), 1, + anon_sym_PLUS, + ACTIONS(6174), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144842] = 13, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_LPAREN, - STATE(1765), 1, - sym_type, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, + ACTIONS(674), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332815] = 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(5938), 1, + sym__newline, + ACTIONS(5940), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144895] = 13, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_LPAREN, - STATE(1767), 1, - sym_type, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332846] = 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(6176), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144948] = 13, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_LPAREN, - STATE(1773), 1, - sym_type, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 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(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145001] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2872), 1, - sym_type, + 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(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145054] = 13, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(3018), 1, - sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, - sym_float, - STATE(726), 1, - sym_type, - STATE(900), 1, - sym_dotted_name, - STATE(901), 1, - sym_string, + 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(3028), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3026), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(898), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145107] = 13, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - ACTIONS(3072), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_LPAREN, - STATE(1852), 1, - sym_type, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, + 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, + anon_sym_and, + ACTIONS(5934), 1, + anon_sym_or, + ACTIONS(5936), 1, + anon_sym_PLUS, + ACTIONS(5940), 1, + anon_sym_if, + ACTIONS(6186), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145160] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3050), 1, - anon_sym_LPAREN, - STATE(1421), 1, - sym_type, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [332983] = 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(6188), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145213] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, - STATE(2819), 1, - sym_type, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333014] = 6, + ACTIONS(6096), 1, + anon_sym_not, + ACTIONS(6098), 1, + anon_sym_is, + STATE(3253), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145266] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2642), 1, - sym_type, + ACTIONS(3099), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3105), 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, + 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(6190), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145319] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3050), 1, - anon_sym_LPAREN, - STATE(1425), 1, - sym_type, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333070] = 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(6192), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145372] = 13, - ACTIONS(796), 1, - sym_string_start, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 1, - anon_sym_LPAREN, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_float, - STATE(1963), 1, - sym_string, - STATE(1964), 1, - sym_dotted_name, - STATE(2721), 1, - sym_type, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333101] = 6, + ACTIONS(6128), 1, + anon_sym_not, + ACTIONS(6130), 1, + anon_sym_is, + STATE(3193), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2850), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2848), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1966), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145425] = 8, - ACTIONS(2052), 1, + 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, + [333126] = 6, + ACTIONS(6170), 1, anon_sym_not, - ACTIONS(2070), 1, + ACTIONS(6172), 1, anon_sym_is, - STATE(1291), 1, + STATE(1968), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2068), 2, + ACTIONS(2799), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2044), 5, + ACTIONS(2803), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 12, + [333151] = 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(6026), 1, + anon_sym_if, + ACTIONS(6194), 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, + [333182] = 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, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(6196), 1, anon_sym_RBRACE, - anon_sym_for, + 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, + [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, anon_sym_and, + ACTIONS(5660), 1, anon_sym_or, - anon_sym_PLUS_EQ, - [145468] = 13, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(2998), 1, - anon_sym_LPAREN, - ACTIONS(3000), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, - anon_sym_LBRACE, - ACTIONS(3008), 1, - sym_float, - STATE(1634), 1, - sym_type, - STATE(1837), 1, - sym_dotted_name, - STATE(1838), 1, - sym_string, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6202), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3004), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1836), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145521] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3056), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2639), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333269] = 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(6026), 1, + anon_sym_if, + ACTIONS(6204), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145574] = 13, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1280), 1, - sym_type, - STATE(1377), 1, - sym_string, - STATE(1379), 1, - sym_dotted_name, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333300] = 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(6206), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2870), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2868), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1383), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145627] = 13, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(2998), 1, - anon_sym_LPAREN, - ACTIONS(3000), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, - anon_sym_LBRACE, - ACTIONS(3008), 1, - sym_float, - STATE(1627), 1, - sym_type, - STATE(1837), 1, - sym_dotted_name, - STATE(1838), 1, - sym_string, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333331] = 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(6208), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3004), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1836), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145680] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(1476), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333362] = 6, + ACTIONS(6210), 1, + anon_sym_not, + ACTIONS(6212), 1, + anon_sym_is, + STATE(2174), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145733] = 14, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2056), 1, - sym_type, - STATE(2057), 1, - sym_union_type, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3037), 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, + 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(6214), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145788] = 13, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(2998), 1, - anon_sym_LPAREN, - ACTIONS(3000), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, - anon_sym_LBRACE, - ACTIONS(3008), 1, - sym_float, - STATE(1624), 1, - sym_type, - STATE(1837), 1, - sym_dotted_name, - STATE(1838), 1, - sym_string, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333418] = 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(6026), 1, + anon_sym_if, + ACTIONS(6216), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3004), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1836), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145841] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(1467), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 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(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145894] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(1460), 1, - sym_type, + 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, + anon_sym_not, + ACTIONS(6222), 1, + anon_sym_is, + STATE(3930), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [145947] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2874), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(2669), 1, - sym_type, + ACTIONS(4640), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6218), 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, + anon_sym_and, + ACTIONS(5660), 1, + anon_sym_or, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6026), 1, + anon_sym_if, + ACTIONS(6224), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [146000] = 14, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(1464), 1, - sym_type, - STATE(1623), 1, - sym_union_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333530] = 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(6226), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [146055] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2736), 1, - sym_type, + ACTIONS(626), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333561] = 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(6228), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [146108] = 13, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_LBRACE, - ACTIONS(2888), 1, - sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1245), 1, - sym_string, - STATE(1248), 1, - sym_dotted_name, - STATE(1458), 1, - sym_type, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3454), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333592] = 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(6230), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2886), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2884), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1249), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [146161] = 13, - ACTIONS(547), 1, - sym_string_start, - ACTIONS(2828), 1, - anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - sym_float, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3050), 1, - anon_sym_LPAREN, - STATE(1423), 1, - sym_type, - STATE(1540), 1, - sym_string, - STATE(1541), 1, - sym_dotted_name, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3889), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333623] = 6, + ACTIONS(4325), 1, + anon_sym_not, + ACTIONS(4327), 1, + anon_sym_is, + STATE(4732), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2834), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1542), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [146214] = 13, - ACTIONS(924), 1, - sym_string_start, - ACTIONS(3018), 1, - sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, - anon_sym_LBRACK, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, - sym_float, - STATE(782), 1, - sym_type, - STATE(900), 1, - sym_dotted_name, - STATE(901), 1, - sym_string, + 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, + [333648] = 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(6232), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3028), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3026), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(898), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [146267] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2944), 1, - anon_sym_LPAREN, - ACTIONS(2946), 1, - anon_sym_LBRACK, - ACTIONS(2948), 1, - anon_sym_LBRACE, - ACTIONS(2954), 1, - sym_float, - ACTIONS(3032), 1, - sym_identifier, - STATE(1720), 1, - sym_dotted_name, - STATE(1724), 1, - sym_string, - STATE(2730), 1, - sym_type, + ACTIONS(754), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [333679] = 6, + ACTIONS(6108), 1, + anon_sym_not, + ACTIONS(6110), 1, + anon_sym_is, + STATE(3349), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2950), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1719), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [146320] = 8, - ACTIONS(2203), 1, + 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, + [333704] = 6, + ACTIONS(4680), 1, anon_sym_not, - ACTIONS(2207), 1, + ACTIONS(4696), 1, anon_sym_is, - STATE(1468), 1, + STATE(4704), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2205), 2, + ACTIONS(4694), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2201), 5, + ACTIONS(4672), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 11, + [333729] = 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(6234), 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, + [333760] = 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(6236), 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, + [333791] = 9, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, + ACTIONS(5636), 1, + anon_sym_and, + ACTIONS(5638), 1, + anon_sym_or, + ACTIONS(5640), 1, + anon_sym_PLUS, + ACTIONS(6238), 1, + anon_sym_RBRACK, + 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, + [333822] = 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, - anon_sym_PLUS_EQ, - anon_sym_then, - [146362] = 8, - ACTIONS(2203), 1, + ACTIONS(5640), 1, + anon_sym_PLUS, + ACTIONS(6240), 1, + anon_sym_RBRACK, + 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, + [333853] = 6, + ACTIONS(4512), 1, anon_sym_not, - ACTIONS(2207), 1, + ACTIONS(4516), 1, anon_sym_is, - STATE(1468), 1, + STATE(3812), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2205), 2, + ACTIONS(4514), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2201), 5, + ACTIONS(4510), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [146404] = 8, - ACTIONS(2203), 1, + [333878] = 6, + ACTIONS(4421), 1, anon_sym_not, - ACTIONS(2207), 1, + ACTIONS(4439), 1, anon_sym_is, - STATE(1468), 1, + STATE(3785), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2205), 2, + ACTIONS(4437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2201), 5, + ACTIONS(4417), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [146446] = 8, - ACTIONS(2203), 1, + [333903] = 6, + ACTIONS(4421), 1, anon_sym_not, - ACTIONS(2207), 1, + ACTIONS(4439), 1, anon_sym_is, - STATE(1468), 1, + STATE(4684), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2205), 2, + ACTIONS(4437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2201), 5, + ACTIONS(4417), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 11, + [333928] = 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(6242), 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, + [333959] = 9, + ACTIONS(5802), 1, anon_sym_as, + ACTIONS(5804), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, + ACTIONS(5810), 1, + anon_sym_and, + ACTIONS(5812), 1, + anon_sym_or, + ACTIONS(5814), 1, + anon_sym_PLUS, + ACTIONS(6244), 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, + [333990] = 9, + ACTIONS(5658), 1, anon_sym_and, + ACTIONS(5660), 1, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [146488] = 7, - ACTIONS(2263), 1, + ACTIONS(5682), 1, + anon_sym_as, + ACTIONS(5846), 1, + anon_sym_PLUS, + ACTIONS(6010), 1, + anon_sym_if, + ACTIONS(6246), 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, + [334021] = 6, + ACTIONS(6122), 1, anon_sym_not, - ACTIONS(2267), 1, + ACTIONS(6124), 1, anon_sym_is, - STATE(1633), 1, + STATE(3323), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 2, + ACTIONS(3703), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2261), 5, + ACTIONS(3707), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 11, - anon_sym_DOT, + [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, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, + 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, + 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, - [146526] = 7, - ACTIONS(2263), 1, + ACTIONS(6250), 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, + [334108] = 6, + ACTIONS(6198), 1, anon_sym_not, - ACTIONS(2267), 1, + ACTIONS(6200), 1, anon_sym_is, - STATE(1633), 1, + STATE(3113), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 2, + ACTIONS(2411), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2261), 5, + ACTIONS(2433), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 11, + [334133] = 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(6252), 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, + [334164] = 9, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5636), 1, + anon_sym_and, + ACTIONS(5638), 1, + anon_sym_or, + ACTIONS(5640), 1, + anon_sym_PLUS, + ACTIONS(6254), 1, anon_sym_RBRACK, - anon_sym_for, + 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, + [334195] = 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, - [146564] = 7, - ACTIONS(2263), 1, + ACTIONS(6026), 1, + anon_sym_if, + ACTIONS(6256), 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, + [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, + 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, + 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(6260), 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, + [334288] = 6, + ACTIONS(4303), 1, anon_sym_not, - ACTIONS(2267), 1, + ACTIONS(4321), 1, anon_sym_is, - STATE(1633), 1, + STATE(3537), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 2, + ACTIONS(4319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2261), 5, + ACTIONS(4295), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 11, + [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, + 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, + 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, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, + ACTIONS(6264), 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, + [334375] = 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, - [146602] = 7, - ACTIONS(2263), 1, + ACTIONS(6026), 1, + anon_sym_if, + ACTIONS(6266), 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, + [334406] = 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(6026), 1, + anon_sym_if, + ACTIONS(6268), 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, + [334437] = 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(6270), 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, + [334468] = 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(6272), 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, + [334499] = 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(6274), 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, + [334530] = 6, + ACTIONS(6210), 1, anon_sym_not, - ACTIONS(2267), 1, + ACTIONS(6212), 1, anon_sym_is, - STATE(1633), 1, + STATE(3251), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2261), 5, + ACTIONS(3037), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [146640] = 7, - ACTIONS(1611), 1, - anon_sym_LF, - ACTIONS(2435), 1, + [334555] = 6, + ACTIONS(6142), 1, anon_sym_not, - ACTIONS(2447), 1, + ACTIONS(6144), 1, anon_sym_is, - STATE(1764), 1, + STATE(3260), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2427), 7, - anon_sym_in, + 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, - anon_sym_GT, - ACTIONS(1609), 9, + [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, + 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, + 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(6278), 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, + [334642] = 9, + ACTIONS(5642), 1, anon_sym_if, - anon_sym_COMMA, + 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(6280), 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, + [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, - [146677] = 7, - ACTIONS(2414), 1, + ACTIONS(5940), 1, + anon_sym_if, + ACTIONS(5968), 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, + [334704] = 6, + ACTIONS(6220), 1, anon_sym_not, - ACTIONS(2418), 1, + ACTIONS(6222), 1, anon_sym_is, - STATE(1710), 1, + STATE(4698), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2416), 2, + ACTIONS(4640), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2412), 5, + ACTIONS(6218), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 10, + [334729] = 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(6282), 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, + [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, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + ACTIONS(6284), 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, + [334791] = 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, - [146714] = 7, - ACTIONS(1611), 1, - anon_sym_LF, - ACTIONS(2435), 1, - anon_sym_not, - ACTIONS(2447), 1, - anon_sym_is, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(6286), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2427), 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(1609), 9, + ACTIONS(754), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(4121), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [334822] = 9, + ACTIONS(5626), 1, anon_sym_as, + ACTIONS(5628), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5636), 1, + anon_sym_and, + ACTIONS(5638), 1, + anon_sym_or, + ACTIONS(5640), 1, + anon_sym_PLUS, + ACTIONS(6288), 1, + anon_sym_RBRACK, + 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, + [334853] = 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, - [146751] = 7, - ACTIONS(1611), 1, - anon_sym_LF, - ACTIONS(2435), 1, - anon_sym_not, - ACTIONS(2447), 1, - anon_sym_is, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(6290), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2427), 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(1609), 9, + ACTIONS(626), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3698), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [334884] = 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(6026), 1, anon_sym_if, - anon_sym_COMMA, + ACTIONS(6292), 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, + [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, - [146788] = 7, - ACTIONS(2349), 1, - anon_sym_not, - ACTIONS(2365), 1, - anon_sym_is, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 10, + 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(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(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(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, + anon_sym_as, + ACTIONS(6296), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(6298), 1, + anon_sym_and, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(6308), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(211), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335047] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, + 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, anon_sym_and, anon_sym_or, + [335069] = 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, - [146825] = 7, - ACTIONS(2349), 1, - anon_sym_not, - ACTIONS(2365), 1, - anon_sym_is, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(6310), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 10, - sym__newline, + 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, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(6298), 1, + anon_sym_and, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(6312), 1, + anon_sym_or, + 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, + [335125] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 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), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [335147] = 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(2439), 6, + anon_sym_DOT, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [146862] = 7, - ACTIONS(2349), 1, - anon_sym_not, - ACTIONS(2365), 1, - anon_sym_is, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, + [335167] = 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(6314), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 10, - sym__newline, + ACTIONS(602), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335195] = 8, + ACTIONS(6294), 1, anon_sym_as, + ACTIONS(6296), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335223] = 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(6318), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(440), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(2288), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335251] = 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(6320), 1, anon_sym_or, + 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, + [335279] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, anon_sym_PLUS, - [146899] = 7, - ACTIONS(2414), 1, - anon_sym_not, - ACTIONS(2418), 1, - anon_sym_is, - STATE(1710), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2412), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 10, + STATE(2754), 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, + [335301] = 5, + ACTIONS(6296), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4121), 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, + [335323] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, anon_sym_PLUS, - [146936] = 7, - ACTIONS(1611), 1, - anon_sym_LF, - ACTIONS(2435), 1, - anon_sym_not, - ACTIONS(2447), 1, - anon_sym_is, - STATE(1764), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2427), 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(1609), 9, + STATE(782), 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, + [335345] = 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(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, + anon_sym_if, + ACTIONS(6298), 1, + anon_sym_and, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(6324), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(440), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2288), 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(602), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2293), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335429] = 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(6328), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(195), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335457] = 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(6330), 1, + anon_sym_or, + 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, + [335485] = 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(6332), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(444), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335513] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2871), 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, + [335535] = 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(6334), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(444), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2266), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335563] = 5, + ACTIONS(6296), 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, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [335585] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3698), 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, + [335607] = 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(6336), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(738), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2871), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335635] = 8, + ACTIONS(2357), 1, + anon_sym_as, + ACTIONS(6296), 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, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335663] = 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(6338), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(195), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(782), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335691] = 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(6340), 1, + anon_sym_or, + 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, + [335719] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2288), 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, + [335741] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 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), 5, + 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_if, + ACTIONS(6298), 1, + anon_sym_and, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(6342), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(742), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2815), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [335791] = 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(6344), 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, + [335819] = 8, + ACTIONS(6294), 1, + anon_sym_as, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6298), 1, + anon_sym_and, + ACTIONS(6316), 1, + anon_sym_or, + ACTIONS(6346), 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, + [335847] = 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(6348), 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, + [335875] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2532), 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, + [335897] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3454), 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, + [335919] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2266), 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, + [335941] = 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(2459), 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + [335961] = 4, + ACTIONS(6352), 1, + anon_sym_AT, + 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, + anon_sym_if, + ACTIONS(6302), 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), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [336003] = 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(6355), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2623), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3808), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336031] = 8, + ACTIONS(6294), 1, anon_sym_as, + ACTIONS(6296), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, + ACTIONS(6298), 1, anon_sym_and, + ACTIONS(6316), 1, anon_sym_or, + ACTIONS(6357), 1, anon_sym_PLUS, - [146973] = 7, - ACTIONS(2414), 1, - anon_sym_not, - ACTIONS(2418), 1, - anon_sym_is, - STATE(1710), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2412), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 10, + ACTIONS(674), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336059] = 8, + ACTIONS(6294), 1, anon_sym_as, + ACTIONS(6296), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, + ACTIONS(6298), 1, anon_sym_and, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(6359), 1, anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(211), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336087] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, anon_sym_PLUS, - [147010] = 7, - ACTIONS(2414), 1, - anon_sym_not, - ACTIONS(2418), 1, - anon_sym_is, - STATE(1710), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2412), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 10, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2443), 5, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - [147047] = 7, - ACTIONS(2349), 1, - anon_sym_not, - ACTIONS(2365), 1, - anon_sym_is, - STATE(1748), 1, - aux_sym_comparison_operator_repeat1, + [336109] = 4, + ACTIONS(6296), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 10, - sym__newline, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2463), 6, anon_sym_DOT, anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147084] = 15, - ACTIONS(411), 1, + [336129] = 8, + ACTIONS(6294), 1, + anon_sym_as, + ACTIONS(6296), 1, anon_sym_if, - ACTIONS(425), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(487), 1, - anon_sym_LF, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3084), 1, - anon_sym_LBRACE, - ACTIONS(3086), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(2997), 1, - sym_config_entries, - ACTIONS(5), 2, + ACTIONS(6298), 1, + anon_sym_and, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(6361), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3088), 2, - sym_integer, - sym_float, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147136] = 7, - ACTIONS(2544), 1, - anon_sym_not, - ACTIONS(2560), 1, - anon_sym_is, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(215), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1539), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336157] = 4, + ACTIONS(6296), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2536), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 9, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(189), 6, 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, - [147172] = 7, - ACTIONS(2544), 1, - anon_sym_not, - ACTIONS(2560), 1, - anon_sym_is, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, + [336177] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2536), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 9, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2447), 5, 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, - [147208] = 15, - ACTIONS(411), 1, + [336199] = 4, + ACTIONS(6296), 1, anon_sym_if, - ACTIONS(425), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(481), 1, - anon_sym_LF, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3084), 1, - anon_sym_LBRACE, - ACTIONS(3090), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3131), 1, - sym_config_entries, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3088), 2, - sym_integer, - sym_float, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147260] = 7, - ACTIONS(2544), 1, - anon_sym_not, - ACTIONS(2560), 1, - anon_sym_is, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2536), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 9, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2451), 6, 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, - [147296] = 15, - ACTIONS(411), 1, + [336219] = 5, + ACTIONS(6296), 1, anon_sym_if, - ACTIONS(425), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(469), 1, - anon_sym_LF, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3084), 1, - anon_sym_LBRACE, - ACTIONS(3092), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3248), 1, - sym_config_entries, - ACTIONS(5), 2, + ACTIONS(6302), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3088), 2, - sym_integer, - sym_float, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147348] = 7, - ACTIONS(2544), 1, - anon_sym_not, - ACTIONS(2560), 1, - anon_sym_is, - STATE(1851), 1, - aux_sym_comparison_operator_repeat1, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2455), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [336241] = 5, + ACTIONS(6296), 1, + anon_sym_if, + ACTIONS(6302), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2536), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 9, + STATE(1648), 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, + [336263] = 4, + ACTIONS(6296), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3423), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2459), 6, + anon_sym_DOT, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147384] = 15, - ACTIONS(411), 1, + [336283] = 8, + ACTIONS(6294), 1, + anon_sym_as, + ACTIONS(6296), 1, anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3096), 1, - anon_sym_RBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3070), 1, - sym_config_entries, + 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, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147435] = 15, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(608), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2532), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [336311] = 6, + ACTIONS(6371), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6365), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6368), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336334] = 6, + ACTIONS(6377), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336357] = 6, + ACTIONS(6379), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336380] = 6, + ACTIONS(6381), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336403] = 6, + ACTIONS(6383), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336426] = 6, + ACTIONS(6385), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336449] = 6, + ACTIONS(6387), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5239), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336472] = 6, + ACTIONS(6389), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5215), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336495] = 6, + ACTIONS(6391), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5222), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336518] = 6, + ACTIONS(6393), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336541] = 6, + ACTIONS(6395), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5229), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336564] = 6, + ACTIONS(6397), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5249), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336587] = 6, + ACTIONS(6399), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5218), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336610] = 6, + ACTIONS(6401), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336633] = 6, + ACTIONS(6403), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5217), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336656] = 6, + ACTIONS(6405), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5230), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336679] = 6, + ACTIONS(6407), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336702] = 6, + ACTIONS(6409), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336725] = 5, + ACTIONS(1319), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6411), 1, sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3102), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3090), 1, - sym_config_entries, + STATE(6143), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147486] = 14, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(425), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3084), 1, - anon_sym_LBRACE, - ACTIONS(3104), 1, - anon_sym_RBRACE, - ACTIONS(3106), 1, - anon_sym_LF, - STATE(2749), 1, - sym_test, - STATE(2857), 1, - sym_config_entry, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [336746] = 6, + ACTIONS(6413), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3088), 2, - sym_integer, - sym_float, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147535] = 15, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5214), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336769] = 6, + ACTIONS(6415), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336792] = 6, + ACTIONS(6417), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5242), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336815] = 6, + ACTIONS(6419), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336838] = 6, + ACTIONS(6421), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5233), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336861] = 6, + ACTIONS(6423), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5226), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336884] = 6, + ACTIONS(6425), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5235), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336907] = 6, + ACTIONS(6427), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336930] = 6, + ACTIONS(6429), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5241), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336953] = 6, + ACTIONS(6431), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336976] = 6, + ACTIONS(6433), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [336999] = 6, + ACTIONS(6435), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5216), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [337022] = 6, + ACTIONS(6437), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5246), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [337045] = 5, + ACTIONS(1331), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6439), 1, sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3108), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3134), 1, - sym_config_entries, + STATE(6085), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147586] = 15, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(1327), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [337066] = 6, + ACTIONS(6441), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [337089] = 6, + ACTIONS(6443), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5248), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [337112] = 6, + ACTIONS(6445), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [337135] = 6, + ACTIONS(6447), 1, + sym_string_end, + STATE(5313), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6373), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(6375), 2, + sym__not_escape_sequence, + sym__string_content, + STATE(5213), 2, + sym_string_content, + aux_sym_raw_string_repeat1, + [337158] = 5, + ACTIONS(6449), 1, sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3110), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3043), 1, - sym_config_entries, + STATE(5642), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147637] = 15, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, + ACTIONS(6451), 2, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3112), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3140), 1, - sym_config_entries, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [337178] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147688] = 14, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(425), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3084), 1, - anon_sym_LBRACE, - ACTIONS(3114), 1, - anon_sym_RBRACE, - ACTIONS(3116), 1, - anon_sym_LF, - STATE(2749), 1, - sym_test, - STATE(2857), 1, - sym_config_entry, - ACTIONS(5), 2, + ACTIONS(6453), 7, + anon_sym_rule, + anon_sym_LBRACK, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_check, + anon_sym_AT, + [337192] = 4, + STATE(4740), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3088), 2, - sym_integer, - sym_float, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147737] = 15, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(5624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2477), 4, + sym__newline, + anon_sym_as, + anon_sym_EQ, + anon_sym_PIPE, + [337210] = 8, + ACTIONS(6455), 1, sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3118), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3209), 1, - sym_config_entries, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147788] = 15, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3120), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3033), 1, - sym_config_entries, + [337236] = 4, + ACTIONS(6459), 1, + anon_sym_DOT_DOT_DOT, + STATE(6092), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147839] = 15, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(6461), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [337254] = 5, + ACTIONS(6449), 1, sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3122), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(3257), 1, - sym_config_entries, + STATE(5642), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147890] = 15, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, + ACTIONS(6463), 2, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3124), 1, - anon_sym_RBRACE, - STATE(2735), 1, - sym_config_entry, - STATE(2749), 1, - sym_test, - STATE(2988), 1, - sym_config_entries, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [337274] = 4, + ACTIONS(6465), 1, + anon_sym_DOT_DOT_DOT, + STATE(5939), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147941] = 13, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(425), 1, - anon_sym_STAR_STAR, - ACTIONS(453), 1, - anon_sym_LPAREN, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3082), 1, + ACTIONS(6461), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [337292] = 5, + ACTIONS(6449), 1, sym_identifier, - ACTIONS(3084), 1, - anon_sym_LBRACE, - ACTIONS(3126), 1, - anon_sym_LF, - STATE(2749), 1, - sym_test, - STATE(2857), 1, - sym_config_entry, + STATE(5391), 1, + sym_parameter, + STATE(5725), 1, + sym__parameters, + 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(3088), 2, - sym_integer, - sym_float, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [147987] = 7, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(2065), 1, - aux_sym_comparison_operator_repeat1, + 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, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [148021] = 7, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(2065), 1, - aux_sym_comparison_operator_repeat1, + 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, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 7, - anon_sym_DOT, - anon_sym_as, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [337366] = 5, + ACTIONS(6477), 1, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [148055] = 7, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(2065), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6481), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [148089] = 14, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, + 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_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3128), 1, - anon_sym_RBRACE, - STATE(2749), 1, - sym_test, - STATE(2857), 1, - sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [148137] = 14, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, + STATE(3518), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [337402] = 5, + ACTIONS(6449), 1, sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3130), 1, + STATE(5391), 1, + sym_parameter, + STATE(5730), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5364), 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(2749), 1, - sym_test, - STATE(2860), 1, - sym_config_entry, + 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, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [148185] = 14, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, + [337463] = 4, + ACTIONS(2619), 1, + anon_sym_LBRACK, + ACTIONS(6493), 1, anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3130), 1, - anon_sym_RBRACE, - STATE(2749), 1, - sym_test, - STATE(2857), 1, - sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [148233] = 7, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(2065), 1, - aux_sym_comparison_operator_repeat1, + STATE(4143), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [337480] = 3, + ACTIONS(6495), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - [148267] = 14, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, + ACTIONS(2528), 5, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - ACTIONS(3132), 1, + anon_sym_PIPE, + [337495] = 7, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6497), 1, + anon_sym_COMMA, + ACTIONS(6499), 1, anon_sym_RBRACE, - STATE(2749), 1, - sym_test, - STATE(2860), 1, - sym_config_entry, + 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, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [148315] = 4, - ACTIONS(3134), 1, - anon_sym_PLUS, + [337518] = 3, + STATE(5280), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2534), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [337533] = 7, + ACTIONS(6479), 1, anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [148342] = 4, - ACTIONS(3134), 1, - anon_sym_PLUS, + 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, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [148369] = 9, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, + [337556] = 3, + STATE(5324), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 7, - anon_sym_COMMA, + ACTIONS(2568), 5, anon_sym_COLON, - anon_sym_else, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [148406] = 7, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, + anon_sym_LBRACE, + anon_sym_PIPE, + [337571] = 3, + STATE(5280), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 9, - anon_sym_as, - anon_sym_if, + ACTIONS(2538), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [148439] = 13, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [337586] = 4, + ACTIONS(137), 1, + anon_sym_LBRACK, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - STATE(2749), 1, - sym_test, - STATE(2860), 1, - sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [148484] = 13, - ACTIONS(411), 1, - anon_sym_if, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, - sym_identifier, - ACTIONS(3088), 1, - sym_integer, - ACTIONS(3094), 1, - anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_STAR_STAR, - ACTIONS(3100), 1, - sym_float, - STATE(2749), 1, - sym_test, - STATE(2857), 1, - sym_config_entry, + STATE(2135), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [337603] = 7, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6507), 1, + anon_sym_COMMA, + ACTIONS(6509), 1, + anon_sym_RBRACE, + STATE(5316), 1, + sym_for_in_clause, + STATE(5486), 1, + aux_sym_dictionary_repeat1, + STATE(6300), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2869), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2837), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [148529] = 4, - ACTIONS(3134), 1, - anon_sym_PLUS, + [337626] = 3, + STATE(5280), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2485), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [148556] = 5, - STATE(1622), 1, - aux_sym_dotted_name_repeat1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [337641] = 4, + ACTIONS(716), 1, + anon_sym_LBRACK, + ACTIONS(6511), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3144), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1323), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1325), 10, - sym__newline, - anon_sym_as, - anon_sym_in, - anon_sym_not, - anon_sym_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [148585] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, + STATE(4252), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [337658] = 7, + ACTIONS(6479), 1, anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, + ACTIONS(6513), 1, + anon_sym_COMMA, + ACTIONS(6515), 1, + anon_sym_RBRACE, + STATE(5316), 1, sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(3206), 1, + STATE(5619), 1, + aux_sym_dictionary_repeat1, + STATE(5933), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [148631] = 4, - ACTIONS(3162), 1, - anon_sym_PLUS, + [337681] = 3, + STATE(5280), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [148657] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, + ACTIONS(2507), 5, anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, - anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, - sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(3034), 1, - sym__comprehension_clauses, + 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(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [148703] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, - anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, - sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(3256), 1, - sym__comprehension_clauses, + 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(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [148749] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, + ACTIONS(2568), 5, anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, - anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, - sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(3092), 1, - sym__comprehension_clauses, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [337726] = 3, + STATE(6088), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [148795] = 10, - ACTIONS(41), 1, - anon_sym_AT, - ACTIONS(3164), 1, + ACTIONS(6461), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [337741] = 4, + ACTIONS(163), 1, anon_sym_LBRACK, - ACTIONS(3166), 1, - anon_sym_schema, - ACTIONS(3168), 1, - anon_sym_mixin, - ACTIONS(3170), 1, - anon_sym_protocol, - ACTIONS(3172), 1, - anon_sym_rule, - ACTIONS(3174), 1, - anon_sym_check, + ACTIONS(6517), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2561), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(1684), 6, - sym_schema_index_signature, - sym_schema_statement, - sym_mixin_statement, - sym_protocol_statement, - sym_rule_statement, - sym_check_statement, - [148833] = 4, - ACTIONS(3162), 1, - anon_sym_PLUS, + STATE(2217), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [337758] = 3, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2538), 5, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_EQ, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [148859] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, + anon_sym_LBRACE, + anon_sym_PIPE, + [337773] = 7, + ACTIONS(6479), 1, anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, + ACTIONS(6519), 1, + anon_sym_COMMA, + ACTIONS(6521), 1, + anon_sym_RBRACE, + STATE(5316), 1, sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(3061), 1, + STATE(5482), 1, + aux_sym_dictionary_repeat1, + STATE(6122), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [148905] = 10, - ACTIONS(41), 1, - anon_sym_AT, - ACTIONS(3176), 1, + [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(3178), 1, - anon_sym_schema, - ACTIONS(3180), 1, - anon_sym_mixin, - ACTIONS(3182), 1, - anon_sym_protocol, - ACTIONS(3184), 1, - anon_sym_rule, - ACTIONS(3186), 1, - anon_sym_check, + ACTIONS(6529), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2561), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(1640), 6, - sym_schema_index_signature, - sym_schema_statement, - sym_mixin_statement, - sym_protocol_statement, - sym_rule_statement, - sym_check_statement, - [148943] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, + ACTIONS(6523), 3, anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [337834] = 4, + ACTIONS(456), 1, + anon_sym_LBRACK, + ACTIONS(6531), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2946), 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, anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, + ACTIONS(6533), 1, + anon_sym_COMMA, + ACTIONS(6535), 1, + anon_sym_RBRACE, + STATE(5316), 1, sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(3176), 1, + STATE(5457), 1, + aux_sym_dictionary_repeat1, + STATE(5841), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [148989] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, + [337893] = 7, + ACTIONS(6479), 1, anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, + ACTIONS(6537), 1, + anon_sym_COMMA, + ACTIONS(6539), 1, + anon_sym_RBRACE, + STATE(5316), 1, sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(2989), 1, + STATE(5524), 1, + aux_sym_dictionary_repeat1, + STATE(6265), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149035] = 4, - ACTIONS(3162), 1, - anon_sym_PLUS, + [337916] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5732), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [149061] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [337935] = 7, + ACTIONS(6479), 1, anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, + ACTIONS(6541), 1, + anon_sym_COMMA, + ACTIONS(6543), 1, + anon_sym_RBRACE, + STATE(5316), 1, sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(3069), 1, + STATE(5555), 1, + aux_sym_dictionary_repeat1, + STATE(5886), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149107] = 14, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - ACTIONS(3154), 1, - anon_sym_for, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - STATE(2651), 1, - sym_for_in_clause, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, - STATE(3139), 1, - sym__comprehension_clauses, + [337958] = 4, + ACTIONS(392), 1, + anon_sym_LBRACK, + ACTIONS(6545), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149153] = 9, - ACTIONS(3162), 1, - anon_sym_PLUS, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, + STATE(3579), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [337975] = 3, + STATE(5908), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 5, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_then, - [149188] = 7, - ACTIONS(3162), 1, - anon_sym_PLUS, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, + ACTIONS(6461), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [337990] = 4, + ACTIONS(512), 1, + anon_sym_LBRACK, + ACTIONS(6547), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 7, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_then, - [149219] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3198), 1, - anon_sym_RBRACE, + STATE(2440), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [338007] = 4, + ACTIONS(95), 1, + anon_sym_LBRACK, + ACTIONS(6549), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149255] = 7, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, + STATE(1966), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [338024] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5731), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 6, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338043] = 7, + ACTIONS(6479), 1, anon_sym_for, - [149285] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3200), 1, + ACTIONS(6551), 1, anon_sym_COMMA, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3204), 1, - anon_sym_RBRACK, - STATE(2784), 1, - aux_sym_subscript_repeat1, + ACTIONS(6553), 1, + anon_sym_RBRACE, + STATE(5316), 1, + sym_for_in_clause, + STATE(5596), 1, + aux_sym_dictionary_repeat1, + STATE(6140), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149325] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3206), 1, - anon_sym_RBRACE, + [338066] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5728), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149361] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338085] = 4, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2582), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [338102] = 5, + ACTIONS(6557), 1, anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3208), 1, + ACTIONS(6560), 1, + anon_sym_for, + ACTIONS(6563), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149397] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3210), 1, - anon_sym_COMMA, - ACTIONS(3212), 1, - anon_sym_RBRACK, - STATE(2847), 1, - aux_sym_subscript_repeat1, + STATE(5301), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [338121] = 4, + STATE(5319), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, + ACTIONS(6565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149437] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3214), 1, + ACTIONS(2477), 3, anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACK, - STATE(2864), 1, - aux_sym_subscript_repeat1, + anon_sym_RPAREN, + anon_sym_PIPE, + [338138] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5727), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149477] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3218), 1, - anon_sym_RBRACE, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338157] = 3, + STATE(6112), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149513] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(6461), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [338172] = 7, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6567), 1, + anon_sym_COMMA, + ACTIONS(6569), 1, anon_sym_RBRACE, + STATE(5316), 1, + sym_for_in_clause, + STATE(5541), 1, + aux_sym_dictionary_repeat1, + STATE(6214), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149549] = 8, - ACTIONS(2203), 1, - anon_sym_not, - ACTIONS(2207), 1, - anon_sym_is, - ACTIONS(3224), 1, - anon_sym_EQ, - STATE(2228), 1, - aux_sym_comparison_operator_repeat1, + [338195] = 4, + ACTIONS(219), 1, + anon_sym_LBRACK, + ACTIONS(6571), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_COLON, - anon_sym_PLUS_EQ, - ACTIONS(2201), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [149581] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, + STATE(4276), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [338212] = 5, + ACTIONS(5632), 1, + anon_sym_for, + ACTIONS(6481), 1, + anon_sym_RBRACK, + ACTIONS(6485), 1, anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - [149615] = 4, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + STATE(5322), 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, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 10, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2475), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [149639] = 4, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 10, + anon_sym_RBRACE, + ACTIONS(6573), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [149663] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3226), 1, - anon_sym_RBRACE, + [338250] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5724), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, - anon_sym_COLON, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338269] = 5, + ACTIONS(6577), 1, anon_sym_EQ, - anon_sym_PLUS_EQ, - [149699] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3228), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_RBRACK, - STATE(2766), 1, - aux_sym_subscript_repeat1, + ACTIONS(6579), 1, + anon_sym_PIPE, + STATE(5280), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149739] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3232), 1, + ACTIONS(6575), 3, anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_RBRACK, - STATE(2767), 1, - aux_sym_subscript_repeat1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [338288] = 4, + ACTIONS(6581), 1, + anon_sym_PIPE, + STATE(5311), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149779] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3236), 1, - anon_sym_RBRACE, + ACTIONS(2507), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [338305] = 3, + ACTIONS(6584), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, + ACTIONS(2485), 5, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PLUS_EQ, - [149815] = 5, - STATE(832), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + 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(1323), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3238), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1325), 8, - sym_string_start, - anon_sym_in, - anon_sym_not, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [149841] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3240), 1, - anon_sym_RBRACE, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, + ACTIONS(2485), 5, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PLUS_EQ, - [149877] = 10, - ACTIONS(3134), 1, - anon_sym_PLUS, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3242), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + anon_sym_LBRACE, + anon_sym_PIPE, + [338354] = 5, + ACTIONS(2473), 1, + anon_sym_LF, + STATE(3762), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, + ACTIONS(2471), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6573), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149913] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, + [338373] = 5, + ACTIONS(6477), 1, anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3244), 1, - anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_RBRACK, - STATE(2886), 1, - aux_sym_subscript_repeat1, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6487), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [149953] = 4, - ACTIONS(3160), 1, - anon_sym_PLUS, + STATE(5261), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [338392] = 3, + ACTIONS(6592), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 10, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2514), 5, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [149977] = 8, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - ACTIONS(3224), 1, + anon_sym_LPAREN, anon_sym_EQ, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LBRACE, + anon_sym_PIPE, + [338407] = 4, + ACTIONS(636), 1, + anon_sym_LBRACK, + ACTIONS(6594), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_COLON, - anon_sym_PLUS_EQ, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150009] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3248), 1, - anon_sym_COMMA, - ACTIONS(3250), 1, - anon_sym_RBRACK, - STATE(2868), 1, - aux_sym_subscript_repeat1, + STATE(3133), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [338424] = 4, + STATE(4076), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, + ACTIONS(6565), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150049] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3252), 1, + ACTIONS(2473), 3, anon_sym_COMMA, - ACTIONS(3254), 1, - anon_sym_RBRACK, - STATE(2899), 1, - aux_sym_subscript_repeat1, + anon_sym_RPAREN, + anon_sym_PIPE, + [338441] = 4, + ACTIONS(536), 1, + anon_sym_LBRACK, + ACTIONS(6596), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150089] = 12, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, - ACTIONS(3256), 1, + STATE(4018), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [338458] = 7, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6598), 1, anon_sym_COMMA, - ACTIONS(3258), 1, - anon_sym_RBRACK, - STATE(2777), 1, - aux_sym_subscript_repeat1, + ACTIONS(6600), 1, + anon_sym_RBRACE, + STATE(5316), 1, + sym_for_in_clause, + STATE(5684), 1, + aux_sym_dictionary_repeat1, + STATE(6018), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150129] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2950), 1, - sym_string, + [338481] = 5, + ACTIONS(6563), 1, + anon_sym_RBRACK, + ACTIONS(6602), 1, + anon_sym_if, + ACTIONS(6605), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150160] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2930), 1, - sym_string, + STATE(5322), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [338500] = 3, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150191] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3262), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - anon_sym_PLUS, + ACTIONS(2507), 5, + anon_sym_COLON, + anon_sym_LPAREN, + 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(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3260), 3, - anon_sym_if, - anon_sym_RBRACE, + ACTIONS(2507), 4, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + [338532] = 7, + ACTIONS(6479), 1, anon_sym_for, - [150224] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3270), 1, + ACTIONS(6611), 1, anon_sym_COMMA, - ACTIONS(3272), 1, - anon_sym_RPAREN, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - STATE(2871), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6613), 1, + anon_sym_RBRACE, + STATE(5316), 1, + sym_for_in_clause, + STATE(5599), 1, + aux_sym_dictionary_repeat1, + STATE(6145), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150261] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, + [338555] = 4, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(6615), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - [150294] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3290), 1, - anon_sym_COMMA, - ACTIONS(3292), 1, - anon_sym_RPAREN, - STATE(2765), 1, - aux_sym_argument_list_repeat1, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150331] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3294), 1, - anon_sym_COMMA, - ACTIONS(3296), 1, - anon_sym_RPAREN, - STATE(2888), 1, - aux_sym_argument_list_repeat1, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338591] = 3, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150368] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2951), 1, - sym_string, + ACTIONS(2534), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [338606] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5710), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150399] = 7, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338625] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5712), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 5, - sym__newline, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - [150428] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2943), 1, - sym_string, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338644] = 4, + ACTIONS(2603), 1, + anon_sym_LBRACK, + ACTIONS(6617), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150459] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3298), 1, + STATE(2994), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [338661] = 7, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6619), 1, anon_sym_COMMA, - ACTIONS(3300), 1, - anon_sym_RPAREN, - STATE(2903), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6621), 1, + anon_sym_RBRACE, + STATE(5316), 1, + sym_for_in_clause, + STATE(5542), 1, + aux_sym_dictionary_repeat1, + STATE(6207), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, + [338684] = 4, + STATE(4412), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5080), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150496] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2938), 1, - sym_string, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150527] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, + 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2792), 3, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338739] = 7, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6623), 1, anon_sym_COMMA, + ACTIONS(6625), 1, anon_sym_RBRACE, - anon_sym_for, - [150560] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2963), 1, - sym_string, + STATE(5316), 1, + sym_for_in_clause, + STATE(5567), 1, + aux_sym_dictionary_repeat1, + STATE(5891), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150591] = 10, - ACTIONS(872), 1, - anon_sym_COLON, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, + [338762] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5716), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(870), 2, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338781] = 7, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6627), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150626] = 9, - ACTIONS(3302), 1, - anon_sym_as, - ACTIONS(3304), 1, - anon_sym_if, - ACTIONS(3306), 1, - anon_sym_and, - ACTIONS(3308), 1, - anon_sym_or, - ACTIONS(3310), 1, - anon_sym_PLUS, + 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1567), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, + [338804] = 5, + ACTIONS(6449), 1, + sym_identifier, + STATE(5391), 1, + sym_parameter, + STATE(5718), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338823] = 4, + ACTIONS(69), 1, + anon_sym_LBRACK, + ACTIONS(6631), 1, anon_sym_LBRACE, - [150659] = 10, - ACTIONS(1567), 1, - anon_sym_LF, - ACTIONS(3312), 1, - anon_sym_as, - ACTIONS(3314), 1, - anon_sym_if, - ACTIONS(3316), 1, - anon_sym_and, - ACTIONS(3318), 1, - anon_sym_or, - ACTIONS(3320), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1569), 2, + STATE(1881), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [338840] = 7, + ACTIONS(6479), 1, + anon_sym_for, + ACTIONS(6633), 1, anon_sym_COMMA, + ACTIONS(6635), 1, anon_sym_RBRACE, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150694] = 9, - ACTIONS(3302), 1, - anon_sym_as, - ACTIONS(3304), 1, - anon_sym_if, - ACTIONS(3306), 1, - anon_sym_and, - ACTIONS(3308), 1, - anon_sym_or, - ACTIONS(3310), 1, - anon_sym_PLUS, + STATE(5316), 1, + sym_for_in_clause, + STATE(5560), 1, + aux_sym_dictionary_repeat1, + STATE(5849), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3322), 3, + [338863] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [150727] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2926), 1, - sym_string, + ACTIONS(6639), 1, + anon_sym_RPAREN, + ACTIONS(6641), 1, + anon_sym_PIPE, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5582), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150758] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2967), 1, - sym_string, + [338883] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6643), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5444), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150789] = 4, - ACTIONS(3288), 1, - anon_sym_PLUS, + [338903] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 9, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(6645), 5, anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [150812] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3324), 1, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [338915] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - ACTIONS(3326), 1, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6647), 1, anon_sym_RPAREN, - STATE(2787), 1, - aux_sym_argument_list_repeat1, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5697), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150849] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2927), 1, - sym_string, + [338935] = 5, + ACTIONS(6649), 1, + anon_sym_EQ, + ACTIONS(6651), 1, + anon_sym_PIPE, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150880] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3328), 1, + ACTIONS(6575), 2, + anon_sym_COLON, + anon_sym_LPAREN, + [338953] = 4, + ACTIONS(6653), 1, + sym_identifier, + STATE(5782), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [338969] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - ACTIONS(3330), 1, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6655), 1, anon_sym_RPAREN, - STATE(2862), 1, - aux_sym_argument_list_repeat1, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5649), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150917] = 11, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3332), 1, + [338989] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - ACTIONS(3334), 1, - anon_sym_else, - ACTIONS(3336), 1, - sym__newline, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6657), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5691), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150954] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3338), 1, - anon_sym_COMMA, + [339009] = 4, + STATE(3525), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, + ACTIONS(2473), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + ACTIONS(6659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3260), 3, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [150987] = 4, - ACTIONS(3288), 1, - anon_sym_PLUS, + [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, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 9, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + [339045] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151010] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2932), 1, - sym_string, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5625), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151041] = 10, - ACTIONS(2772), 1, - anon_sym_LF, - ACTIONS(3312), 1, - anon_sym_as, - ACTIONS(3314), 1, - anon_sym_if, - ACTIONS(3316), 1, - anon_sym_and, - ACTIONS(3318), 1, - anon_sym_or, - ACTIONS(3320), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [339065] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6665), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5535), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2766), 2, + [339085] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151076] = 10, - ACTIONS(3312), 1, - anon_sym_as, - ACTIONS(3314), 1, - anon_sym_if, - ACTIONS(3316), 1, - anon_sym_and, - ACTIONS(3318), 1, - anon_sym_or, - ACTIONS(3320), 1, - anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6667), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5669), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3340), 2, + [339105] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151111] = 7, - ACTIONS(3306), 1, - anon_sym_and, - ACTIONS(3308), 1, - anon_sym_or, - ACTIONS(3310), 1, - anon_sym_PLUS, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6669), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5675), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 5, - anon_sym_as, - anon_sym_if, + [339125] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [151140] = 10, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3344), 1, - anon_sym_COLON, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6671), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5453), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1176), 2, + [339145] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151175] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6673), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5696), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [339165] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - ACTIONS(3348), 1, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6675), 1, anon_sym_RPAREN, - STATE(2773), 1, - aux_sym_argument_list_repeat1, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5452), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151212] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2931), 1, - sym_string, + [339185] = 4, + ACTIONS(6653), 1, + sym_identifier, + STATE(5714), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151243] = 4, - ACTIONS(3310), 1, - anon_sym_PLUS, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [339201] = 4, + ACTIONS(6449), 1, + sym_identifier, + STATE(5642), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151266] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3350), 1, + STATE(5364), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [339217] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - ACTIONS(3352), 1, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6677), 1, anon_sym_RPAREN, - STATE(2848), 1, - aux_sym_argument_list_repeat1, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5505), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151303] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2969), 1, - sym_string, + [339237] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6679), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5547), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151334] = 9, - ACTIONS(3302), 1, - anon_sym_as, - ACTIONS(3304), 1, - anon_sym_if, - ACTIONS(3306), 1, - anon_sym_and, - ACTIONS(3308), 1, - anon_sym_or, - ACTIONS(3310), 1, - anon_sym_PLUS, + [339257] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6681), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5615), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3354), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [151367] = 4, - ACTIONS(3310), 1, - anon_sym_PLUS, + [339277] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(6523), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151390] = 11, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3356), 1, + [339289] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - ACTIONS(3358), 1, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, anon_sym_RPAREN, - STATE(2788), 1, - aux_sym_argument_list_repeat1, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5580), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151427] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2940), 1, - sym_string, + [339309] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + 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, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151458] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2970), 1, - sym_string, + [339329] = 4, + STATE(5369), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151489] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2981), 1, - sym_string, + ACTIONS(2477), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(6687), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [339345] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6689), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5607), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151520] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2939), 1, - sym_string, + [339365] = 4, + STATE(3666), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151551] = 4, - ACTIONS(3288), 1, - anon_sym_PLUS, + ACTIONS(2473), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(6687), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [339381] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6691), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5587), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 9, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + [339401] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151574] = 9, - ACTIONS(3162), 1, - anon_sym_PLUS, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6693), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5609), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3360), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [151607] = 10, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3202), 1, - anon_sym_COLON, + [339421] = 4, + STATE(5350), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, + ACTIONS(2477), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + ACTIONS(6659), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3362), 2, + [339437] = 6, + ACTIONS(6637), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151642] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2971), 1, - sym_string, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6695), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5529), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151673] = 8, - ACTIONS(1550), 1, - anon_sym_LF, - ACTIONS(3316), 1, - anon_sym_and, - ACTIONS(3318), 1, - anon_sym_or, - ACTIONS(3320), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [339457] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6697), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5595), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1548), 4, - anon_sym_as, - anon_sym_if, + [339477] = 6, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_PIPE, + ACTIONS(6699), 1, + anon_sym_RPAREN, + STATE(5379), 1, + aux_sym_union_type_repeat1, + STATE(5598), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [339497] = 5, + ACTIONS(6701), 1, anon_sym_COMMA, + ACTIONS(6703), 1, anon_sym_RBRACE, - [151704] = 5, - ACTIONS(1291), 1, + ACTIONS(6705), 1, anon_sym_LF, - ACTIONS(3320), 1, - anon_sym_PLUS, + STATE(5524), 1, + aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1289), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151729] = 8, - ACTIONS(439), 1, - sym_string_start, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, - STATE(2942), 1, - sym_string, + [339514] = 5, + ACTIONS(6707), 1, + anon_sym_EQ, + ACTIONS(6709), 1, + anon_sym_PIPE, + ACTIONS(6711), 1, + sym__newline, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [151760] = 4, - ACTIONS(3310), 1, - anon_sym_PLUS, + [339531] = 3, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2538), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [339544] = 3, + STATE(5399), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 3, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151783] = 9, - ACTIONS(3162), 1, - anon_sym_PLUS, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_PIPE, + [339557] = 4, + ACTIONS(6527), 1, + anon_sym_LBRACK, + ACTIONS(6713), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3196), 3, + ACTIONS(6523), 2, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [151816] = 5, - ACTIONS(1422), 1, - anon_sym_LF, - ACTIONS(3320), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + anon_sym_LPAREN, + [339572] = 3, + STATE(5379), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2485), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151841] = 5, - ACTIONS(1430), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + [339585] = 3, + STATE(5379), 1, + aux_sym_union_type_repeat1, + 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(3320), 1, - anon_sym_PLUS, + ACTIONS(6715), 1, + anon_sym_COMMA, + ACTIONS(6717), 1, + anon_sym_RBRACE, + STATE(5457), 1, + aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1428), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + [339615] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6719), 1, anon_sym_COMMA, + ACTIONS(6721), 1, anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151866] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + STATE(5689), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3364), 2, + [339632] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6723), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151898] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3368), 1, + ACTIONS(6725), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + STATE(5555), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151932] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3370), 1, + [339649] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(6729), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + STATE(5542), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151966] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3372), 1, - anon_sym_RBRACE, + [339666] = 3, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152000] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - sym_integer, - ACTIONS(3380), 1, - sym_float, - STATE(3218), 1, - sym_test, + ACTIONS(2534), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [339679] = 5, + ACTIONS(6709), 1, + anon_sym_PIPE, + ACTIONS(6731), 1, + anon_sym_EQ, + ACTIONS(6733), 1, + sym__newline, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3099), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [152032] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3382), 1, - anon_sym_RBRACE, + [339696] = 3, + ACTIONS(6735), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152066] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, + ACTIONS(2485), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [339709] = 3, + ACTIONS(6737), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3384), 2, + ACTIONS(2485), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [339722] = 4, + ACTIONS(6739), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152098] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3219), 1, - sym_quant_target, + STATE(5414), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152126] = 9, - ACTIONS(958), 1, - sym_string_start, - ACTIONS(1275), 1, - anon_sym_LPAREN, - ACTIONS(3392), 1, - sym_identifier, - ACTIONS(3394), 1, + ACTIONS(6741), 2, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(3396), 1, - sym_integer, - ACTIONS(3398), 1, - sym_float, - STATE(2915), 1, - sym_test, + [339737] = 4, + ACTIONS(6743), 1, + anon_sym_COMMA, + STATE(5392), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2910), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [152158] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, + ACTIONS(6746), 2, + anon_sym_DASH_GT, anon_sym_LBRACE, - STATE(3223), 1, - sym_quant_target, + [339752] = 4, + ACTIONS(2477), 1, + sym__newline, + STATE(4740), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152186] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3400), 1, + ACTIONS(5624), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [339767] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6748), 1, + anon_sym_COMMA, + ACTIONS(6750), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + STATE(5482), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152220] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, + [339784] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6752), 1, + anon_sym_COMMA, + ACTIONS(6754), 1, + anon_sym_RBRACE, + STATE(5619), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [339801] = 4, + ACTIONS(6641), 1, + anon_sym_PIPE, + STATE(5379), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3402), 2, + ACTIONS(6756), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152252] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3404), 1, + anon_sym_RPAREN, + [339816] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6758), 1, + anon_sym_COMMA, + ACTIONS(6760), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + STATE(5560), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152286] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3171), 1, - sym_quant_target, - ACTIONS(3), 2, + [339833] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6762), 1, + anon_sym_COMMA, + ACTIONS(6764), 1, + anon_sym_RBRACE, + STATE(5567), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152314] = 4, - ACTIONS(3278), 1, - anon_sym_PLUS, + [339850] = 4, + ACTIONS(6766), 1, + anon_sym_PIPE, + STATE(5399), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2507), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [152336] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3220), 1, - sym_quant_target, - ACTIONS(3), 2, + [339865] = 5, + ACTIONS(6769), 1, + anon_sym_COMMA, + ACTIONS(6772), 1, + anon_sym_RBRACE, + ACTIONS(6774), 1, + anon_sym_LF, + STATE(5400), 1, + aux_sym_config_entries_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152364] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3406), 1, + [339882] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6777), 1, + anon_sym_COMMA, + ACTIONS(6779), 1, anon_sym_RBRACE, + STATE(5684), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [339899] = 3, + STATE(5379), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152398] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3227), 1, - sym_quant_target, + ACTIONS(2507), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [339912] = 3, + ACTIONS(6781), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152426] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - sym_integer, - ACTIONS(3380), 1, - sym_float, - STATE(3148), 1, - sym_test, + ACTIONS(2528), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [339925] = 3, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3099), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [152458] = 4, - ACTIONS(3278), 1, - anon_sym_PLUS, + ACTIONS(2485), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [339938] = 5, + ACTIONS(6709), 1, + anon_sym_PIPE, + ACTIONS(6783), 1, + anon_sym_EQ, + ACTIONS(6785), 1, + sym__newline, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [152480] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3224), 1, - sym_quant_target, + [339955] = 4, + ACTIONS(6787), 1, + anon_sym_PIPE, + STATE(5406), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152508] = 9, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3408), 1, - anon_sym_as, - ACTIONS(3410), 1, - anon_sym_if, - ACTIONS(3412), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, + ACTIONS(2507), 2, + sym__newline, + anon_sym_EQ, + [339970] = 5, + ACTIONS(6709), 1, + anon_sym_PIPE, + ACTIONS(6790), 1, + anon_sym_EQ, + ACTIONS(6792), 1, + sym__newline, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3322), 2, - anon_sym_COLON, - anon_sym_LPAREN, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152540] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, + [339987] = 3, + ACTIONS(6794), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1152), 2, + ACTIONS(2514), 3, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152572] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3228), 1, - sym_quant_target, + anon_sym_RPAREN, + anon_sym_PIPE, + [340000] = 3, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152600] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, + ACTIONS(2507), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [340013] = 3, + STATE(5379), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2772), 2, + ACTIONS(2534), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [340026] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6796), 1, anon_sym_COMMA, + ACTIONS(6798), 1, anon_sym_RBRACE, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152632] = 8, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + STATE(5632), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3416), 3, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [152662] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3418), 1, + [340043] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6800), 1, + anon_sym_COMMA, + ACTIONS(6802), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + STATE(5599), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152696] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3420), 1, + [340060] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6804), 1, + anon_sym_COMMA, + ACTIONS(6806), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + STATE(5486), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152730] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3422), 1, - anon_sym_RBRACE, + [340077] = 4, + ACTIONS(6808), 1, + anon_sym_COMMA, + STATE(5392), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152764] = 7, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, + 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(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 4, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - [152792] = 10, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3424), 1, - anon_sym_if, - ACTIONS(3426), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(2514), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [340105] = 5, + ACTIONS(6709), 1, + anon_sym_PIPE, + ACTIONS(6812), 1, + anon_sym_EQ, + ACTIONS(6814), 1, sym__newline, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152826] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - sym_integer, - ACTIONS(3380), 1, - sym_float, - STATE(3084), 1, - sym_test, + [340122] = 3, + STATE(5406), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3099), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [152858] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3216), 1, - sym_quant_target, + ACTIONS(2568), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [340135] = 5, + ACTIONS(6709), 1, + 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, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152886] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3215), 1, - sym_quant_target, + [340152] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6820), 1, + anon_sym_COMMA, + ACTIONS(6822), 1, + anon_sym_RBRACE, + STATE(5682), 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, + sym_comment, + sym_line_continuation, + [340186] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6830), 1, + anon_sym_COMMA, + ACTIONS(6832), 1, + anon_sym_RBRACE, + STATE(5456), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [340203] = 5, + ACTIONS(6709), 1, + anon_sym_PIPE, + ACTIONS(6834), 1, + anon_sym_EQ, + ACTIONS(6836), 1, + sym__newline, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [152914] = 9, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3408), 1, - anon_sym_as, - ACTIONS(3410), 1, - anon_sym_if, - ACTIONS(3412), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, + [340220] = 3, + ACTIONS(6838), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1567), 2, - anon_sym_COLON, - anon_sym_LPAREN, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [152946] = 7, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3412), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, + ACTIONS(2528), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [340233] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6840), 1, + anon_sym_COMMA, + ACTIONS(6842), 1, + anon_sym_RBRACE, + STATE(5596), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1550), 4, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_LPAREN, - [152974] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3430), 1, + [340267] = 5, + ACTIONS(5606), 1, anon_sym_RBRACE, + ACTIONS(6848), 1, + anon_sym_COMMA, + ACTIONS(6850), 1, + anon_sym_LF, + STATE(5400), 1, + aux_sym_config_entries_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [340284] = 5, + ACTIONS(6709), 1, + anon_sym_PIPE, + ACTIONS(6852), 1, + anon_sym_EQ, + ACTIONS(6854), 1, + sym__newline, + STATE(5417), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153008] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3432), 1, + [340301] = 5, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(6856), 1, + anon_sym_COMMA, + ACTIONS(6858), 1, anon_sym_RBRACE, + STATE(5541), 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, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153042] = 9, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3408), 1, - anon_sym_as, - ACTIONS(3410), 1, - anon_sym_if, - ACTIONS(3412), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, + [340332] = 4, + ACTIONS(2037), 1, + anon_sym_RPAREN, + ACTIONS(6862), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3354), 2, - anon_sym_COLON, - anon_sym_LPAREN, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153074] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3091), 1, - sym_quant_target, + [340346] = 3, + ACTIONS(6864), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153102] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, + ACTIONS(2514), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [340358] = 4, + ACTIONS(6866), 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, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153134] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, + [340372] = 3, + ACTIONS(6870), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3434), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153166] = 10, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3436), 1, - anon_sym_if, - ACTIONS(3438), 1, - anon_sym_COMMA, - ACTIONS(3440), 1, - sym__newline, + ACTIONS(2528), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [340384] = 4, + ACTIONS(2507), 1, + anon_sym_RBRACE, + ACTIONS(6872), 1, + anon_sym_PIPE, + STATE(5434), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153200] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3442), 1, + [340398] = 3, + STATE(5477), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2534), 2, anon_sym_RBRACE, + 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(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153234] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3225), 1, - sym_quant_target, + [340424] = 4, + ACTIONS(6879), 1, + anon_sym_COMMA, + ACTIONS(6881), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153262] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3203), 1, - sym_quant_target, + [340438] = 4, + ACTIONS(2079), 1, + anon_sym_RPAREN, + ACTIONS(6883), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153290] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3167), 1, - sym_quant_target, + [340452] = 3, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153318] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, + ACTIONS(2534), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [340464] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(6885), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3444), 2, + [340478] = 4, + ACTIONS(6489), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153350] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3212), 1, - sym_quant_target, + ACTIONS(6491), 1, + anon_sym_RBRACE, + STATE(5682), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153378] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - sym_integer, - ACTIONS(3380), 1, - sym_float, - STATE(3265), 1, - sym_test, + [340492] = 4, + ACTIONS(6887), 1, + anon_sym_RBRACK, + ACTIONS(6889), 1, + anon_sym_PIPE, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3099), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [153410] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3446), 1, + [340506] = 4, + ACTIONS(5234), 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, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153444] = 7, - ACTIONS(2349), 1, - anon_sym_not, - ACTIONS(2365), 1, - anon_sym_is, - ACTIONS(3448), 1, - sym__newline, - STATE(2239), 1, - aux_sym_comparison_operator_repeat1, + [340520] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6891), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [153472] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - sym_integer, - ACTIONS(3380), 1, - sym_float, - STATE(3267), 1, - sym_test, + [340534] = 4, + 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, - STATE(3099), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [153504] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3450), 1, - anon_sym_RBRACE, + [340548] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5770), 1, + anon_sym_RBRACK, + STATE(5436), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153538] = 8, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, + [340562] = 4, + ACTIONS(5828), 1, + anon_sym_COMMA, + ACTIONS(5830), 1, + anon_sym_RPAREN, + STATE(5438), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3416), 3, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_for, - [153568] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, + [340576] = 4, + ACTIONS(5788), 1, + anon_sym_COMMA, + ACTIONS(5790), 1, + anon_sym_RBRACK, + STATE(5462), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1176), 2, + [340590] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(6893), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [340604] = 4, + ACTIONS(5714), 1, anon_sym_COMMA, + ACTIONS(5716), 1, anon_sym_RBRACK, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153600] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3452), 1, - anon_sym_RBRACE, + STATE(5484), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153634] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3211), 1, - sym_quant_target, + [340618] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(6895), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153662] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3454), 1, - anon_sym_RBRACE, + [340632] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6897), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153696] = 10, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3456), 1, - anon_sym_if, - ACTIONS(3458), 1, + [340646] = 4, + ACTIONS(6637), 1, anon_sym_COMMA, - ACTIONS(3460), 1, - sym__newline, + ACTIONS(6899), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153730] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - sym_integer, - ACTIONS(3380), 1, - sym_float, - STATE(3268), 1, - sym_test, + [340660] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(6901), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3099), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [153762] = 10, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3462), 1, + [340674] = 4, + ACTIONS(5158), 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, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153796] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3208), 1, - sym_quant_target, + [340688] = 4, + ACTIONS(1670), 1, + anon_sym_RBRACE, + ACTIONS(6903), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153824] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3207), 1, - sym_quant_target, + [340702] = 4, + ACTIONS(1594), 1, + anon_sym_RBRACE, + ACTIONS(6905), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153852] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - sym_integer, - ACTIONS(3380), 1, - sym_float, - STATE(3271), 1, - sym_test, + [340716] = 4, + ACTIONS(2159), 1, + anon_sym_RPAREN, + ACTIONS(6907), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3099), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [153884] = 7, - ACTIONS(475), 1, - sym_string_start, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LBRACK, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(3204), 1, - sym_quant_target, + [340730] = 4, + ACTIONS(5298), 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, - STATE(3095), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153912] = 9, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3376), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - sym_integer, - ACTIONS(3380), 1, - sym_float, - STATE(3156), 1, - sym_test, + [340744] = 4, + ACTIONS(6909), 1, + anon_sym_COMMA, + ACTIONS(6911), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3099), 4, - sym_dotted_name, - sym_paren_expression, - sym_config_expr, - sym_string, - [153944] = 4, - ACTIONS(3278), 1, - anon_sym_PLUS, + [340758] = 4, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(6916), 1, + anon_sym_RBRACK, + STATE(5461), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + [340772] = 4, + ACTIONS(6918), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [153966] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3464), 1, - anon_sym_if, - ACTIONS(3466), 1, - anon_sym_RBRACE, + ACTIONS(6920), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153997] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3468), 1, - anon_sym_RPAREN, + [340786] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [340800] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(6924), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154028] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3470), 1, - sym__newline, + [340814] = 4, + ACTIONS(6619), 1, + anon_sym_COMMA, + ACTIONS(6621), 1, + anon_sym_RBRACE, + STATE(5542), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154059] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3472), 1, - anon_sym_else, + [340828] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(6926), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154090] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3474), 1, - anon_sym_else, + [340842] = 4, + ACTIONS(1990), 1, + anon_sym_RPAREN, + ACTIONS(6928), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154121] = 6, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(1285), 1, - aux_sym_comparison_operator_repeat1, + [340856] = 3, + ACTIONS(6930), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154146] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3476), 1, - anon_sym_else, + ACTIONS(2485), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [340868] = 4, + ACTIONS(6932), 1, + anon_sym_COMMA, + ACTIONS(6934), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154177] = 6, - ACTIONS(2052), 1, - anon_sym_not, - ACTIONS(2070), 1, - anon_sym_is, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, + [340882] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(6936), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2044), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154202] = 6, - ACTIONS(2263), 1, - anon_sym_not, - ACTIONS(2267), 1, - anon_sym_is, - STATE(1580), 1, - aux_sym_comparison_operator_repeat1, + [340896] = 4, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(6629), 1, + anon_sym_RBRACE, + STATE(5689), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2261), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154227] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3478), 1, - anon_sym_else, + [340910] = 3, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154258] = 6, - ACTIONS(3480), 1, - anon_sym_not, - ACTIONS(3482), 1, - anon_sym_is, - STATE(1202), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2538), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [340922] = 4, + ACTIONS(5806), 1, + anon_sym_COMMA, + ACTIONS(5808), 1, + anon_sym_RPAREN, + STATE(5671), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154283] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3484), 1, - sym__newline, + [340936] = 3, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154314] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3486), 1, + ACTIONS(2485), 2, anon_sym_RBRACE, + anon_sym_PIPE, + [340948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154345] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, + ACTIONS(6938), 3, anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3448), 1, - sym__newline, + anon_sym_for, + anon_sym_RBRACK, + [340958] = 3, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154376] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3488), 1, - anon_sym_else, + ACTIONS(2507), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [340970] = 3, + STATE(5434), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154407] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3490), 1, - anon_sym_RPAREN, + ACTIONS(2568), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [340982] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154438] = 6, - ACTIONS(2349), 1, - anon_sym_not, - ACTIONS(2365), 1, - anon_sym_is, - STATE(1645), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(6938), 3, + anon_sym_if, + anon_sym_for, + anon_sym_RBRACE, + [340992] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(6940), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154463] = 6, - ACTIONS(2263), 1, - anon_sym_not, - ACTIONS(2267), 1, - anon_sym_is, - STATE(2233), 1, - aux_sym_comparison_operator_repeat1, + [341006] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2261), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154488] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3492), 1, + [341020] = 4, + ACTIONS(6598), 1, + anon_sym_COMMA, + ACTIONS(6600), 1, anon_sym_RBRACE, + STATE(5684), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154519] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3494), 1, + [341034] = 4, + ACTIONS(1654), 1, anon_sym_RBRACE, + ACTIONS(6944), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154550] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3496), 1, + [341048] = 4, + ACTIONS(5784), 1, + anon_sym_COMMA, + ACTIONS(5786), 1, anon_sym_RBRACK, + STATE(5663), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154581] = 6, - ACTIONS(2544), 1, - anon_sym_not, - ACTIONS(2560), 1, - anon_sym_is, - STATE(1901), 1, - aux_sym_comparison_operator_repeat1, + [341062] = 4, + ACTIONS(6946), 1, + anon_sym_COMMA, + ACTIONS(6948), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2536), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154606] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3498), 1, - anon_sym_if, - ACTIONS(3500), 1, + [341076] = 3, + ACTIONS(6950), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [341088] = 4, + ACTIONS(1600), 1, anon_sym_RBRACE, + ACTIONS(6952), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154637] = 6, - ACTIONS(3504), 1, - anon_sym_not, - ACTIONS(3506), 1, - anon_sym_is, - STATE(1820), 1, - aux_sym_comparison_operator_repeat1, + [341102] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(6954), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2427), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3502), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154662] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3508), 1, - anon_sym_RPAREN, + [341116] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(6956), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154693] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3510), 1, - anon_sym_if, - ACTIONS(3512), 1, + [341130] = 4, + ACTIONS(6507), 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, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154724] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3514), 1, - anon_sym_RBRACE, + [341144] = 4, + ACTIONS(2195), 1, + anon_sym_RPAREN, + ACTIONS(6958), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154755] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3516), 1, + [341158] = 3, + STATE(5581), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2538), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [341170] = 4, + ACTIONS(6611), 1, + anon_sym_COMMA, + ACTIONS(6613), 1, anon_sym_RBRACE, + STATE(5599), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154786] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3518), 1, - anon_sym_else, + [341184] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(6960), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154817] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3520), 1, + [341198] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(6962), 1, anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154848] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3522), 1, + [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, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154879] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3524), 1, - anon_sym_if, - ACTIONS(3526), 1, - anon_sym_RBRACE, + [341226] = 4, + ACTIONS(5872), 1, + anon_sym_COMMA, + ACTIONS(5874), 1, + anon_sym_RPAREN, + STATE(5513), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154910] = 6, - ACTIONS(3528), 1, - anon_sym_not, - ACTIONS(3530), 1, - anon_sym_is, - STATE(873), 1, - aux_sym_comparison_operator_repeat1, + [341240] = 4, + ACTIONS(6966), 1, + anon_sym_COMMA, + ACTIONS(6968), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1506), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154935] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3532), 1, - anon_sym_else, + [341254] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(6970), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154966] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3534), 1, + [341268] = 4, + ACTIONS(5688), 1, + anon_sym_COMMA, + ACTIONS(5692), 1, anon_sym_RBRACK, + STATE(5518), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154997] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3536), 1, - anon_sym_else, + [341282] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(6972), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155028] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3538), 1, - anon_sym_if, - ACTIONS(3540), 1, - anon_sym_RBRACE, + [341296] = 4, + ACTIONS(6974), 1, + anon_sym_COMMA, + ACTIONS(6976), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155059] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3542), 1, - anon_sym_else, + [341310] = 4, + ACTIONS(6978), 1, + anon_sym_COMMA, + ACTIONS(6980), 1, + anon_sym_RBRACK, + STATE(5461), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155090] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3336), 1, - sym__newline, + [341324] = 4, + ACTIONS(6982), 1, + anon_sym_COMMA, + ACTIONS(6984), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155121] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3544), 1, - anon_sym_else, + [341338] = 4, + ACTIONS(2083), 1, + anon_sym_RPAREN, + ACTIONS(6986), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155152] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3546), 1, - anon_sym_if, - ACTIONS(3548), 1, - anon_sym_RBRACE, + [341352] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6988), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155183] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3460), 1, - sym__newline, + [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, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155214] = 6, - ACTIONS(2414), 1, - anon_sym_not, - ACTIONS(2418), 1, - anon_sym_is, - STATE(1783), 1, - aux_sym_comparison_operator_repeat1, + [341380] = 4, + ACTIONS(5324), 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, - ACTIONS(2416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2412), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155239] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3550), 1, - anon_sym_else, + [341394] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(6994), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155270] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3552), 1, + [341408] = 4, + ACTIONS(5238), 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, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155301] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3334), 1, - anon_sym_else, - ACTIONS(3414), 1, - anon_sym_PLUS, + [341422] = 4, + ACTIONS(6541), 1, + anon_sym_COMMA, + ACTIONS(6543), 1, + anon_sym_RBRACE, + STATE(5555), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155332] = 6, - ACTIONS(3480), 1, - anon_sym_not, - ACTIONS(3482), 1, - anon_sym_is, - STATE(1085), 1, - aux_sym_comparison_operator_repeat1, + [341436] = 4, + ACTIONS(2183), 1, + anon_sym_RPAREN, + ACTIONS(6996), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155357] = 6, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(2062), 1, - aux_sym_comparison_operator_repeat1, + [341450] = 4, + ACTIONS(5706), 1, + anon_sym_COMMA, + ACTIONS(5708), 1, + anon_sym_RBRACK, + STATE(5497), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155382] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3554), 1, - anon_sym_else, + [341464] = 4, + ACTIONS(2353), 1, + anon_sym_RPAREN, + ACTIONS(6998), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155413] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3556), 1, - anon_sym_RBRACK, + [341478] = 4, + ACTIONS(5894), 1, + anon_sym_COMMA, + ACTIONS(5896), 1, + anon_sym_RPAREN, + STATE(5504), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155444] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3558), 1, - anon_sym_if, - ACTIONS(3560), 1, - anon_sym_RBRACE, + [341492] = 4, + ACTIONS(7000), 1, + anon_sym_COMMA, + ACTIONS(7002), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155475] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3562), 1, - anon_sym_if, - ACTIONS(3564), 1, - anon_sym_RBRACE, + [341506] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7004), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155506] = 6, - ACTIONS(3566), 1, - anon_sym_not, - ACTIONS(3568), 1, - anon_sym_is, - STATE(1105), 1, - aux_sym_comparison_operator_repeat1, + [341520] = 4, + ACTIONS(7006), 1, + anon_sym_COMMA, + ACTIONS(7008), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1454), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155531] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3570), 1, - anon_sym_if, - ACTIONS(3572), 1, - anon_sym_RBRACE, + [341534] = 4, + ACTIONS(7010), 1, + anon_sym_COMMA, + ACTIONS(7012), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155562] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3574), 1, - anon_sym_else, + [341548] = 4, + ACTIONS(6889), 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, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155593] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3576), 1, - anon_sym_RBRACE, + [341562] = 3, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155624] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3578), 1, - anon_sym_if, - ACTIONS(3580), 1, - anon_sym_RBRACE, + ACTIONS(2507), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [341574] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(7016), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155655] = 6, - ACTIONS(3566), 1, - anon_sym_not, - ACTIONS(3568), 1, - anon_sym_is, - STATE(868), 1, - aux_sym_comparison_operator_repeat1, + [341588] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7018), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1450), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1454), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155680] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3582), 1, - anon_sym_RPAREN, + [341602] = 4, + ACTIONS(6551), 1, + anon_sym_COMMA, + ACTIONS(6553), 1, + anon_sym_RBRACE, + STATE(5596), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155711] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3584), 1, + [341616] = 4, + ACTIONS(1686), 1, anon_sym_RBRACE, + ACTIONS(7020), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155742] = 6, - ACTIONS(2203), 1, - anon_sym_not, - ACTIONS(2207), 1, - anon_sym_is, - STATE(2228), 1, - aux_sym_comparison_operator_repeat1, + [341630] = 4, + ACTIONS(7022), 1, + anon_sym_COMMA, + ACTIONS(7024), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2201), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155767] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3586), 1, + [341644] = 4, + ACTIONS(6519), 1, + anon_sym_COMMA, + ACTIONS(6521), 1, anon_sym_RBRACE, + STATE(5482), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155798] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3588), 1, - anon_sym_if, - ACTIONS(3590), 1, + [341658] = 4, + ACTIONS(5292), 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, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155829] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3592), 1, - anon_sym_COLON, + [341672] = 4, + ACTIONS(2223), 1, + anon_sym_RPAREN, + ACTIONS(7026), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155860] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3594), 1, - anon_sym_else, + [341686] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7028), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155891] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3596), 1, - anon_sym_RBRACK, + [341700] = 3, + ACTIONS(7030), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155922] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3598), 1, - sym__newline, + ACTIONS(2485), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [341712] = 4, + ACTIONS(6501), 1, + anon_sym_COMMA, + ACTIONS(6503), 1, + anon_sym_RBRACE, + STATE(5632), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155953] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3600), 1, + [341726] = 4, + ACTIONS(6533), 1, + anon_sym_COMMA, + ACTIONS(6535), 1, anon_sym_RBRACE, + STATE(5457), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155984] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3602), 1, - anon_sym_else, + [341740] = 4, + ACTIONS(5188), 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, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156015] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3604), 1, + [341754] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7032), 1, + anon_sym_COLON, + STATE(5271), 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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [341782] = 4, + ACTIONS(5780), 1, + anon_sym_COMMA, + ACTIONS(5782), 1, anon_sym_RBRACK, + STATE(5517), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156046] = 6, - ACTIONS(3528), 1, - anon_sym_not, - ACTIONS(3530), 1, - anon_sym_is, - STATE(1124), 1, - aux_sym_comparison_operator_repeat1, + [341796] = 4, + ACTIONS(5852), 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(1506), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1528), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156071] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3428), 1, - sym__newline, + [341810] = 4, + ACTIONS(2507), 1, + anon_sym_RBRACK, + ACTIONS(7036), 1, + anon_sym_PIPE, + STATE(5538), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156102] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3606), 1, - anon_sym_else, + [341824] = 4, + ACTIONS(6623), 1, + anon_sym_COMMA, + ACTIONS(6625), 1, + anon_sym_RBRACE, + STATE(5567), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156133] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3608), 1, - anon_sym_COLON, + [341838] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(7039), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156164] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3610), 1, - sym__newline, + [341852] = 4, + ACTIONS(1646), 1, + anon_sym_RBRACE, + ACTIONS(7041), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [341866] = 4, + ACTIONS(1618), 1, + anon_sym_RBRACE, + ACTIONS(7043), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156195] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3612), 1, - anon_sym_COLON, + [341880] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(7045), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156226] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3614), 1, - anon_sym_if, - ACTIONS(3616), 1, - anon_sym_RBRACE, + [341894] = 4, + ACTIONS(5764), 1, + anon_sym_COMMA, + ACTIONS(5766), 1, + anon_sym_RBRACK, + STATE(5503), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156257] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3618), 1, + [341908] = 4, + ACTIONS(5882), 1, + anon_sym_COMMA, + ACTIONS(5884), 1, anon_sym_RPAREN, + STATE(5553), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156288] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3620), 1, - anon_sym_else, + [341922] = 4, + ACTIONS(5742), 1, + anon_sym_COMMA, + ACTIONS(5744), 1, + anon_sym_RBRACK, + STATE(5556), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156319] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3622), 1, + [341936] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7047), 1, anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156350] = 6, - ACTIONS(3504), 1, - anon_sym_not, - ACTIONS(3506), 1, - anon_sym_is, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [341950] = 4, + ACTIONS(6513), 1, + anon_sym_COMMA, + ACTIONS(6515), 1, + anon_sym_RBRACE, + STATE(5619), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2427), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3502), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156375] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3624), 1, - anon_sym_RBRACK, + [341964] = 4, + ACTIONS(5164), 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, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156406] = 6, - ACTIONS(2544), 1, - anon_sym_not, - ACTIONS(2560), 1, - anon_sym_is, - STATE(2253), 1, - aux_sym_comparison_operator_repeat1, + [341978] = 4, + ACTIONS(7049), 1, + anon_sym_COMMA, + ACTIONS(7052), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2558), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2536), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156431] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3626), 1, + [341992] = 4, + ACTIONS(5912), 1, + anon_sym_COMMA, + ACTIONS(5914), 1, anon_sym_RPAREN, + STATE(5511), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156462] = 6, - ACTIONS(2414), 1, - anon_sym_not, - ACTIONS(2418), 1, - anon_sym_is, - STATE(2244), 1, - aux_sym_comparison_operator_repeat1, + [342006] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7054), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2416), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2412), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156487] = 6, - ACTIONS(2203), 1, - anon_sym_not, - ACTIONS(2207), 1, - anon_sym_is, - STATE(1471), 1, - aux_sym_comparison_operator_repeat1, + [342020] = 4, + ACTIONS(2263), 1, + anon_sym_RPAREN, + ACTIONS(7056), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2205), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2201), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156512] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3628), 1, - anon_sym_if, - ACTIONS(3630), 1, - anon_sym_RBRACE, + [342034] = 4, + ACTIONS(7058), 1, + anon_sym_COMMA, + ACTIONS(7060), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156543] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3632), 1, - anon_sym_else, + [342048] = 4, + ACTIONS(1678), 1, + anon_sym_RBRACE, + ACTIONS(7062), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156574] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3634), 1, - anon_sym_RPAREN, + [342062] = 4, + ACTIONS(7064), 1, + anon_sym_COMMA, + ACTIONS(7066), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156605] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3636), 1, + [342076] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7068), 1, anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156636] = 6, - ACTIONS(2102), 1, - anon_sym_not, - ACTIONS(2104), 1, - anon_sym_is, - STATE(2268), 1, - aux_sym_comparison_operator_repeat1, + [342090] = 4, + ACTIONS(7070), 1, + anon_sym_COMMA, + ACTIONS(7072), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1351), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1373), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156661] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3638), 1, - anon_sym_else, + [342104] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(7074), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156692] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3640), 1, + [342118] = 4, + ACTIONS(1642), 1, anon_sym_RBRACE, + ACTIONS(7076), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156723] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3642), 1, - anon_sym_RBRACE, + [342132] = 4, + ACTIONS(5918), 1, + anon_sym_RPAREN, + ACTIONS(7078), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156754] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3644), 1, - anon_sym_RBRACE, + [342146] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(7081), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156785] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3646), 1, - anon_sym_then, + [342160] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(7083), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156816] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3648), 1, - anon_sym_if, - ACTIONS(3650), 1, + [342174] = 4, + ACTIONS(6633), 1, + anon_sym_COMMA, + ACTIONS(6635), 1, anon_sym_RBRACE, + STATE(5560), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156847] = 4, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, + [342188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1329), 7, - anon_sym_COMMA, + ACTIONS(5678), 3, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [156868] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3652), 1, - anon_sym_if, - ACTIONS(3654), 1, - anon_sym_RBRACE, + anon_sym_PLUS_EQ, + [342198] = 4, + ACTIONS(6455), 1, + sym_identifier, + STATE(5752), 1, + sym_dotted_name, + STATE(5821), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156899] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3656), 1, - anon_sym_if, - ACTIONS(3658), 1, + [342212] = 4, + ACTIONS(1650), 1, anon_sym_RBRACE, + ACTIONS(7085), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156930] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3660), 1, - anon_sym_if, - ACTIONS(3662), 1, + [342226] = 4, + ACTIONS(6537), 1, + anon_sym_COMMA, + ACTIONS(6539), 1, anon_sym_RBRACE, + STATE(5524), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156961] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3664), 1, + [342240] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7087), 1, anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156992] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3666), 1, - anon_sym_else, + [342254] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157023] = 9, - ACTIONS(3280), 1, - anon_sym_as, - ACTIONS(3282), 1, - anon_sym_if, - ACTIONS(3284), 1, - anon_sym_and, - ACTIONS(3286), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_PLUS, - ACTIONS(3668), 1, - sym__newline, + [342268] = 3, + ACTIONS(7091), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157054] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3670), 1, - anon_sym_if, - ACTIONS(3672), 1, - anon_sym_RBRACE, + ACTIONS(2528), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [342280] = 4, + 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, + [342294] = 4, + ACTIONS(7093), 1, + anon_sym_COMMA, + ACTIONS(7095), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, + [342308] = 4, + ACTIONS(7097), 1, + sym_identifier, + ACTIONS(7099), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157085] = 6, - ACTIONS(2349), 1, - anon_sym_not, - ACTIONS(2365), 1, - anon_sym_is, - STATE(2239), 1, - aux_sym_comparison_operator_repeat1, + STATE(5591), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2341), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [157110] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3674), 1, - anon_sym_COLON, + [342322] = 4, + ACTIONS(7101), 1, + anon_sym_COMMA, + ACTIONS(7103), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157141] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3366), 1, - anon_sym_else, - ACTIONS(3414), 1, - anon_sym_PLUS, + [342336] = 4, + 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(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157172] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3676), 1, - anon_sym_RBRACK, + [342350] = 4, + ACTIONS(2103), 1, + anon_sym_RPAREN, + ACTIONS(7105), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157203] = 9, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3192), 1, - anon_sym_and, - ACTIONS(3194), 1, - anon_sym_or, - ACTIONS(3414), 1, - anon_sym_PLUS, - ACTIONS(3678), 1, - anon_sym_else, + [342364] = 4, + ACTIONS(5816), 1, + anon_sym_COMMA, + ACTIONS(5818), 1, + anon_sym_RPAREN, + STATE(5611), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157234] = 9, - ACTIONS(3136), 1, - anon_sym_as, - ACTIONS(3138), 1, - anon_sym_if, - ACTIONS(3140), 1, - anon_sym_and, - ACTIONS(3142), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(3680), 1, + [342378] = 4, + ACTIONS(5286), 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, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157265] = 9, - ACTIONS(3266), 1, - anon_sym_as, - ACTIONS(3268), 1, - anon_sym_if, - ACTIONS(3274), 1, - anon_sym_and, - ACTIONS(3276), 1, - anon_sym_or, - ACTIONS(3278), 1, - anon_sym_PLUS, - ACTIONS(3682), 1, + [342392] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7107), 1, anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157296] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3684), 1, + [342406] = 3, + STATE(5538), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 2, anon_sym_RBRACK, + 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, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157327] = 9, - ACTIONS(3146), 1, - anon_sym_as, - ACTIONS(3148), 1, - anon_sym_if, - ACTIONS(3156), 1, - anon_sym_and, - ACTIONS(3158), 1, - anon_sym_or, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(3686), 1, + [342432] = 4, + ACTIONS(5774), 1, + anon_sym_COMMA, + ACTIONS(5776), 1, anon_sym_RBRACK, + STATE(5558), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157358] = 4, - ACTIONS(3690), 1, - anon_sym_AT, + [342446] = 4, + ACTIONS(5702), 1, + anon_sym_COMMA, + ACTIONS(5704), 1, + anon_sym_RBRACK, + STATE(5573), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2561), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3688), 6, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - [157378] = 7, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3695), 1, - anon_sym_or, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342460] = 4, + 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(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1550), 2, - anon_sym_as, - anon_sym_if, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157404] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342474] = 4, + ACTIONS(5630), 1, + anon_sym_COMMA, + ACTIONS(7111), 1, + anon_sym_RBRACK, + STATE(5621), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157424] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342488] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7113), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157444] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3703), 1, - anon_sym_or, + [342502] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7115), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1251), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157472] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3695), 1, - anon_sym_or, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, + [342516] = 4, + ACTIONS(5720), 1, + anon_sym_COMMA, + ACTIONS(5722), 1, + anon_sym_RBRACK, + STATE(5620), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157500] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3705), 1, - anon_sym_or, + [342530] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7117), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, + [342544] = 4, + ACTIONS(7119), 1, + sym_identifier, + ACTIONS(7121), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157528] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3707), 1, - anon_sym_or, + STATE(5591), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157556] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342558] = 4, + ACTIONS(6756), 1, + anon_sym_RPAREN, + ACTIONS(7124), 1, + anon_sym_COMMA, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157576] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3709), 1, - anon_sym_or, + [342572] = 4, + ACTIONS(5630), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACK, + STATE(5586), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(784), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157604] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342586] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(7127), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157624] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3695), 1, - anon_sym_or, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3711), 1, - anon_sym_PLUS, + [342600] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7129), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157652] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3695), 1, - anon_sym_or, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3713), 1, - anon_sym_PLUS, + [342614] = 4, + ACTIONS(1624), 1, + anon_sym_RBRACE, + ACTIONS(7131), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157680] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342628] = 4, + ACTIONS(5208), 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, - STATE(1740), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157700] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3715), 1, - anon_sym_or, + [342642] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7133), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1482), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157728] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3695), 1, - anon_sym_or, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, + [342656] = 4, + ACTIONS(1584), 1, + anon_sym_RBRACE, + ACTIONS(7135), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157756] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342670] = 4, + ACTIONS(6889), 1, + anon_sym_PIPE, + ACTIONS(7137), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1291), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157776] = 7, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(3717), 1, - anon_sym_LPAREN, - STATE(1942), 1, - sym_dict_expr, - STATE(2281), 1, - aux_sym_dotted_name_repeat1, + [342684] = 4, + ACTIONS(5154), 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, - ACTIONS(3144), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1329), 3, - sym__newline, - anon_sym_EQ, + [342698] = 4, + ACTIONS(5886), 1, + anon_sym_COMMA, + ACTIONS(5888), 1, + anon_sym_RPAREN, + STATE(5612), 1, + aux_sym_argument_list_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [342726] = 4, + ACTIONS(2061), 1, + anon_sym_RPAREN, + ACTIONS(7139), 1, + anon_sym_COMMA, + STATE(5561), 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, + sym_comment, + sym_line_continuation, + ACTIONS(7141), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [342752] = 4, + ACTIONS(6651), 1, anon_sym_PIPE, - [157802] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3719), 1, - anon_sym_or, + ACTIONS(7145), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157830] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342766] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7147), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1422), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157850] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342780] = 4, + ACTIONS(7149), 1, + anon_sym_COMMA, + ACTIONS(7151), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(792), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157870] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342794] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7153), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157890] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3721), 1, - anon_sym_or, + [342808] = 4, + ACTIONS(5156), 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, - ACTIONS(1315), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1022), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157918] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342822] = 4, + ACTIONS(2117), 1, + anon_sym_RPAREN, + ACTIONS(7155), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1224), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [157938] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3723), 1, - anon_sym_or, + [342836] = 4, + ACTIONS(2209), 1, + anon_sym_RPAREN, + ACTIONS(7157), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(565), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1175), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157966] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3725), 1, - anon_sym_or, + [342850] = 4, + ACTIONS(7159), 1, + anon_sym_COMMA, + ACTIONS(7161), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(605), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157994] = 4, - ACTIONS(3697), 1, - anon_sym_PLUS, + [342864] = 4, + ACTIONS(7163), 1, + anon_sym_COMMA, + ACTIONS(7165), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1508), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [158014] = 8, - ACTIONS(3693), 1, - anon_sym_and, - ACTIONS(3697), 1, - anon_sym_PLUS, - ACTIONS(3699), 1, - anon_sym_as, - ACTIONS(3701), 1, - anon_sym_if, - ACTIONS(3727), 1, - anon_sym_or, + [342878] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7167), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1281), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1569), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [158042] = 6, - ACTIONS(3733), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [342892] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7169), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2609), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158065] = 6, - ACTIONS(3735), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [342906] = 4, + ACTIONS(7171), 1, + anon_sym_COMMA, + ACTIONS(7173), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2599), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158088] = 6, - ACTIONS(3737), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [342920] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7175), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2601), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158111] = 6, - ACTIONS(3739), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [342934] = 4, + ACTIONS(1612), 1, + anon_sym_RBRACE, + ACTIONS(7177), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158134] = 6, - ACTIONS(3741), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [342948] = 4, + ACTIONS(7179), 1, + anon_sym_COMMA, + ACTIONS(7181), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [342962] = 4, + ACTIONS(5972), 1, + anon_sym_RBRACK, + ACTIONS(7183), 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, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [342990] = 4, + ACTIONS(6567), 1, + anon_sym_COMMA, + ACTIONS(6569), 1, + anon_sym_RBRACE, + STATE(5541), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2607), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158157] = 6, - ACTIONS(3743), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343004] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7188), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158180] = 6, - ACTIONS(3745), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343018] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7190), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2594), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158203] = 6, - ACTIONS(3747), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343032] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7192), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2592), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158226] = 6, - ACTIONS(3749), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343046] = 4, + ACTIONS(7194), 1, + anon_sym_COMMA, + ACTIONS(7196), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158249] = 6, - ACTIONS(3751), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343060] = 4, + ACTIONS(7198), 1, + anon_sym_COMMA, + ACTIONS(7200), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2600), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158272] = 6, - ACTIONS(3753), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, + [343074] = 3, + ACTIONS(7204), 1, + anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158295] = 6, - ACTIONS(3755), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + ACTIONS(7202), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [343086] = 3, + STATE(5581), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158318] = 6, - ACTIONS(3757), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + ACTIONS(2485), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [343098] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7206), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158341] = 5, - ACTIONS(521), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3759), 1, - sym_identifier, - STATE(3144), 1, - sym_basic_type, + [343112] = 4, + ACTIONS(1662), 1, + anon_sym_RBRACE, + ACTIONS(7208), 1, + anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [158362] = 5, - ACTIONS(551), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3761), 1, - sym_identifier, - STATE(3230), 1, - sym_basic_type, + [343126] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7210), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(541), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [158383] = 6, - ACTIONS(3763), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343140] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7212), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158406] = 6, - ACTIONS(3765), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343154] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7214), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2604), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158429] = 6, - ACTIONS(3773), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343168] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7216), 1, + anon_sym_RBRACE, + STATE(5477), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3767), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3770), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158452] = 6, - ACTIONS(3775), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343182] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7218), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158475] = 6, - ACTIONS(3777), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343196] = 4, + ACTIONS(4712), 1, + anon_sym_LPAREN, + ACTIONS(7220), 1, + anon_sym_RPAREN, + STATE(5830), 1, + sym_argument_list, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2597), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158498] = 6, - ACTIONS(3779), 1, - sym_string_end, - STATE(2655), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [343210] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7222), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3731), 2, - sym__not_escape_sequence, - sym__string_content, - STATE(2606), 2, - sym_string_content, - aux_sym_raw_string_repeat1, - [158521] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2850), 1, - sym_parameter, + [343224] = 4, + ACTIONS(7224), 1, + anon_sym_COMMA, + ACTIONS(7226), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3783), 2, - anon_sym_DASH_GT, + [343238] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7228), 1, anon_sym_LBRACE, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158541] = 4, - STATE(2281), 1, - aux_sym_dotted_name_repeat1, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3144), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1329), 4, - sym__newline, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - [158559] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2850), 1, - sym_parameter, + [343252] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3785), 2, + ACTIONS(6746), 3, + anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158579] = 4, - ACTIONS(3787), 1, - anon_sym_DOT_DOT_DOT, - STATE(3025), 1, - sym_basic_type, + [343262] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7230), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [158597] = 8, - ACTIONS(3791), 1, - sym_identifier, - ACTIONS(3793), 1, - anon_sym_DOT, - STATE(2820), 1, - sym_import_prefix, - STATE(2824), 1, - aux_sym_import_prefix_repeat1, - STATE(2947), 1, - sym_dotted_name, - STATE(3086), 1, - sym__import_list, - STATE(3173), 1, - sym_aliased_import, + [343276] = 3, + ACTIONS(5678), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5680), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [343288] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7232), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158623] = 2, + [343302] = 4, + ACTIONS(7234), 1, + anon_sym_COMMA, + ACTIONS(7236), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3795), 7, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_AT, - [158637] = 4, - ACTIONS(3797), 1, - anon_sym_DOT_DOT_DOT, - STATE(3239), 1, - sym_basic_type, + [343316] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7238), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [158655] = 4, - ACTIONS(557), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, + [343330] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7240), 1, anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1328), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [158672] = 4, - STATE(2064), 1, - aux_sym_dotted_name_repeat1, + [343344] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7242), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1329), 3, + [343358] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7204), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [158689] = 3, - STATE(2665), 1, + [343368] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7244), 1, + anon_sym_LBRACE, + STATE(5271), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, + [343382] = 4, + ACTIONS(7246), 1, + anon_sym_COMMA, + ACTIONS(7248), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343396] = 4, + ACTIONS(5906), 1, + anon_sym_COMMA, + ACTIONS(5908), 1, + anon_sym_RPAREN, + STATE(5467), 1, + aux_sym_argument_list_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, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343424] = 4, + ACTIONS(6651), 1, anon_sym_PIPE, - [158704] = 3, - STATE(3234), 1, - sym_basic_type, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [158719] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2957), 1, - sym__parameters, + [343438] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158738] = 7, - ACTIONS(3801), 1, + [343452] = 4, + ACTIONS(7256), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(7259), 1, anon_sym_RBRACE, - ACTIONS(3805), 1, - anon_sym_for, - STATE(2629), 1, - sym_for_in_clause, - STATE(2835), 1, + STATE(5657), 1, aux_sym_dictionary_repeat1, - STATE(3035), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158761] = 4, - ACTIONS(1311), 1, - anon_sym_LBRACK, - ACTIONS(3807), 1, + [343466] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7261), 1, anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1092), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [158778] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2959), 1, - sym__parameters, + [343480] = 4, + 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, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158797] = 5, - ACTIONS(3809), 1, - anon_sym_if, - ACTIONS(3812), 1, + [343494] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7263), 1, anon_sym_RBRACE, - ACTIONS(3814), 1, - anon_sym_for, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2625), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [158816] = 4, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, + [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, sym_comment, sym_line_continuation, - STATE(1911), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [158833] = 4, - ACTIONS(519), 1, - anon_sym_LBRACK, - ACTIONS(3819), 1, - anon_sym_LBRACE, + [343522] = 4, + ACTIONS(7267), 1, + anon_sym_COMMA, + ACTIONS(7269), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1814), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [158850] = 3, - STATE(2645), 1, - aux_sym_union_type_repeat1, + [343536] = 4, + ACTIONS(7271), 1, + anon_sym_COMMA, + ACTIONS(7273), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1434), 5, + [343550] = 4, + ACTIONS(7275), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [158865] = 5, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3821), 1, - anon_sym_if, - ACTIONS(3823), 1, - anon_sym_RBRACE, + ACTIONS(7277), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2660), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [158884] = 3, - STATE(2645), 1, - aux_sym_union_type_repeat1, + [343564] = 4, + ACTIONS(7279), 1, + anon_sym_COMMA, + ACTIONS(7281), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343578] = 4, + ACTIONS(2107), 1, + anon_sym_RPAREN, + ACTIONS(7283), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1442), 5, + [343592] = 3, + ACTIONS(7285), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6772), 2, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, + [343604] = 4, + ACTIONS(5204), 1, + anon_sym_RBRACE, + ACTIONS(6868), 1, anon_sym_PIPE, - [158899] = 3, - STATE(2619), 1, + STATE(5477), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1434), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [158914] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2956), 1, - sym__parameters, + [343618] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7287), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [158933] = 3, - STATE(2645), 1, + [343632] = 4, + ACTIONS(5240), 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, - ACTIONS(1337), 5, + [343646] = 4, + ACTIONS(2303), 1, + anon_sym_RPAREN, + ACTIONS(7289), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, + STATE(5561), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343660] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7291), 1, anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343674] = 4, + ACTIONS(5748), 1, + anon_sym_COMMA, + ACTIONS(5750), 1, + anon_sym_RBRACK, + STATE(5662), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343688] = 4, + ACTIONS(5862), 1, + 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, + [343702] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7293), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343716] = 3, + ACTIONS(7297), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7295), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [343728] = 4, + ACTIONS(6651), 1, anon_sym_PIPE, - [158948] = 7, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3825), 1, + ACTIONS(7299), 1, + anon_sym_LBRACE, + STATE(5271), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343742] = 4, + ACTIONS(7301), 1, + anon_sym_COMMA, + ACTIONS(7303), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343756] = 4, + ACTIONS(1916), 1, + anon_sym_RPAREN, + ACTIONS(7305), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343770] = 4, + ACTIONS(6497), 1, anon_sym_COMMA, - ACTIONS(3827), 1, + ACTIONS(6499), 1, anon_sym_RBRACE, - STATE(2629), 1, - sym_for_in_clause, - STATE(2781), 1, + STATE(5456), 1, aux_sym_dictionary_repeat1, - STATE(3259), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158971] = 4, - ACTIONS(3829), 1, + [343784] = 4, + ACTIONS(6889), 1, anon_sym_PIPE, - STATE(2635), 1, + ACTIONS(7307), 1, + anon_sym_RBRACK, + STATE(5581), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 4, + [343798] = 4, + ACTIONS(1636), 1, + anon_sym_RBRACE, + ACTIONS(7309), 1, anon_sym_COMMA, + STATE(5657), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343812] = 4, + ACTIONS(6651), 1, + anon_sym_PIPE, + ACTIONS(7311), 1, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [158988] = 5, - ACTIONS(3834), 1, - anon_sym_COLON, - ACTIONS(3836), 1, - anon_sym_LBRACK, - ACTIONS(3838), 1, - anon_sym_EQ, + STATE(5271), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 3, + [343826] = 4, + ACTIONS(1688), 1, + anon_sym_RBRACE, + ACTIONS(7313), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [159007] = 3, - STATE(2619), 1, - aux_sym_union_type_repeat1, + STATE(5657), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, + [343840] = 4, + ACTIONS(6889), 1, anon_sym_PIPE, - [159022] = 3, - STATE(3068), 1, - sym_basic_type, + ACTIONS(7315), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [159037] = 3, - STATE(2645), 1, - aux_sym_union_type_repeat1, + [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, - ACTIONS(1385), 5, + [343868] = 4, + ACTIONS(5792), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [159052] = 7, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3840), 1, + ACTIONS(5794), 1, + anon_sym_RBRACK, + STATE(5646), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343882] = 4, + ACTIONS(5842), 1, anon_sym_COMMA, - ACTIONS(3842), 1, + ACTIONS(5844), 1, + anon_sym_RPAREN, + STATE(5490), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343896] = 4, + ACTIONS(1634), 1, anon_sym_RBRACE, - STATE(2629), 1, - sym_for_in_clause, - STATE(2756), 1, + ACTIONS(7317), 1, + anon_sym_COMMA, + STATE(5657), 1, aux_sym_dictionary_repeat1, - STATE(3152), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159075] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2934), 1, - sym__parameters, + [343910] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(5758), 1, + anon_sym_RBRACK, + STATE(5640), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159094] = 3, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [343924] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7319), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343938] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 5, + ACTIONS(7321), 3, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_PLUS_EQ, + [343948] = 3, + ACTIONS(6705), 1, + anon_sym_LF, + ACTIONS(5), 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, anon_sym_PIPE, - [159109] = 3, - ACTIONS(3844), 1, - anon_sym_DASH_GT, + STATE(5477), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, + [343974] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7325), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [343988] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7327), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344002] = 4, + ACTIONS(6637), 1, + anon_sym_COMMA, + ACTIONS(7329), 1, + anon_sym_RPAREN, + STATE(5592), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344016] = 4, + ACTIONS(6889), 1, anon_sym_PIPE, - [159124] = 3, - ACTIONS(3846), 1, - anon_sym_DASH_GT, + ACTIONS(7331), 1, + anon_sym_RBRACK, + STATE(5581), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, + [344030] = 4, + ACTIONS(6868), 1, anon_sym_PIPE, - [159139] = 3, - STATE(2635), 1, + ACTIONS(7333), 1, + anon_sym_RBRACE, + STATE(5477), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, + [344044] = 4, + ACTIONS(5168), 1, + anon_sym_RBRACE, + ACTIONS(6868), 1, anon_sym_PIPE, - [159154] = 5, - ACTIONS(1329), 1, - anon_sym_LF, - STATE(2668), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + STATE(5477), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 2, - anon_sym_COMMA, + [344058] = 4, + ACTIONS(6868), 1, + anon_sym_PIPE, + ACTIONS(7335), 1, anon_sym_RBRACE, - ACTIONS(3848), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [159173] = 4, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(3850), 1, + STATE(5477), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344072] = 4, + ACTIONS(5190), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1872), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [159190] = 5, - ACTIONS(3858), 1, - sym_string_end, - STATE(2648), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [344097] = 3, + ACTIONS(7337), 1, + anon_sym_LBRACE, + STATE(3035), 1, + sym_dict_expr, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3852), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3855), 2, - sym__not_escape_sequence, - sym__string_content, - [159209] = 3, - STATE(3114), 1, - sym_basic_type, + [344108] = 3, + ACTIONS(7339), 1, + anon_sym_if, + ACTIONS(7341), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [159224] = 3, - ACTIONS(3860), 1, + [344119] = 3, + ACTIONS(153), 1, + sym_string_start, + STATE(4050), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344130] = 3, + ACTIONS(3760), 1, + anon_sym_LBRACE, + STATE(4263), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344141] = 3, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(3510), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344152] = 3, + ACTIONS(7343), 1, + anon_sym_LBRACE, + STATE(1979), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344163] = 3, + ACTIONS(7345), 1, + anon_sym_DASH_GT, + ACTIONS(7347), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344174] = 3, + ACTIONS(7349), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344185] = 3, + ACTIONS(7351), 1, + anon_sym_DASH_GT, + ACTIONS(7353), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344196] = 3, + ACTIONS(7355), 1, anon_sym_DASH_GT, + ACTIONS(7357), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 5, + [344207] = 3, + ACTIONS(7359), 1, anon_sym_COLON, + ACTIONS(7361), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344218] = 3, + ACTIONS(7349), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [159239] = 5, - ACTIONS(3154), 1, - anon_sym_for, - ACTIONS(3823), 1, - anon_sym_RBRACK, - ACTIONS(3862), 1, - anon_sym_if, + STATE(3165), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2658), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [159258] = 4, - ACTIONS(1261), 1, - anon_sym_LBRACK, - ACTIONS(3864), 1, + [344229] = 3, + ACTIONS(7363), 1, + anon_sym_DASH_GT, + ACTIONS(7365), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1401), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [159275] = 4, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(3866), 1, + [344240] = 3, + ACTIONS(7337), 1, anon_sym_LBRACE, + STATE(2980), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2019), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [159292] = 4, - STATE(1848), 1, - aux_sym_dotted_name_repeat1, + [344251] = 3, + ACTIONS(7367), 1, + anon_sym_DASH_GT, + ACTIONS(7369), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1325), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [159309] = 5, - ACTIONS(3874), 1, - sym_string_end, - STATE(2648), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + [344262] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3872), 2, - sym__not_escape_sequence, - sym__string_content, - [159328] = 7, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3876), 1, + ACTIONS(7259), 2, anon_sym_COMMA, - ACTIONS(3878), 1, anon_sym_RBRACE, - STATE(2629), 1, - sym_for_in_clause, - STATE(2863), 1, - aux_sym_dictionary_repeat1, - STATE(3141), 1, - sym__comprehension_clauses, + [344271] = 3, + ACTIONS(7371), 1, + anon_sym_DASH_GT, + ACTIONS(7373), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159351] = 5, - ACTIONS(3812), 1, - anon_sym_RBRACK, - ACTIONS(3880), 1, + [344282] = 3, + ACTIONS(7375), 1, + anon_sym_DASH_GT, + ACTIONS(7377), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344293] = 3, + ACTIONS(7379), 1, anon_sym_if, - ACTIONS(3883), 1, - anon_sym_for, + ACTIONS(7381), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2657), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [159370] = 5, - ACTIONS(3154), 1, - anon_sym_for, - ACTIONS(3862), 1, + [344304] = 3, + ACTIONS(7383), 1, anon_sym_if, - ACTIONS(3886), 1, - anon_sym_RBRACK, + ACTIONS(7385), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2657), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [159389] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2949), 1, - sym__parameters, + [344315] = 3, + ACTIONS(7387), 1, + anon_sym_DASH_GT, + ACTIONS(7389), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159408] = 5, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3821), 1, + [344326] = 3, + ACTIONS(7391), 1, + anon_sym_DASH_GT, + ACTIONS(7393), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [344337] = 3, + ACTIONS(7395), 1, anon_sym_if, - ACTIONS(3886), 1, + ACTIONS(7397), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2625), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [159427] = 7, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3888), 1, - anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_RBRACE, - STATE(2629), 1, - sym_for_in_clause, - STATE(2822), 1, - aux_sym_dictionary_repeat1, - STATE(3162), 1, - sym__comprehension_clauses, + [344348] = 3, + ACTIONS(7399), 1, + anon_sym_DASH_GT, + ACTIONS(7401), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159450] = 4, - STATE(2654), 1, - aux_sym_dotted_name_repeat1, + [344359] = 3, + ACTIONS(7403), 1, + anon_sym_DASH_GT, + ACTIONS(7405), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1329), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [159467] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2953), 1, - sym__parameters, + [344370] = 3, + ACTIONS(7407), 1, + anon_sym_if, + ACTIONS(7409), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159486] = 4, - ACTIONS(1247), 1, - anon_sym_LBRACK, - ACTIONS(3892), 1, + [344381] = 3, + ACTIONS(7411), 1, + anon_sym_DASH_GT, + ACTIONS(7413), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(989), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [159503] = 4, - ACTIONS(3894), 1, - anon_sym_PIPE, - STATE(2665), 1, - aux_sym_union_type_repeat1, + [344392] = 3, + ACTIONS(7415), 1, + anon_sym_DASH_GT, + ACTIONS(7417), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 4, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, + [344403] = 3, + ACTIONS(7419), 1, + anon_sym_DASH_GT, + ACTIONS(7421), 1, anon_sym_LBRACE, - [159520] = 3, - STATE(3240), 1, - sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [159535] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2958), 1, - sym__parameters, + [344414] = 3, + ACTIONS(7343), 1, + anon_sym_LBRACE, + STATE(1952), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159554] = 5, - ACTIONS(1325), 1, - anon_sym_LF, - STATE(1593), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [344425] = 3, + ACTIONS(7423), 1, + anon_sym_DASH_GT, + ACTIONS(7425), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1323), 2, - anon_sym_COMMA, + [344436] = 3, + ACTIONS(7427), 1, + anon_sym_if, + ACTIONS(7429), 1, anon_sym_RBRACE, - ACTIONS(3848), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [159573] = 3, - STATE(2619), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1442), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [159588] = 5, - ACTIONS(3899), 1, - anon_sym_EQ, - ACTIONS(3901), 1, - anon_sym_PIPE, - STATE(2645), 1, - aux_sym_union_type_repeat1, + [344447] = 3, + ACTIONS(7431), 1, + anon_sym_if, + ACTIONS(7433), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3897), 3, - anon_sym_COMMA, + [344458] = 3, + ACTIONS(7435), 1, anon_sym_DASH_GT, + ACTIONS(7437), 1, anon_sym_LBRACE, - [159607] = 7, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3903), 1, - anon_sym_COMMA, - ACTIONS(3905), 1, - anon_sym_RBRACE, - STATE(2629), 1, - sym_for_in_clause, - STATE(2814), 1, - aux_sym_dictionary_repeat1, - STATE(3210), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159630] = 7, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3907), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, + [344469] = 3, + ACTIONS(7439), 1, + anon_sym_if, + ACTIONS(7441), 1, anon_sym_RBRACE, - STATE(2629), 1, - sym_for_in_clause, - STATE(2831), 1, - aux_sym_dictionary_repeat1, - STATE(3030), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159653] = 7, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3911), 1, - anon_sym_COMMA, - ACTIONS(3913), 1, + [344480] = 3, + ACTIONS(7443), 1, + anon_sym_if, + ACTIONS(7445), 1, anon_sym_RBRACE, - STATE(2629), 1, - sym_for_in_clause, - STATE(2878), 1, - aux_sym_dictionary_repeat1, - STATE(3072), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159676] = 4, - ACTIONS(1233), 1, - anon_sym_LBRACK, - ACTIONS(3915), 1, - anon_sym_LBRACE, + [344491] = 3, + ACTIONS(7447), 1, + anon_sym_if, + ACTIONS(7449), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(970), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [159693] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2952), 1, - sym__parameters, + [344502] = 3, + ACTIONS(7451), 1, + anon_sym_if, + ACTIONS(7453), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159712] = 5, - ACTIONS(3781), 1, - sym_identifier, - STATE(2728), 1, - sym_parameter, - STATE(2944), 1, - sym__parameters, + [344513] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159731] = 7, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3917), 1, + ACTIONS(5972), 2, anon_sym_COMMA, - ACTIONS(3919), 1, - anon_sym_RBRACE, - STATE(2629), 1, - sym_for_in_clause, - STATE(2748), 1, - aux_sym_dictionary_repeat1, - STATE(3088), 1, - sym__comprehension_clauses, + anon_sym_RBRACK, + [344522] = 3, + ACTIONS(7455), 1, + anon_sym_COMMA, + ACTIONS(7457), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159754] = 4, - STATE(1451), 1, - aux_sym_dotted_name_repeat1, + [344533] = 3, + ACTIONS(153), 1, + sym_string_start, + STATE(4013), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1325), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(3921), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [159770] = 2, + [344544] = 3, + ACTIONS(179), 1, + sym_string_start, + STATE(4044), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [159782] = 5, - ACTIONS(3923), 1, - anon_sym_EQ, - ACTIONS(3925), 1, - anon_sym_PIPE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [344555] = 3, + ACTIONS(7459), 1, + anon_sym_if, + ACTIONS(7461), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3897), 2, - anon_sym_COLON, - anon_sym_LPAREN, - [159800] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3929), 1, - anon_sym_RPAREN, - ACTIONS(3931), 1, - anon_sym_PIPE, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2754), 1, - aux_sym_function_type_repeat1, + [344566] = 3, + ACTIONS(7463), 1, + anon_sym_DASH_GT, + ACTIONS(7465), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159820] = 4, - ACTIONS(3781), 1, - sym_identifier, - STATE(2850), 1, - sym_parameter, + [344577] = 3, + ACTIONS(4119), 1, + anon_sym_LBRACE, + STATE(3628), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159836] = 2, + [344588] = 3, + ACTIONS(7467), 1, + anon_sym_LBRACE, + STATE(1898), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3933), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DASH_GT, + [344599] = 3, + ACTIONS(4119), 1, anon_sym_LBRACE, - [159848] = 4, - STATE(2678), 1, - aux_sym_dotted_name_repeat1, + STATE(3681), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(3921), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [159864] = 4, - ACTIONS(3935), 1, - sym_identifier, - STATE(2928), 1, - sym_parameter, + [344610] = 3, + ACTIONS(7469), 1, + anon_sym_LBRACE, + STATE(2470), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159880] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3937), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2759), 1, - aux_sym_function_type_repeat1, + [344621] = 3, + ACTIONS(7471), 1, + anon_sym_as, + ACTIONS(7473), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159900] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3939), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2853), 1, - aux_sym_function_type_repeat1, + [344632] = 3, + ACTIONS(7475), 1, + anon_sym_LBRACE, + STATE(3120), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - [159920] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3941), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2768), 1, - aux_sym_function_type_repeat1, + sym_line_continuation, + [344643] = 3, + ACTIONS(2948), 1, + anon_sym_RBRACK, + ACTIONS(7477), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159940] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3943), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2794), 1, - aux_sym_function_type_repeat1, + [344654] = 3, + ACTIONS(7479), 1, + anon_sym_COLON, + ACTIONS(7481), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159960] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3945), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2897), 1, - aux_sym_function_type_repeat1, + [344665] = 3, + ACTIONS(7475), 1, + anon_sym_LBRACE, + STATE(3122), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159980] = 4, - ACTIONS(3935), 1, - sym_identifier, - STATE(2960), 1, - sym_parameter, + [344676] = 3, + ACTIONS(7483), 1, + anon_sym_if, + ACTIONS(7485), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2679), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159996] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3947), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2840), 1, - aux_sym_function_type_repeat1, + [344687] = 3, + ACTIONS(7471), 1, + anon_sym_as, + ACTIONS(7487), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160016] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3949), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2827), 1, - aux_sym_function_type_repeat1, + [344698] = 3, + ACTIONS(7469), 1, + anon_sym_LBRACE, + STATE(2450), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160036] = 4, - STATE(2696), 1, - aux_sym_dotted_name_repeat1, + [344709] = 3, + ACTIONS(7489), 1, + anon_sym_if, + ACTIONS(7491), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, + [344720] = 3, + ACTIONS(7493), 1, + anon_sym_if, + ACTIONS(7495), 1, anon_sym_RBRACE, - anon_sym_PIPE, - ACTIONS(3951), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [160052] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3953), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2805), 1, - aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160072] = 4, - STATE(1284), 1, - aux_sym_dotted_name_repeat1, + [344731] = 3, + ACTIONS(7467), 1, + anon_sym_LBRACE, + STATE(1913), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1325), 2, + [344742] = 3, + ACTIONS(7497), 1, + anon_sym_if, + ACTIONS(7499), 1, anon_sym_RBRACE, - anon_sym_PIPE, - ACTIONS(3951), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [160088] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3955), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2797), 1, - aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160108] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2854), 1, - aux_sym_function_type_repeat1, + [344753] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160128] = 6, - ACTIONS(3927), 1, + ACTIONS(5918), 2, anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3959), 1, anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2813), 1, - aux_sym_function_type_repeat1, + [344762] = 3, + ACTIONS(7501), 1, + anon_sym_if, + ACTIONS(7503), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160148] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3961), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2908), 1, - aux_sym_function_type_repeat1, + [344773] = 3, + ACTIONS(7505), 1, + anon_sym_if, + ACTIONS(7507), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160168] = 6, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3963), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2750), 1, - aux_sym_function_type_repeat1, + [344784] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160188] = 6, - ACTIONS(3927), 1, + ACTIONS(5916), 2, anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_PIPE, - ACTIONS(3965), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_union_type_repeat1, - STATE(2916), 1, - aux_sym_function_type_repeat1, + anon_sym_RBRACK, + [344793] = 3, + ACTIONS(7509), 1, + anon_sym_LBRACE, + STATE(4207), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160208] = 4, - ACTIONS(3931), 1, - anon_sym_PIPE, - STATE(2727), 1, - aux_sym_union_type_repeat1, + [344804] = 3, + ACTIONS(4165), 1, + anon_sym_LBRACE, + STATE(3888), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160223] = 4, - ACTIONS(3969), 1, - anon_sym_PIPE, - STATE(2704), 1, - aux_sym_union_type_repeat1, + [344815] = 3, + ACTIONS(4165), 1, + anon_sym_LBRACE, + STATE(3961), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160238] = 5, - ACTIONS(3114), 1, - anon_sym_RBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - anon_sym_LF, - STATE(2719), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, + [344826] = 3, + ACTIONS(7511), 1, + anon_sym_LBRACE, + STATE(2587), 1, + sym_dict_expr, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160255] = 4, - ACTIONS(3976), 1, - anon_sym_COMMA, - STATE(2706), 1, - aux_sym__parameters_repeat1, + [344837] = 3, + ACTIONS(7513), 1, + anon_sym_if, + ACTIONS(7515), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3979), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [160270] = 3, - ACTIONS(3981), 1, - anon_sym_DASH_GT, + [344848] = 3, + ACTIONS(179), 1, + sym_string_start, + STATE(4104), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160283] = 5, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(3987), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [344859] = 3, + ACTIONS(7511), 1, + anon_sym_LBRACE, + STATE(2599), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160300] = 5, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(3991), 1, + [344870] = 3, + ACTIONS(7517), 1, + anon_sym_if, + ACTIONS(7519), 1, anon_sym_RBRACE, - ACTIONS(3993), 1, - anon_sym_LF, - STATE(2822), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160317] = 5, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(3997), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [344881] = 3, + ACTIONS(7509), 1, + anon_sym_LBRACE, + STATE(4156), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160334] = 5, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(3999), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, + [344892] = 3, + ACTIONS(7521), 1, + anon_sym_if, + ACTIONS(7523), 1, anon_sym_RBRACE, - STATE(2814), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160351] = 4, - ACTIONS(1329), 1, - sym__newline, - STATE(2281), 1, - aux_sym_dotted_name_repeat1, + [344903] = 3, + ACTIONS(7525), 1, + anon_sym_LBRACE, + STATE(2950), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3144), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [160366] = 3, - ACTIONS(4003), 1, - anon_sym_DASH_GT, + [344914] = 3, + ACTIONS(4272), 1, + anon_sym_LBRACE, + STATE(4405), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [160379] = 3, - ACTIONS(4005), 1, - anon_sym_DASH_GT, + [344925] = 3, + ACTIONS(7527), 1, + anon_sym_COLON, + ACTIONS(7529), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160392] = 3, - STATE(2727), 1, - aux_sym_union_type_repeat1, + [344936] = 3, + ACTIONS(7525), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160405] = 3, - STATE(2727), 1, - aux_sym_union_type_repeat1, + [344947] = 3, + ACTIONS(7531), 1, + anon_sym_COLON, + ACTIONS(7533), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1442), 3, + [344958] = 3, + ACTIONS(7535), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160418] = 3, - STATE(2732), 1, - aux_sym_union_type_repeat1, + ACTIONS(7537), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [160431] = 4, - ACTIONS(3836), 1, - anon_sym_LBRACK, - ACTIONS(4007), 1, - anon_sym_EQ, + [344969] = 3, + ACTIONS(4272), 1, + anon_sym_LBRACE, + STATE(4298), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3832), 2, - anon_sym_COLON, - anon_sym_LPAREN, - [160446] = 5, - ACTIONS(4009), 1, - anon_sym_COMMA, - ACTIONS(4012), 1, + [344980] = 3, + ACTIONS(7539), 1, + anon_sym_if, + ACTIONS(7541), 1, anon_sym_RBRACE, - ACTIONS(4014), 1, - anon_sym_LF, - STATE(2719), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160463] = 5, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(4017), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, + [344991] = 3, + ACTIONS(7543), 1, + anon_sym_if, + ACTIONS(7545), 1, anon_sym_RBRACE, - STATE(2781), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160480] = 3, - STATE(2727), 1, - aux_sym_union_type_repeat1, + [345002] = 3, + ACTIONS(7547), 1, + anon_sym_if, + ACTIONS(7549), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1434), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160493] = 3, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [345013] = 3, + ACTIONS(7551), 1, + anon_sym_if, + ACTIONS(7553), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [160506] = 3, - ACTIONS(4021), 1, - anon_sym_DASH_GT, + [345024] = 3, + ACTIONS(7555), 1, + anon_sym_if, + ACTIONS(7557), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [160519] = 5, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(4023), 1, - anon_sym_EQ, - ACTIONS(4025), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [345035] = 3, + ACTIONS(7559), 1, + anon_sym_if, + ACTIONS(7561), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160536] = 3, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [345046] = 3, + ACTIONS(7563), 1, + anon_sym_if, + ACTIONS(7565), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [160549] = 4, - ACTIONS(4027), 1, - anon_sym_COMMA, - STATE(2706), 1, - aux_sym__parameters_repeat1, + [345057] = 3, + ACTIONS(7567), 1, + anon_sym_if, + ACTIONS(7569), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3785), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [160564] = 3, - STATE(2704), 1, - aux_sym_union_type_repeat1, + [345068] = 3, + ACTIONS(7571), 1, + anon_sym_if, + ACTIONS(7573), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160577] = 4, - ACTIONS(4029), 1, - anon_sym_COMMA, - STATE(2726), 1, - aux_sym__parameters_repeat1, + [345079] = 3, + ACTIONS(7575), 1, + anon_sym_if, + ACTIONS(7577), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4031), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [160592] = 3, - ACTIONS(4033), 1, - anon_sym_DASH_GT, + [345090] = 3, + ACTIONS(7579), 1, + anon_sym_if, + ACTIONS(7581), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [160605] = 5, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(4035), 1, - anon_sym_EQ, - ACTIONS(4037), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [345101] = 3, + ACTIONS(7583), 1, + anon_sym_if, + ACTIONS(7585), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160622] = 3, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [345112] = 3, + ACTIONS(7587), 1, + anon_sym_COMMA, + ACTIONS(7589), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1434), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [160635] = 4, - ACTIONS(4039), 1, - anon_sym_PIPE, - STATE(2732), 1, - aux_sym_union_type_repeat1, + [345123] = 3, + ACTIONS(7591), 1, + anon_sym_COMMA, + ACTIONS(7593), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 2, - sym__newline, - anon_sym_EQ, - [160650] = 5, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(4042), 1, - anon_sym_COMMA, - ACTIONS(4044), 1, - anon_sym_RBRACE, - STATE(2835), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + [345134] = 3, + ACTIONS(7595), 1, + anon_sym_LBRACE, + STATE(2187), 1, + sym_dict_expr, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160667] = 5, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(4046), 1, + [345145] = 3, + ACTIONS(7597), 1, anon_sym_COMMA, - ACTIONS(4048), 1, - anon_sym_RBRACE, - STATE(2748), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(7599), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160684] = 5, - ACTIONS(4050), 1, + [345156] = 3, + ACTIONS(7601), 1, anon_sym_COMMA, - ACTIONS(4052), 1, - anon_sym_RBRACE, - ACTIONS(4054), 1, - anon_sym_LF, - STATE(2705), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, + ACTIONS(7603), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160701] = 5, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(4056), 1, - anon_sym_EQ, - ACTIONS(4058), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [345167] = 3, + ACTIONS(7605), 1, + anon_sym_COMMA, + ACTIONS(7607), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160718] = 5, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_EQ, - ACTIONS(4062), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [345178] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160735] = 5, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4066), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + ACTIONS(7609), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [345187] = 3, + ACTIONS(7611), 1, + anon_sym_COMMA, + ACTIONS(7613), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160752] = 5, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(4068), 1, - anon_sym_EQ, - ACTIONS(4070), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [345198] = 3, + ACTIONS(7615), 1, + anon_sym_if, + ACTIONS(7617), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160769] = 3, - ACTIONS(4072), 1, - anon_sym_DASH_GT, + [345209] = 3, + ACTIONS(7619), 1, + anon_sym_COMMA, + ACTIONS(7621), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 3, + [345220] = 3, + ACTIONS(7623), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160782] = 3, - STATE(2717), 1, - aux_sym_union_type_repeat1, + ACTIONS(7625), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1442), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [160795] = 5, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(4074), 1, + [345231] = 3, + ACTIONS(7627), 1, anon_sym_COMMA, - ACTIONS(4076), 1, - anon_sym_RBRACE, - STATE(2863), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(7629), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160812] = 3, - STATE(2727), 1, - aux_sym_union_type_repeat1, + [345242] = 3, + ACTIONS(7631), 1, + anon_sym_LBRACE, + STATE(2188), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 3, + [345253] = 3, + ACTIONS(7633), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160825] = 5, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(4078), 1, - anon_sym_EQ, - ACTIONS(4080), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + ACTIONS(7635), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160842] = 5, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(4082), 1, + [345264] = 3, + ACTIONS(7637), 1, anon_sym_COMMA, - ACTIONS(4084), 1, - anon_sym_RBRACE, - STATE(2878), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(7639), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160859] = 5, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(4086), 1, + [345275] = 3, + ACTIONS(7641), 1, anon_sym_COMMA, - ACTIONS(4088), 1, - anon_sym_RBRACE, - STATE(2831), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(7643), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160876] = 5, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(4090), 1, + [345286] = 3, + ACTIONS(7645), 1, anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_RBRACE, - STATE(2756), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(7647), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160893] = 4, - ACTIONS(712), 1, - anon_sym_RBRACE, - ACTIONS(4094), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, + [345297] = 3, + ACTIONS(3760), 1, + anon_sym_LBRACE, + STATE(4279), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160907] = 2, + [345308] = 3, + ACTIONS(7649), 1, + anon_sym_LBRACE, + STATE(2600), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4096), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160917] = 4, - ACTIONS(3927), 1, + [345319] = 3, + ACTIONS(7595), 1, + anon_sym_LBRACE, + STATE(2202), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345330] = 3, + ACTIONS(7651), 1, anon_sym_COMMA, - ACTIONS(4098), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + ACTIONS(7653), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160931] = 4, - ACTIONS(3244), 1, + [345341] = 3, + ACTIONS(7655), 1, anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_RBRACK, - STATE(2885), 1, - aux_sym_subscript_repeat1, + ACTIONS(7657), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160945] = 4, - ACTIONS(2866), 1, - anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [345352] = 3, + ACTIONS(7631), 1, + anon_sym_LBRACE, + STATE(2122), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160959] = 2, + [345363] = 3, + ACTIONS(7649), 1, + anon_sym_LBRACE, + STATE(2664), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4102), 3, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [160969] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4104), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [345374] = 2, + ACTIONS(7473), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160983] = 4, - ACTIONS(3294), 1, - anon_sym_COMMA, - ACTIONS(3296), 1, + [345382] = 2, + ACTIONS(5596), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345390] = 2, + ACTIONS(5908), 1, anon_sym_RPAREN, - STATE(2888), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160997] = 4, - ACTIONS(740), 1, + [345398] = 2, + ACTIONS(7659), 1, anon_sym_RBRACE, - ACTIONS(4106), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161011] = 4, - ACTIONS(4108), 1, - anon_sym_RBRACK, - ACTIONS(4110), 1, - anon_sym_PIPE, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [345406] = 2, + ACTIONS(7661), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161025] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4112), 1, + [345414] = 2, + ACTIONS(7663), 1, anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161039] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4114), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [345422] = 2, + ACTIONS(7665), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161053] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4116), 1, - anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345430] = 2, + ACTIONS(7667), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161067] = 4, - ACTIONS(4118), 1, - anon_sym_COMMA, - ACTIONS(4120), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [345438] = 2, + ACTIONS(7669), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345446] = 2, + ACTIONS(7671), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161081] = 4, - ACTIONS(2962), 1, + [345454] = 2, + ACTIONS(5586), 1, anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161095] = 4, - ACTIONS(3346), 1, - anon_sym_COMMA, - ACTIONS(3348), 1, - anon_sym_RPAREN, - STATE(2773), 1, - aux_sym_argument_list_repeat1, + [345462] = 2, + ACTIONS(7673), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161109] = 4, - ACTIONS(3256), 1, - anon_sym_COMMA, - ACTIONS(3258), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym_subscript_repeat1, + [345470] = 2, + ACTIONS(7675), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161123] = 4, - ACTIONS(1078), 1, - anon_sym_RPAREN, - ACTIONS(4122), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [345478] = 2, + ACTIONS(7677), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161137] = 4, - ACTIONS(4124), 1, - anon_sym_COMMA, - ACTIONS(4126), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [345486] = 2, + ACTIONS(7679), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161151] = 4, - ACTIONS(4128), 1, - anon_sym_COMMA, - ACTIONS(4130), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [345494] = 2, + ACTIONS(7681), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161165] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4132), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [345502] = 2, + ACTIONS(7683), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161179] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4134), 1, - anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345510] = 2, + ACTIONS(7685), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161193] = 4, - ACTIONS(4136), 1, - anon_sym_COMMA, - ACTIONS(4138), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [345518] = 2, + ACTIONS(7687), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161207] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4140), 1, + [345526] = 2, + ACTIONS(7689), 1, anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161221] = 4, - ACTIONS(2894), 1, + [345534] = 2, + ACTIONS(7691), 1, anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161235] = 4, - ACTIONS(1050), 1, - anon_sym_RPAREN, - ACTIONS(4142), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [345542] = 2, + ACTIONS(7693), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161249] = 2, + [345550] = 2, + ACTIONS(7695), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4102), 3, - anon_sym_if, + [345558] = 2, + ACTIONS(5598), 1, anon_sym_RBRACE, - anon_sym_for, - [161259] = 4, - ACTIONS(3232), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_RBRACK, - STATE(2770), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161273] = 4, - ACTIONS(3290), 1, - anon_sym_COMMA, - ACTIONS(3292), 1, - anon_sym_RPAREN, - STATE(2765), 1, - aux_sym_argument_list_repeat1, + [345566] = 2, + ACTIONS(7697), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161287] = 4, - ACTIONS(4144), 1, - anon_sym_COMMA, - ACTIONS(4146), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [345574] = 2, + ACTIONS(5808), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161301] = 4, - ACTIONS(4148), 1, - anon_sym_COMMA, - ACTIONS(4151), 1, - anon_sym_RBRACK, - STATE(2778), 1, - aux_sym_quant_target_repeat1, + [345582] = 2, + ACTIONS(7699), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161315] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4153), 1, - anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [345590] = 2, + ACTIONS(7204), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161329] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4155), 1, - anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [345598] = 2, + ACTIONS(7701), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161343] = 4, - ACTIONS(698), 1, + [345606] = 2, + ACTIONS(6503), 1, anon_sym_RBRACE, - ACTIONS(4157), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161357] = 4, - ACTIONS(4159), 1, - anon_sym_COMMA, - ACTIONS(4161), 1, + [345614] = 2, + ACTIONS(7703), 1, anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161371] = 4, - ACTIONS(4163), 1, - anon_sym_COMMA, - ACTIONS(4165), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [345622] = 2, + ACTIONS(7705), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161385] = 4, - ACTIONS(4167), 1, - anon_sym_COMMA, - ACTIONS(4169), 1, + [345630] = 2, + ACTIONS(7707), 1, anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161399] = 4, - ACTIONS(3903), 1, - anon_sym_COMMA, - ACTIONS(3905), 1, + [345638] = 2, + ACTIONS(7709), 1, anon_sym_RBRACE, - STATE(2814), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161413] = 4, - ACTIONS(1385), 1, - anon_sym_RBRACE, - ACTIONS(4171), 1, - anon_sym_PIPE, - STATE(2786), 1, - aux_sym_union_type_repeat1, + [345646] = 2, + ACTIONS(7711), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161427] = 4, - ACTIONS(1223), 1, - anon_sym_RPAREN, - ACTIONS(4174), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [345654] = 2, + ACTIONS(7713), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161441] = 4, - ACTIONS(1128), 1, - anon_sym_RPAREN, - ACTIONS(4176), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [345662] = 2, + ACTIONS(7715), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161455] = 4, - ACTIONS(2892), 1, - anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [345670] = 2, + ACTIONS(7717), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161469] = 4, - ACTIONS(3876), 1, - anon_sym_COMMA, - ACTIONS(3878), 1, + [345678] = 2, + ACTIONS(7719), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345686] = 2, + ACTIONS(7721), 1, anon_sym_RBRACE, - STATE(2863), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161483] = 4, - ACTIONS(3350), 1, - anon_sym_COMMA, - ACTIONS(3352), 1, - anon_sym_RPAREN, - STATE(2848), 1, - aux_sym_argument_list_repeat1, + [345694] = 2, + ACTIONS(7723), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161497] = 4, - ACTIONS(3840), 1, - anon_sym_COMMA, - ACTIONS(3842), 1, + [345702] = 2, + ACTIONS(7725), 1, anon_sym_RBRACE, - STATE(2756), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161511] = 4, - ACTIONS(3907), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RBRACE, - STATE(2831), 1, - aux_sym_dictionary_repeat1, + [345710] = 2, + ACTIONS(7727), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161525] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4178), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [345718] = 2, + ACTIONS(7729), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161539] = 4, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(3919), 1, + [345726] = 2, + ACTIONS(4474), 1, anon_sym_RBRACE, - STATE(2748), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161553] = 4, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3204), 1, - anon_sym_RBRACK, - STATE(2783), 1, - aux_sym_subscript_repeat1, + [345734] = 2, + ACTIONS(7731), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161567] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4180), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [345742] = 2, + ACTIONS(6600), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161581] = 3, - STATE(2873), 1, - aux_sym_union_type_repeat1, + [345750] = 2, + ACTIONS(7733), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 2, + [345758] = 2, + ACTIONS(7735), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [161593] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4182), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161607] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4184), 1, - anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345766] = 2, + ACTIONS(6543), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161621] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4186), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345774] = 2, + ACTIONS(6535), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161635] = 4, - ACTIONS(3356), 1, - anon_sym_COMMA, - ACTIONS(3358), 1, - anon_sym_RPAREN, - STATE(2788), 1, - aux_sym_argument_list_repeat1, + [345782] = 2, + ACTIONS(5592), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161649] = 4, - ACTIONS(3228), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, + [345790] = 2, + ACTIONS(7737), 1, anon_sym_RBRACK, - STATE(2761), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161663] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4188), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345798] = 2, + ACTIONS(7739), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161677] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4190), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [345806] = 2, + ACTIONS(7741), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161691] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4192), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345814] = 2, + ACTIONS(7743), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161705] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4194), 1, - anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345822] = 2, + ACTIONS(7745), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161719] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, - anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [345830] = 2, + ACTIONS(7747), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161733] = 3, - ACTIONS(4200), 1, - anon_sym_LF, - ACTIONS(5), 2, + [345838] = 2, + ACTIONS(7749), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4198), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161745] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4202), 1, - anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [345846] = 2, + ACTIONS(7751), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161759] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4204), 1, - anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [345854] = 2, + ACTIONS(5938), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161773] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345862] = 2, + ACTIONS(7753), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161787] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4208), 1, + [345870] = 2, + ACTIONS(5914), 1, anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161801] = 4, - ACTIONS(742), 1, + [345878] = 2, + ACTIONS(7755), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345886] = 2, + ACTIONS(7757), 1, anon_sym_RBRACE, - ACTIONS(4210), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161815] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345894] = 2, + ACTIONS(7759), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161829] = 4, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RPAREN, - STATE(2787), 1, - aux_sym_argument_list_repeat1, + [345902] = 2, + ACTIONS(7761), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161843] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4214), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [345910] = 2, + ACTIONS(7763), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161857] = 4, - ACTIONS(3402), 1, + [345918] = 2, + ACTIONS(7765), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345926] = 2, + ACTIONS(7767), 1, anon_sym_RBRACK, - ACTIONS(4216), 1, - anon_sym_COMMA, - STATE(2818), 1, - aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161871] = 3, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [345934] = 2, + ACTIONS(7769), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1434), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [161883] = 4, - ACTIONS(3791), 1, - sym_identifier, - STATE(2917), 1, - sym_dotted_name, - STATE(3074), 1, - sym_aliased_import, + [345942] = 2, + ACTIONS(5818), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161897] = 4, - ACTIONS(3911), 1, - anon_sym_COMMA, - ACTIONS(3913), 1, + [345950] = 2, + ACTIONS(7771), 1, anon_sym_RBRACE, - STATE(2878), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161911] = 4, - ACTIONS(732), 1, + [345958] = 2, + ACTIONS(6515), 1, anon_sym_RBRACE, - ACTIONS(4219), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161925] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4221), 1, + [345966] = 2, + ACTIONS(4199), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345974] = 2, + ACTIONS(7773), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [345982] = 2, + ACTIONS(7775), 1, anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161939] = 4, - ACTIONS(4223), 1, + [345990] = 2, + ACTIONS(7777), 1, sym_identifier, - ACTIONS(4225), 1, - anon_sym_DOT, - STATE(2881), 1, - aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161953] = 4, - ACTIONS(4227), 1, - anon_sym_COMMA, - ACTIONS(4230), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [345998] = 2, + ACTIONS(7779), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161967] = 4, - ACTIONS(4232), 1, - anon_sym_COMMA, - ACTIONS(4234), 1, - anon_sym_RBRACK, - STATE(2778), 1, - aux_sym_quant_target_repeat1, + [346006] = 2, + ACTIONS(7781), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161981] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4236), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [346014] = 2, + ACTIONS(7783), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161995] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4238), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [346022] = 2, + ACTIONS(7785), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162009] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4240), 1, + [346030] = 2, + ACTIONS(7787), 1, anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162023] = 4, - ACTIONS(3825), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_RBRACE, - STATE(2781), 1, - aux_sym_dictionary_repeat1, + [346038] = 2, + ACTIONS(7789), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346046] = 2, + ACTIONS(7791), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162037] = 4, - ACTIONS(708), 1, + [346054] = 2, + ACTIONS(6569), 1, anon_sym_RBRACE, - ACTIONS(4242), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162051] = 3, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [346062] = 2, + ACTIONS(7793), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1442), 2, + [346070] = 2, + ACTIONS(7795), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [162063] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4244), 1, - anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162077] = 4, - ACTIONS(3328), 1, - anon_sym_COMMA, - ACTIONS(3330), 1, - anon_sym_RPAREN, - STATE(2862), 1, - aux_sym_argument_list_repeat1, + [346078] = 2, + ACTIONS(7797), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162091] = 4, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(4246), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, + [346086] = 2, + ACTIONS(7799), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162105] = 4, - ACTIONS(3444), 1, - anon_sym_RPAREN, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [346094] = 2, + ACTIONS(7801), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162119] = 2, + [346102] = 2, + ACTIONS(7803), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [162129] = 4, - ACTIONS(3214), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACK, - STATE(2865), 1, - aux_sym_subscript_repeat1, + [346110] = 2, + ACTIONS(7805), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162143] = 3, - ACTIONS(4251), 1, - anon_sym_DASH_GT, + [346118] = 2, + ACTIONS(7807), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [162155] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [346126] = 2, + ACTIONS(7809), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162169] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4255), 1, - anon_sym_LBRACE, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [346134] = 2, + ACTIONS(7811), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162183] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4257), 1, + [346142] = 2, + ACTIONS(7813), 1, anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162197] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4259), 1, + [346150] = 2, + ACTIONS(7815), 1, anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162211] = 4, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACK, - STATE(2867), 1, - aux_sym__collection_elements_repeat1, + [346158] = 2, + ACTIONS(7817), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162225] = 4, - ACTIONS(4261), 1, - anon_sym_COMMA, - ACTIONS(4263), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346166] = 2, + ACTIONS(7819), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162239] = 4, - ACTIONS(2980), 1, - anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [346174] = 2, + ACTIONS(7821), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162253] = 4, - ACTIONS(4265), 1, - anon_sym_COMMA, - ACTIONS(4267), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346182] = 2, + ACTIONS(7823), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162267] = 4, - ACTIONS(1048), 1, - anon_sym_RPAREN, - ACTIONS(4269), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [346190] = 2, + ACTIONS(5574), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162281] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4271), 1, + [346198] = 2, + ACTIONS(5600), 1, anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162295] = 2, + [346206] = 2, + ACTIONS(7825), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3979), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [162305] = 4, - ACTIONS(3967), 1, - anon_sym_RPAREN, - ACTIONS(4273), 1, - anon_sym_COMMA, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [346214] = 2, + ACTIONS(7827), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162319] = 4, - ACTIONS(2982), 1, + [346222] = 2, + ACTIONS(7829), 1, anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162333] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4276), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [346230] = 2, + ACTIONS(5610), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162347] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4278), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [346238] = 2, + ACTIONS(6625), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162361] = 4, - ACTIONS(3210), 1, - anon_sym_COMMA, - ACTIONS(3212), 1, + [346246] = 2, + ACTIONS(7831), 1, anon_sym_RBRACK, - STATE(2845), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162375] = 4, - ACTIONS(3298), 1, - anon_sym_COMMA, - ACTIONS(3300), 1, - anon_sym_RPAREN, - STATE(2903), 1, - aux_sym_argument_list_repeat1, + [346254] = 2, + ACTIONS(7833), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162389] = 3, - ACTIONS(4280), 1, - anon_sym_LF, - ACTIONS(5), 2, + [346262] = 2, + ACTIONS(7835), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4012), 2, - anon_sym_COMMA, + [346270] = 2, + ACTIONS(7837), 1, anon_sym_RBRACE, - [162401] = 4, - ACTIONS(4282), 1, - anon_sym_COMMA, - ACTIONS(4284), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162415] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4286), 1, + [346278] = 2, + ACTIONS(7839), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346286] = 2, + ACTIONS(7841), 1, anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162429] = 3, - ACTIONS(4290), 1, - anon_sym_LF, + [346294] = 2, + ACTIONS(7843), 1, + aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4288), 2, - anon_sym_COMMA, + [346302] = 2, + ACTIONS(7845), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346310] = 2, + ACTIONS(7847), 1, anon_sym_RBRACE, - [162441] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4292), 1, - anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162455] = 4, - ACTIONS(1034), 1, - anon_sym_RPAREN, - ACTIONS(4294), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [346318] = 2, + ACTIONS(7849), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162469] = 4, - ACTIONS(714), 1, - anon_sym_RBRACE, - ACTIONS(4296), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, + [346326] = 2, + ACTIONS(7851), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162483] = 4, - ACTIONS(4298), 1, - anon_sym_COMMA, - ACTIONS(4300), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346334] = 2, + ACTIONS(7853), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162497] = 4, - ACTIONS(4302), 1, - anon_sym_COMMA, - ACTIONS(4304), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346342] = 2, + ACTIONS(7855), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162511] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4306), 1, + [346350] = 2, + ACTIONS(7857), 1, anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162525] = 4, - ACTIONS(3150), 1, - anon_sym_COMMA, - ACTIONS(4308), 1, - anon_sym_RBRACK, - STATE(2818), 1, - aux_sym__collection_elements_repeat1, + [346358] = 2, + ACTIONS(7859), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162539] = 4, - ACTIONS(4310), 1, - anon_sym_COMMA, - ACTIONS(4312), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346366] = 2, + ACTIONS(7861), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [346374] = 2, + ACTIONS(7863), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162553] = 3, - ACTIONS(3993), 1, - anon_sym_LF, - ACTIONS(5), 2, + [346382] = 2, + ACTIONS(7865), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4314), 2, - anon_sym_COMMA, + [346390] = 2, + ACTIONS(7867), 1, anon_sym_RBRACE, - [162565] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4316), 1, - anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162579] = 4, - ACTIONS(926), 1, - anon_sym_RPAREN, - ACTIONS(4318), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [346398] = 2, + ACTIONS(7869), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162593] = 3, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [346406] = 2, + ACTIONS(7871), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [162605] = 4, - ACTIONS(1385), 1, - anon_sym_RBRACK, - ACTIONS(4320), 1, - anon_sym_PIPE, - STATE(2873), 1, - aux_sym_union_type_repeat1, + [346414] = 2, + ACTIONS(7873), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162619] = 3, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [346422] = 2, + ACTIONS(7875), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [162631] = 3, - ACTIONS(4323), 1, - anon_sym_DASH_GT, + [346430] = 2, + ACTIONS(7877), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [162643] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4325), 1, - anon_sym_EQ, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [346438] = 2, + ACTIONS(7879), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162657] = 2, + [346446] = 2, + ACTIONS(7881), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4200), 3, + [346454] = 2, + ACTIONS(7883), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [162667] = 4, - ACTIONS(710), 1, - anon_sym_RBRACE, - ACTIONS(4327), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162681] = 4, - ACTIONS(3888), 1, - anon_sym_COMMA, - ACTIONS(3890), 1, - anon_sym_RBRACE, - STATE(2822), 1, - aux_sym_dictionary_repeat1, + [346462] = 2, + ACTIONS(7885), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162695] = 3, - ACTIONS(4329), 1, - anon_sym_DASH_GT, + [346470] = 2, + ACTIONS(7887), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [162707] = 4, - ACTIONS(4331), 1, - sym_identifier, - ACTIONS(4333), 1, - anon_sym_DOT, - STATE(2881), 1, - aux_sym_import_prefix_repeat1, + [346478] = 2, + ACTIONS(7889), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162721] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4336), 1, - anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [346486] = 2, + ACTIONS(7891), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162735] = 4, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_RPAREN, - STATE(3013), 1, - sym_argument_list, + [346494] = 2, + ACTIONS(7893), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162749] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4340), 1, - anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [346502] = 2, + ACTIONS(7895), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162763] = 4, - ACTIONS(4342), 1, - anon_sym_COMMA, - ACTIONS(4344), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346510] = 2, + ACTIONS(5892), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162777] = 4, - ACTIONS(4346), 1, - anon_sym_COMMA, - ACTIONS(4348), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346518] = 2, + ACTIONS(7897), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162791] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4350), 1, - anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [346526] = 2, + ACTIONS(7899), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162805] = 4, - ACTIONS(1229), 1, - anon_sym_RPAREN, - ACTIONS(4352), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [346534] = 2, + ACTIONS(7901), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162819] = 4, - ACTIONS(4354), 1, - anon_sym_COMMA, - ACTIONS(4357), 1, + [346542] = 2, + ACTIONS(7903), 1, anon_sym_RBRACE, - STATE(2889), 1, - aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162833] = 4, - ACTIONS(3925), 1, - anon_sym_PIPE, - ACTIONS(4359), 1, - anon_sym_COLON, - STATE(2619), 1, - aux_sym_union_type_repeat1, + [346550] = 2, + ACTIONS(7905), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162847] = 4, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4361), 1, - anon_sym_RBRACK, - STATE(2798), 1, - aux_sym_union_type_repeat1, + [346558] = 2, + ACTIONS(7907), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162861] = 4, - ACTIONS(2930), 1, + [346566] = 2, + ACTIONS(7909), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [346574] = 2, + ACTIONS(7911), 1, anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162875] = 4, - ACTIONS(3270), 1, - anon_sym_COMMA, - ACTIONS(3272), 1, - anon_sym_RPAREN, - STATE(2871), 1, - aux_sym_argument_list_repeat1, + [346582] = 2, + ACTIONS(7913), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162889] = 4, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4363), 1, + [346590] = 2, + ACTIONS(7915), 1, anon_sym_RBRACE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162903] = 4, - ACTIONS(3801), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - STATE(2835), 1, - aux_sym_dictionary_repeat1, + [346598] = 2, + ACTIONS(7917), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162917] = 4, - ACTIONS(3248), 1, - anon_sym_COMMA, - ACTIONS(3250), 1, - anon_sym_RBRACK, - STATE(2858), 1, - aux_sym_subscript_repeat1, + [346606] = 2, + ACTIONS(7919), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162931] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4365), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [346614] = 2, + ACTIONS(7921), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162945] = 4, - ACTIONS(4367), 1, - anon_sym_COMMA, - ACTIONS(4369), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346622] = 2, + ACTIONS(7923), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162959] = 4, - ACTIONS(4371), 1, - anon_sym_COMMA, - ACTIONS(4373), 1, - anon_sym_RBRACK, - STATE(2825), 1, - aux_sym_subscript_repeat1, + [346630] = 2, + ACTIONS(7925), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162973] = 3, - STATE(2786), 1, - aux_sym_union_type_repeat1, + [346638] = 2, + ACTIONS(7927), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [162985] = 4, - ACTIONS(3985), 1, - anon_sym_PIPE, - ACTIONS(4375), 1, - sym__newline, - STATE(2717), 1, - aux_sym_union_type_repeat1, + [346646] = 2, + ACTIONS(7929), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162999] = 3, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [346654] = 2, + ACTIONS(7931), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [163011] = 4, - ACTIONS(960), 1, - anon_sym_RPAREN, - ACTIONS(4377), 1, - anon_sym_COMMA, - STATE(2836), 1, - aux_sym_argument_list_repeat1, + [346662] = 2, + ACTIONS(7933), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163025] = 3, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [346670] = 2, + ACTIONS(7935), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [163037] = 3, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [346678] = 2, + ACTIONS(7937), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1442), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [163049] = 3, - STATE(2900), 1, - aux_sym_union_type_repeat1, + [346686] = 2, + ACTIONS(7939), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1434), 2, + [346694] = 2, + ACTIONS(7941), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [163061] = 4, - ACTIONS(2938), 1, - anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163075] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4379), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [346702] = 2, + ACTIONS(7943), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163089] = 3, - ACTIONS(4381), 1, - anon_sym_DASH_GT, + [346710] = 2, + ACTIONS(7945), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [163101] = 3, - ACTIONS(3222), 1, - anon_sym_LF, - ACTIONS(5), 2, + [346718] = 2, + ACTIONS(7947), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3224), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163113] = 3, - ACTIONS(4383), 1, - anon_sym_DASH_GT, + [346726] = 2, + ACTIONS(7949), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 2, + [346734] = 2, + ACTIONS(7951), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [163125] = 4, - ACTIONS(3252), 1, - anon_sym_COMMA, - ACTIONS(3254), 1, - anon_sym_RBRACK, - STATE(2898), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163139] = 3, - ACTIONS(4385), 1, - anon_sym_DASH_GT, + [346742] = 2, + ACTIONS(7953), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1337), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [163151] = 4, - ACTIONS(2936), 1, + [346750] = 2, + ACTIONS(6635), 1, anon_sym_RBRACE, - ACTIONS(4100), 1, - anon_sym_PIPE, - STATE(2900), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163165] = 3, - ACTIONS(4389), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4387), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163177] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(4391), 1, - anon_sym_RPAREN, - STATE(2851), 1, - aux_sym_function_type_repeat1, + [346758] = 2, + ACTIONS(7955), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163191] = 3, - ACTIONS(4393), 1, - anon_sym_as, - ACTIONS(4395), 1, - sym__newline, + [346766] = 2, + ACTIONS(7957), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163202] = 3, - ACTIONS(4397), 1, - anon_sym_LBRACE, - STATE(914), 1, - sym_dict_expr, + [346774] = 2, + ACTIONS(7959), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163213] = 3, - ACTIONS(924), 1, - sym_string_start, - STATE(1749), 1, - sym_string, + [346782] = 2, + ACTIONS(5588), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163224] = 3, - ACTIONS(1889), 1, - anon_sym_LBRACE, - STATE(1899), 1, - sym_dict_expr, + [346790] = 2, + ACTIONS(7961), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163235] = 3, - ACTIONS(2013), 1, - anon_sym_LBRACE, - STATE(1840), 1, - sym_dict_expr, + [346798] = 2, + ACTIONS(7963), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163246] = 3, - ACTIONS(924), 1, - sym_string_start, - STATE(1636), 1, - sym_string, + [346806] = 2, + ACTIONS(5870), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163257] = 2, + [346814] = 2, + ACTIONS(7965), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4357), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163266] = 3, - ACTIONS(4397), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_dict_expr, + [346822] = 2, + ACTIONS(7967), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163277] = 3, - ACTIONS(4399), 1, - anon_sym_COMMA, - ACTIONS(4401), 1, + [346830] = 2, + ACTIONS(7969), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163288] = 3, - ACTIONS(4403), 1, - anon_sym_if, - ACTIONS(4405), 1, + [346838] = 2, + ACTIONS(7971), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163299] = 3, - ACTIONS(4407), 1, - anon_sym_if, - ACTIONS(4409), 1, - anon_sym_RBRACE, + [346846] = 2, + ACTIONS(7973), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163310] = 3, - ACTIONS(4411), 1, - anon_sym_COLON, - ACTIONS(4413), 1, - anon_sym_LPAREN, + [346854] = 2, + ACTIONS(7975), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163321] = 3, - ACTIONS(2013), 1, - anon_sym_LBRACE, - STATE(1746), 1, - sym_dict_expr, + [346862] = 2, + ACTIONS(7977), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163332] = 3, - ACTIONS(4415), 1, - anon_sym_if, - ACTIONS(4417), 1, - anon_sym_RBRACE, + [346870] = 2, + ACTIONS(7979), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163343] = 3, - ACTIONS(4419), 1, - anon_sym_if, - ACTIONS(4421), 1, + [346878] = 2, + ACTIONS(7981), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163354] = 3, - ACTIONS(4423), 1, - anon_sym_if, - ACTIONS(4425), 1, - anon_sym_RBRACE, + [346886] = 2, + ACTIONS(7983), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163365] = 3, - ACTIONS(4427), 1, - anon_sym_LBRACE, - STATE(1100), 1, - sym_dict_expr, + [346894] = 2, + ACTIONS(7985), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163376] = 3, - ACTIONS(4429), 1, - anon_sym_DASH_GT, - ACTIONS(4431), 1, - anon_sym_LBRACE, + [346902] = 2, + ACTIONS(7987), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163387] = 3, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(2029), 1, - sym_dict_expr, + [346910] = 2, + ACTIONS(5844), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163398] = 3, - ACTIONS(4427), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_dict_expr, - ACTIONS(3), 2, + [346918] = 2, + ACTIONS(7989), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [163409] = 3, - ACTIONS(1683), 1, + [346926] = 2, + ACTIONS(7991), 1, anon_sym_RBRACK, - ACTIONS(4433), 1, - sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163420] = 3, - ACTIONS(4435), 1, - anon_sym_if, - ACTIONS(4437), 1, + [346934] = 2, + ACTIONS(7993), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163431] = 3, - ACTIONS(4439), 1, - anon_sym_if, - ACTIONS(4441), 1, + [346942] = 2, + ACTIONS(7995), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163442] = 3, - ACTIONS(4443), 1, - anon_sym_if, - ACTIONS(4445), 1, + [346950] = 2, + ACTIONS(7997), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163453] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3444), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [163462] = 3, - ACTIONS(4447), 1, - anon_sym_if, - ACTIONS(4449), 1, + [346958] = 2, + ACTIONS(7999), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163473] = 3, - ACTIONS(4451), 1, - anon_sym_if, - ACTIONS(4453), 1, + [346966] = 2, + ACTIONS(8001), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163484] = 3, - ACTIONS(4455), 1, - anon_sym_DASH_GT, - ACTIONS(4457), 1, - anon_sym_LBRACE, + [346974] = 2, + ACTIONS(8003), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163495] = 3, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(2023), 1, - sym_dict_expr, + [346982] = 2, + ACTIONS(8005), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163506] = 2, + [346990] = 2, + ACTIONS(8007), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3362), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [163515] = 3, - ACTIONS(4393), 1, - anon_sym_as, - ACTIONS(4459), 1, - sym__newline, + [346998] = 2, + ACTIONS(8009), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163526] = 3, - ACTIONS(1981), 1, + [347006] = 2, + ACTIONS(8011), 1, anon_sym_LBRACE, - STATE(1386), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163537] = 3, - ACTIONS(4461), 1, - anon_sym_DASH_GT, - ACTIONS(4463), 1, + [347014] = 2, + ACTIONS(8013), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163548] = 3, - ACTIONS(4465), 1, - anon_sym_if, - ACTIONS(4467), 1, - anon_sym_RBRACE, + [347022] = 2, + ACTIONS(8015), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163559] = 3, - ACTIONS(4469), 1, - anon_sym_if, - ACTIONS(4471), 1, - anon_sym_RBRACE, + [347030] = 2, + ACTIONS(8017), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163570] = 3, - ACTIONS(4473), 1, - anon_sym_DASH_GT, - ACTIONS(4475), 1, - anon_sym_LBRACE, + [347038] = 2, + ACTIONS(5864), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163581] = 3, - ACTIONS(4477), 1, - anon_sym_DASH_GT, - ACTIONS(4479), 1, + [347046] = 2, + ACTIONS(8019), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163592] = 2, + [347054] = 2, + ACTIONS(8021), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3402), 2, - anon_sym_COMMA, + [347062] = 2, + ACTIONS(8023), 1, anon_sym_RBRACK, - [163601] = 3, - ACTIONS(4481), 1, - anon_sym_LBRACE, - STATE(980), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163612] = 3, - ACTIONS(4483), 1, - anon_sym_DASH_GT, - ACTIONS(4485), 1, - anon_sym_LBRACE, + [347070] = 2, + ACTIONS(8025), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163623] = 3, - ACTIONS(4487), 1, - anon_sym_DASH_GT, - ACTIONS(4489), 1, + [347078] = 2, + ACTIONS(8027), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163634] = 3, - ACTIONS(4491), 1, - anon_sym_DASH_GT, - ACTIONS(4493), 1, + [347086] = 2, + ACTIONS(8029), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163645] = 3, - ACTIONS(4495), 1, - anon_sym_DASH_GT, - ACTIONS(4497), 1, - anon_sym_LBRACE, + [347094] = 2, + ACTIONS(8031), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163656] = 3, - ACTIONS(4499), 1, - anon_sym_COLON, - ACTIONS(4501), 1, - anon_sym_LPAREN, + [347102] = 2, + ACTIONS(8033), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163667] = 3, - ACTIONS(4481), 1, + [347110] = 2, + ACTIONS(8035), 1, anon_sym_LBRACE, - STATE(990), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163678] = 3, - ACTIONS(1981), 1, + [347118] = 2, + ACTIONS(8037), 1, anon_sym_LBRACE, - STATE(1372), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163689] = 3, - ACTIONS(4503), 1, - anon_sym_if, - ACTIONS(4505), 1, + [347126] = 2, + ACTIONS(8039), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163700] = 3, - ACTIONS(1106), 1, - sym_string_start, - STATE(1699), 1, - sym_string, + [347134] = 2, + ACTIONS(8041), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163711] = 3, - ACTIONS(1987), 1, + [347142] = 2, + ACTIONS(8043), 1, anon_sym_LBRACE, - STATE(1310), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163722] = 2, + [347150] = 2, + ACTIONS(8045), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [163731] = 3, - ACTIONS(4509), 1, - anon_sym_if, - ACTIONS(4511), 1, + [347158] = 2, + ACTIONS(8047), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163742] = 3, - ACTIONS(4513), 1, + [347166] = 2, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(1949), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163753] = 3, - ACTIONS(4515), 1, - anon_sym_if, - ACTIONS(4517), 1, - anon_sym_RBRACE, + [347174] = 2, + ACTIONS(8051), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163764] = 3, - ACTIONS(4519), 1, - anon_sym_if, - ACTIONS(4521), 1, - anon_sym_RBRACE, + [347182] = 2, + ACTIONS(8053), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163775] = 3, - ACTIONS(4523), 1, - anon_sym_if, - ACTIONS(4525), 1, - anon_sym_RBRACE, + [347190] = 2, + ACTIONS(8055), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163786] = 3, - ACTIONS(1889), 1, - anon_sym_LBRACE, - STATE(1876), 1, - sym_dict_expr, + [347198] = 2, + ACTIONS(8057), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163797] = 3, - ACTIONS(4527), 1, - anon_sym_COMMA, - ACTIONS(4529), 1, - anon_sym_in, + [347206] = 2, + ACTIONS(8059), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163808] = 3, - ACTIONS(1987), 1, + [347214] = 2, + ACTIONS(8061), 1, anon_sym_LBRACE, - STATE(1246), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163819] = 3, - ACTIONS(1106), 1, - sym_string_start, - STATE(1677), 1, - sym_string, + [347222] = 2, + ACTIONS(8063), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163830] = 3, - ACTIONS(4531), 1, - anon_sym_COMMA, - ACTIONS(4533), 1, - anon_sym_in, + [347230] = 2, + ACTIONS(8065), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163841] = 3, - ACTIONS(4535), 1, - anon_sym_COMMA, - ACTIONS(4537), 1, - anon_sym_in, + [347238] = 2, + ACTIONS(8067), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163852] = 3, - ACTIONS(4539), 1, - anon_sym_COMMA, - ACTIONS(4541), 1, - anon_sym_in, + [347246] = 2, + ACTIONS(8069), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163863] = 3, - ACTIONS(4513), 1, - anon_sym_LBRACE, - STATE(1929), 1, - sym_dict_expr, + [347254] = 2, + ACTIONS(8071), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163874] = 3, - ACTIONS(4543), 1, - anon_sym_COMMA, - ACTIONS(4545), 1, - anon_sym_in, + [347262] = 2, + ACTIONS(8073), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163885] = 3, - ACTIONS(4547), 1, - anon_sym_if, - ACTIONS(4549), 1, - anon_sym_RBRACE, + [347270] = 2, + ACTIONS(8075), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163896] = 3, - ACTIONS(4551), 1, - anon_sym_COMMA, - ACTIONS(4553), 1, - anon_sym_in, + [347278] = 2, + ACTIONS(8077), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163907] = 3, - ACTIONS(4555), 1, - anon_sym_COMMA, - ACTIONS(4557), 1, - anon_sym_in, + [347286] = 2, + ACTIONS(8079), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163918] = 3, - ACTIONS(4559), 1, - anon_sym_COMMA, - ACTIONS(4561), 1, + [347294] = 2, + ACTIONS(8081), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163929] = 2, - ACTIONS(4563), 1, + [347302] = 2, + ACTIONS(8083), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163937] = 2, - ACTIONS(4565), 1, - sym_identifier, + [347310] = 2, + ACTIONS(8085), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163945] = 2, - ACTIONS(2335), 1, - anon_sym_RBRACE, + [347318] = 2, + ACTIONS(8087), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163953] = 2, - ACTIONS(4567), 1, - anon_sym_RBRACE, + [347326] = 2, + ACTIONS(8089), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163961] = 2, - ACTIONS(4569), 1, - anon_sym_RBRACK, + [347334] = 2, + ACTIONS(8091), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163969] = 2, - ACTIONS(4571), 1, - anon_sym_in, + [347342] = 2, + ACTIONS(8093), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163977] = 2, - ACTIONS(3296), 1, - anon_sym_RPAREN, + [347350] = 2, + ACTIONS(8095), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163985] = 2, - ACTIONS(4573), 1, + [347358] = 2, + ACTIONS(8097), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163993] = 2, - ACTIONS(4575), 1, - sym_identifier, + [347366] = 2, + ACTIONS(8099), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164001] = 2, - ACTIONS(4577), 1, - anon_sym_in, + [347374] = 2, + ACTIONS(8101), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164009] = 2, - ACTIONS(4579), 1, + [347382] = 2, + ACTIONS(8103), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164017] = 2, - ACTIONS(4581), 1, + [347390] = 2, + ACTIONS(8105), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164025] = 2, - ACTIONS(3124), 1, - anon_sym_RBRACE, + [347398] = 2, + ACTIONS(8107), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164033] = 2, - ACTIONS(3842), 1, - anon_sym_RBRACE, + [347406] = 2, + ACTIONS(8109), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164041] = 2, - ACTIONS(4583), 1, - anon_sym_RBRACK, + [347414] = 2, + ACTIONS(8111), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164049] = 2, - ACTIONS(2304), 1, + [347422] = 2, + ACTIONS(5612), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164057] = 2, - ACTIONS(4585), 1, - sym_identifier, + [347430] = 2, + ACTIONS(8113), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164065] = 2, - ACTIONS(4587), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [164073] = 2, - ACTIONS(4589), 1, - anon_sym_RBRACE, + [347438] = 2, + ACTIONS(8115), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164081] = 2, - ACTIONS(4591), 1, + [347446] = 2, + ACTIONS(6629), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164089] = 2, - ACTIONS(4593), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164097] = 2, - ACTIONS(3096), 1, - anon_sym_RBRACE, + [347454] = 2, + ACTIONS(8117), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164105] = 2, - ACTIONS(4595), 1, - anon_sym_RBRACE, + [347462] = 2, + ACTIONS(8119), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164113] = 2, - ACTIONS(2035), 1, - anon_sym_COLON, + [347470] = 2, + ACTIONS(8121), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164121] = 2, - ACTIONS(4597), 1, + [347478] = 2, + ACTIONS(8123), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164129] = 2, - ACTIONS(4599), 1, - anon_sym_RPAREN, + [347486] = 2, + ACTIONS(8125), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164137] = 2, - ACTIONS(3348), 1, - anon_sym_RPAREN, + [347494] = 2, + ACTIONS(8127), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164145] = 2, - ACTIONS(4601), 1, - sym__newline, + [347502] = 2, + ACTIONS(8129), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164153] = 2, - ACTIONS(4603), 1, - anon_sym_RPAREN, + [347510] = 2, + ACTIONS(8131), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164161] = 2, - ACTIONS(4605), 1, - anon_sym_RBRACE, + [347518] = 2, + ACTIONS(8133), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164169] = 2, - ACTIONS(4607), 1, - anon_sym_RPAREN, + [347526] = 2, + ACTIONS(8135), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164177] = 2, - ACTIONS(4609), 1, + [347534] = 2, + ACTIONS(8137), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164185] = 2, - ACTIONS(4611), 1, - sym_identifier, + [347542] = 2, + ACTIONS(8139), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164193] = 2, - ACTIONS(4613), 1, - anon_sym_COLON, + [347550] = 2, + ACTIONS(8141), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164201] = 2, - ACTIONS(4615), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [347558] = 2, + ACTIONS(8143), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164209] = 2, - ACTIONS(4617), 1, - anon_sym_RBRACE, + [347566] = 2, + ACTIONS(8145), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164217] = 2, - ACTIONS(3120), 1, - anon_sym_RBRACE, + [347574] = 2, + ACTIONS(8147), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164225] = 2, - ACTIONS(4619), 1, + [347582] = 2, + ACTIONS(5584), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164233] = 2, - ACTIONS(4621), 1, - anon_sym_in, + [347590] = 2, + ACTIONS(8149), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164241] = 2, - ACTIONS(4623), 1, + [347598] = 2, + ACTIONS(8151), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164249] = 2, - ACTIONS(4625), 1, - anon_sym_RBRACK, + [347606] = 2, + ACTIONS(8153), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164257] = 2, - ACTIONS(4627), 1, + [347614] = 2, + ACTIONS(5590), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164265] = 2, - ACTIONS(3326), 1, - anon_sym_RPAREN, + [347622] = 2, + ACTIONS(8155), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164273] = 2, - ACTIONS(4629), 1, + [347630] = 2, + ACTIONS(6491), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164281] = 2, - ACTIONS(4631), 1, - anon_sym_in, + [347638] = 2, + ACTIONS(8157), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164289] = 2, - ACTIONS(4633), 1, + [347646] = 2, + ACTIONS(8159), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164297] = 2, - ACTIONS(4635), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [164305] = 2, - ACTIONS(4637), 1, - sym_identifier, + [347654] = 2, + ACTIONS(8161), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164313] = 2, - ACTIONS(4639), 1, + [347662] = 2, + ACTIONS(8163), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164321] = 2, - ACTIONS(4641), 1, - anon_sym_RBRACK, + [347670] = 2, + ACTIONS(8165), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164329] = 2, - ACTIONS(4643), 1, + [347678] = 2, + ACTIONS(6613), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164337] = 2, - ACTIONS(4645), 1, - anon_sym_in, + [347686] = 2, + ACTIONS(8167), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164345] = 2, - ACTIONS(4647), 1, - sym_identifier, + [347694] = 2, + ACTIONS(8169), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164353] = 2, - ACTIONS(4649), 1, + [347702] = 2, + ACTIONS(8171), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164361] = 2, - ACTIONS(4651), 1, - anon_sym_RPAREN, + [347710] = 2, + ACTIONS(8173), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164369] = 2, - ACTIONS(4653), 1, - sym_identifier, + [347718] = 2, + ACTIONS(5858), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164377] = 2, - ACTIONS(4655), 1, + [347726] = 2, + ACTIONS(8175), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164385] = 2, - ACTIONS(3913), 1, + [347734] = 2, + ACTIONS(8177), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164393] = 2, - ACTIONS(4657), 1, + [347742] = 2, + ACTIONS(8179), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164401] = 2, - ACTIONS(4659), 1, + [347750] = 2, + ACTIONS(8181), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164409] = 2, - ACTIONS(4661), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164417] = 2, - ACTIONS(4663), 1, - anon_sym_COLON, + [347758] = 2, + ACTIONS(8183), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164425] = 2, - ACTIONS(4665), 1, - anon_sym_RBRACK, + [347766] = 2, + ACTIONS(8185), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164433] = 2, - ACTIONS(3909), 1, + [347774] = 2, + ACTIONS(8187), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164441] = 2, - ACTIONS(4667), 1, - anon_sym_COLON, + [347782] = 2, + ACTIONS(8189), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164449] = 2, - ACTIONS(4669), 1, + [347790] = 2, + ACTIONS(8191), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164457] = 2, - ACTIONS(4671), 1, - anon_sym_DQUOTE, + [347798] = 2, + ACTIONS(8193), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164465] = 2, - ACTIONS(4673), 1, + [347806] = 2, + ACTIONS(8195), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164473] = 2, - ACTIONS(4675), 1, - anon_sym_RBRACE, + [347814] = 2, + ACTIONS(8197), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164481] = 2, - ACTIONS(4677), 1, + [347822] = 2, + ACTIONS(8199), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164489] = 2, - ACTIONS(4679), 1, - anon_sym_RBRACE, + [347830] = 2, + ACTIONS(8201), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164497] = 2, - ACTIONS(4681), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + [347838] = 2, + ACTIONS(8203), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164505] = 2, - ACTIONS(4683), 1, - sym_identifier, + [347846] = 2, + ACTIONS(8205), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164513] = 2, - ACTIONS(4685), 1, + [347854] = 2, + ACTIONS(8207), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164521] = 2, - ACTIONS(4687), 1, - anon_sym_COLON, + [347862] = 2, + ACTIONS(8209), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [347870] = 2, + ACTIONS(8211), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164529] = 2, - ACTIONS(4689), 1, + [347878] = 2, + ACTIONS(8213), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164537] = 2, - ACTIONS(4691), 1, - anon_sym_RBRACK, + [347886] = 2, + ACTIONS(8215), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164545] = 2, - ACTIONS(4693), 1, - sym_identifier, + [347894] = 2, + ACTIONS(5888), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164553] = 2, - ACTIONS(4695), 1, - sym_identifier, + [347902] = 2, + ACTIONS(8217), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164561] = 2, - ACTIONS(4697), 1, - anon_sym_RPAREN, + [347910] = 2, + ACTIONS(8219), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164569] = 2, - ACTIONS(4699), 1, + [347918] = 2, + ACTIONS(8221), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164577] = 2, - ACTIONS(4701), 1, - sym_identifier, + [347926] = 2, + ACTIONS(8223), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164585] = 2, - ACTIONS(4703), 1, - anon_sym_in, - ACTIONS(3), 2, + [347934] = 2, + ACTIONS(8225), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164593] = 2, - ACTIONS(4705), 1, + [347942] = 2, + ACTIONS(8227), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164601] = 2, - ACTIONS(4707), 1, + [347950] = 2, + ACTIONS(8229), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164609] = 2, - ACTIONS(4709), 1, + [347958] = 2, + ACTIONS(8231), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164617] = 2, - ACTIONS(4711), 1, - sym_identifier, + [347966] = 2, + ACTIONS(8233), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164625] = 2, - ACTIONS(4713), 1, - anon_sym_RBRACE, + [347974] = 2, + ACTIONS(8235), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164633] = 2, - ACTIONS(3300), 1, - anon_sym_RPAREN, + [347982] = 2, + ACTIONS(8237), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164641] = 2, - ACTIONS(4395), 1, - sym__newline, + [347990] = 2, + ACTIONS(8239), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164649] = 2, - ACTIONS(4715), 1, - anon_sym_RBRACE, + [347998] = 2, + ACTIONS(8241), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164657] = 2, - ACTIONS(4717), 1, + [348006] = 2, + ACTIONS(4498), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164665] = 2, - ACTIONS(4719), 1, + [348014] = 2, + ACTIONS(8243), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164673] = 2, - ACTIONS(4721), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164681] = 2, - ACTIONS(4723), 1, - anon_sym_COLON, + [348022] = 2, + ACTIONS(8245), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164689] = 2, - ACTIONS(3272), 1, + [348030] = 2, + ACTIONS(5900), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164697] = 2, - ACTIONS(4725), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164705] = 2, - ACTIONS(4727), 1, - anon_sym_in, + [348038] = 2, + ACTIONS(8247), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164713] = 2, - ACTIONS(4729), 1, + [348046] = 2, + ACTIONS(8249), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164721] = 2, - ACTIONS(4731), 1, - sym__newline, + [348054] = 2, + ACTIONS(8251), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164729] = 2, - ACTIONS(4733), 1, - anon_sym_RPAREN, + [348062] = 2, + ACTIONS(8253), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164737] = 2, - ACTIONS(4735), 1, - sym__newline, + [348070] = 2, + ACTIONS(8255), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164745] = 2, - ACTIONS(4737), 1, - sym_identifier, + [348078] = 2, + ACTIONS(8257), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164753] = 2, - ACTIONS(4739), 1, + [348086] = 2, + ACTIONS(5602), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164761] = 2, - ACTIONS(4741), 1, + [348094] = 2, + ACTIONS(8259), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164769] = 2, - ACTIONS(4743), 1, + [348102] = 2, + ACTIONS(6553), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164777] = 2, - ACTIONS(4745), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164785] = 2, - ACTIONS(4747), 1, + [348110] = 2, + ACTIONS(8261), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164793] = 2, - ACTIONS(4749), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164801] = 2, - ACTIONS(4751), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164809] = 2, - ACTIONS(4753), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164817] = 2, - ACTIONS(4755), 1, - sym_identifier, + [348118] = 2, + ACTIONS(8263), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164825] = 2, - ACTIONS(4757), 1, + [348126] = 2, + ACTIONS(8265), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164833] = 2, - ACTIONS(4759), 1, + [348134] = 2, + ACTIONS(8267), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164841] = 2, - ACTIONS(3222), 1, + [348142] = 2, + ACTIONS(8269), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164849] = 2, - ACTIONS(4761), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164857] = 2, - ACTIONS(4763), 1, - anon_sym_DQUOTE, + [348150] = 2, + ACTIONS(8271), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164865] = 2, - ACTIONS(3102), 1, - anon_sym_RBRACE, + [348158] = 2, + ACTIONS(8273), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164873] = 2, - ACTIONS(4765), 1, + [348166] = 2, + ACTIONS(8275), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164881] = 2, - ACTIONS(4767), 1, + [348174] = 2, + ACTIONS(8277), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164889] = 2, - ACTIONS(4769), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164897] = 2, - ACTIONS(4771), 1, + [348182] = 2, + ACTIONS(5822), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164905] = 2, - ACTIONS(4773), 1, - sym_identifier, + [348190] = 2, + ACTIONS(8279), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164913] = 2, - ACTIONS(4775), 1, - anon_sym_DQUOTE, + [348198] = 2, + ACTIONS(7487), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164921] = 2, - ACTIONS(3919), 1, - anon_sym_RBRACE, + [348206] = 2, + ACTIONS(8281), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164929] = 2, - ACTIONS(4777), 1, - anon_sym_RBRACK, + [348214] = 2, + ACTIONS(8283), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164937] = 2, - ACTIONS(4779), 1, + [348222] = 2, + ACTIONS(8285), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164945] = 2, - ACTIONS(4781), 1, + [348230] = 2, + ACTIONS(8287), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164953] = 2, - ACTIONS(4783), 1, - anon_sym_COLON, + [348238] = 2, + ACTIONS(8289), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164961] = 2, - ACTIONS(4785), 1, - anon_sym_RBRACK, + [348246] = 2, + ACTIONS(8291), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164969] = 2, - ACTIONS(4787), 1, - anon_sym_COLON, + [348254] = 2, + ACTIONS(8293), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164977] = 2, - ACTIONS(4789), 1, - anon_sym_for, + [348262] = 2, + ACTIONS(8295), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164985] = 2, - ACTIONS(4791), 1, - sym_identifier, + [348270] = 2, + ACTIONS(8297), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164993] = 2, - ACTIONS(4793), 1, - sym_identifier, + [348278] = 2, + ACTIONS(5678), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165001] = 2, - ACTIONS(4795), 1, + [348286] = 2, + ACTIONS(8299), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165009] = 2, - ACTIONS(4200), 1, - sym__newline, + [348294] = 2, + ACTIONS(8301), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165017] = 2, - ACTIONS(2283), 1, + [348302] = 2, + ACTIONS(8303), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [348310] = 2, + ACTIONS(8305), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165025] = 2, - ACTIONS(4797), 1, - anon_sym_RBRACK, + [348318] = 2, + ACTIONS(8307), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165033] = 2, - ACTIONS(3878), 1, + [348326] = 2, + ACTIONS(8309), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165041] = 2, - ACTIONS(3112), 1, - anon_sym_RBRACE, + [348334] = 2, + ACTIONS(8311), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165049] = 2, - ACTIONS(4799), 1, + [348342] = 2, + ACTIONS(8313), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165057] = 2, - ACTIONS(4801), 1, - anon_sym_DQUOTE, + [348350] = 2, + ACTIONS(8315), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165065] = 2, - ACTIONS(4803), 1, - anon_sym_RPAREN, + [348358] = 2, + ACTIONS(8317), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165073] = 2, - ACTIONS(4805), 1, + [348366] = 2, + ACTIONS(8319), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165081] = 2, - ACTIONS(4807), 1, - anon_sym_in, + [348374] = 2, + ACTIONS(8321), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165089] = 2, - ACTIONS(4809), 1, + [348382] = 2, + ACTIONS(8323), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165097] = 2, - ACTIONS(3110), 1, - anon_sym_RBRACE, + [348390] = 2, + ACTIONS(8325), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165105] = 2, - ACTIONS(4811), 1, + [348398] = 2, + ACTIONS(8327), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165113] = 2, - ACTIONS(4813), 1, - anon_sym_RBRACE, + [348406] = 2, + ACTIONS(8329), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165121] = 2, - ACTIONS(4815), 1, - anon_sym_RBRACE, + [348414] = 2, + ACTIONS(8331), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165129] = 2, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(3), 2, + [348422] = 2, + ACTIONS(8333), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165137] = 2, - ACTIONS(4819), 1, - anon_sym_RBRACE, + [348430] = 2, + ACTIONS(5884), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165145] = 2, - ACTIONS(4821), 1, - anon_sym_in, + [348438] = 2, + ACTIONS(8335), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165153] = 2, - ACTIONS(3803), 1, + [348446] = 2, + ACTIONS(6539), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165161] = 2, - ACTIONS(4823), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165169] = 2, - ACTIONS(4825), 1, - anon_sym_RBRACE, + [348454] = 2, + ACTIONS(8337), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165177] = 2, - ACTIONS(4827), 1, + [348462] = 2, + ACTIONS(8339), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165185] = 2, - ACTIONS(3352), 1, + [348470] = 2, + ACTIONS(5830), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165193] = 2, - ACTIONS(4829), 1, - anon_sym_RBRACK, + [348478] = 2, + ACTIONS(8341), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165201] = 2, - ACTIONS(4831), 1, + [348486] = 2, + ACTIONS(8343), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165209] = 2, - ACTIONS(4833), 1, - anon_sym_RBRACE, + [348494] = 2, + ACTIONS(8345), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165217] = 2, - ACTIONS(4835), 1, - anon_sym_COLON, + [348502] = 2, + ACTIONS(8347), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165225] = 2, - ACTIONS(4837), 1, + [348510] = 2, + ACTIONS(5604), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165233] = 2, - ACTIONS(4839), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165241] = 2, - ACTIONS(4841), 1, + [348518] = 2, + ACTIONS(8349), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165249] = 2, - ACTIONS(4843), 1, - anon_sym_RBRACE, + [348526] = 2, + ACTIONS(8351), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165257] = 2, - ACTIONS(4845), 1, - sym_identifier, + [348534] = 2, + ACTIONS(8353), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165265] = 2, - ACTIONS(4847), 1, - anon_sym_RBRACE, + [348542] = 2, + ACTIONS(8355), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165273] = 2, - ACTIONS(4849), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + [348550] = 2, + ACTIONS(8357), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165281] = 2, - ACTIONS(4851), 1, + [348558] = 2, + ACTIONS(8359), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165289] = 2, - ACTIONS(3330), 1, - anon_sym_RPAREN, + [348566] = 2, + ACTIONS(8361), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165297] = 2, - ACTIONS(4853), 1, - sym__newline, + [348574] = 2, + ACTIONS(8363), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165305] = 2, - ACTIONS(4855), 1, - anon_sym_RBRACK, + [348582] = 2, + ACTIONS(8365), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165313] = 2, - ACTIONS(4857), 1, + [348590] = 2, + ACTIONS(8367), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165321] = 2, - ACTIONS(4859), 1, - anon_sym_COLON, + [348598] = 2, + ACTIONS(8369), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165329] = 2, - ACTIONS(3905), 1, - anon_sym_RBRACE, + [348606] = 2, + ACTIONS(8371), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165337] = 2, - ACTIONS(4861), 1, - sym_identifier, + [348614] = 2, + ACTIONS(8373), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165345] = 2, - ACTIONS(4863), 1, - anon_sym_RBRACE, + [348622] = 2, + ACTIONS(8375), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165353] = 2, - ACTIONS(4865), 1, - anon_sym_COLON, + [348630] = 2, + ACTIONS(8377), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165361] = 2, - ACTIONS(3118), 1, + [348638] = 2, + ACTIONS(5582), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165369] = 2, - ACTIONS(4867), 1, - anon_sym_DQUOTE, + [348646] = 2, + ACTIONS(8379), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165377] = 2, - ACTIONS(4869), 1, - anon_sym_RPAREN, + [348654] = 2, + ACTIONS(6621), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165385] = 2, - ACTIONS(4871), 1, - anon_sym_LBRACE, + [348662] = 2, + ACTIONS(5854), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165393] = 2, - ACTIONS(4873), 1, - sym_identifier, + [348670] = 2, + ACTIONS(8381), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165401] = 2, - ACTIONS(4875), 1, - anon_sym_COLON, + [348678] = 2, + ACTIONS(8383), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165409] = 2, - ACTIONS(4877), 1, - anon_sym_COLON, + [348686] = 2, + ACTIONS(8385), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165417] = 2, - ACTIONS(4879), 1, - anon_sym_LBRACE, + [348694] = 2, + ACTIONS(8387), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165425] = 2, - ACTIONS(4881), 1, - anon_sym_COLON, + [348702] = 2, + ACTIONS(8389), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165433] = 2, - ACTIONS(4459), 1, - sym__newline, + [348710] = 2, + ACTIONS(8391), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165441] = 2, - ACTIONS(4883), 1, - anon_sym_in, + [348718] = 2, + ACTIONS(8393), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165449] = 2, - ACTIONS(4885), 1, - sym_identifier, + [348726] = 2, + ACTIONS(8395), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165457] = 2, - ACTIONS(4887), 1, - anon_sym_RBRACK, + [348734] = 2, + ACTIONS(8397), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165465] = 2, - ACTIONS(4889), 1, - sym_identifier, + [348742] = 2, + ACTIONS(8399), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165473] = 2, - ACTIONS(4891), 1, + [348750] = 2, + ACTIONS(8401), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165481] = 2, - ACTIONS(4893), 1, - sym_identifier, + [348758] = 2, + ACTIONS(4387), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165489] = 2, - ACTIONS(4895), 1, - sym_identifier, + [348766] = 2, + ACTIONS(8403), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165497] = 2, - ACTIONS(4897), 1, + [348774] = 2, + ACTIONS(8405), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165505] = 2, - ACTIONS(4899), 1, - anon_sym_in, + [348782] = 2, + ACTIONS(8407), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165513] = 2, - ACTIONS(4901), 1, + [348790] = 2, + ACTIONS(8409), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165521] = 2, - ACTIONS(4903), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165529] = 2, - ACTIONS(3108), 1, + [348798] = 2, + ACTIONS(8411), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165537] = 2, - ACTIONS(4905), 1, - sym_identifier, + [348806] = 2, + ACTIONS(8413), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165545] = 2, - ACTIONS(3460), 1, - sym__newline, + [348814] = 2, + ACTIONS(8415), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165553] = 2, - ACTIONS(4907), 1, - ts_builtin_sym_end, + [348822] = 2, + ACTIONS(8417), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165561] = 2, - ACTIONS(3890), 1, - anon_sym_RBRACE, + [348830] = 2, + ACTIONS(8419), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165569] = 2, - ACTIONS(4909), 1, + [348838] = 2, + ACTIONS(8421), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165577] = 2, - ACTIONS(4911), 1, + [348846] = 2, + ACTIONS(8423), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165585] = 2, - ACTIONS(4913), 1, - anon_sym_COLON, + [348854] = 2, + ACTIONS(8425), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165593] = 2, - ACTIONS(4915), 1, - sym_identifier, + [348862] = 2, + ACTIONS(8427), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165601] = 2, - ACTIONS(3428), 1, - sym__newline, + [348870] = 2, + ACTIONS(8429), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165609] = 2, - ACTIONS(4917), 1, - sym_identifier, + [348878] = 2, + ACTIONS(8431), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165617] = 2, - ACTIONS(4919), 1, - sym_identifier, + [348886] = 2, + ACTIONS(8433), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165625] = 2, - ACTIONS(4921), 1, - anon_sym_in, + [348894] = 2, + ACTIONS(8435), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165633] = 2, - ACTIONS(4923), 1, - sym_identifier, + [348902] = 2, + ACTIONS(8437), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165641] = 2, - ACTIONS(4925), 1, - sym_identifier, - ACTIONS(3), 2, + [348910] = 2, + ACTIONS(8439), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165649] = 2, - ACTIONS(4927), 1, - anon_sym_COLON, - ACTIONS(3), 2, + [348918] = 2, + ACTIONS(8441), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165657] = 2, - ACTIONS(4929), 1, - sym_identifier, + [348926] = 2, + ACTIONS(8443), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165665] = 2, - ACTIONS(4931), 1, - anon_sym_COLON, + [348934] = 2, + ACTIONS(8445), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165673] = 2, - ACTIONS(4933), 1, - anon_sym_LBRACE, + [348942] = 2, + ACTIONS(5594), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165681] = 2, - ACTIONS(4935), 1, - anon_sym_LBRACE, + [348950] = 2, + ACTIONS(8447), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165689] = 2, - ACTIONS(4937), 1, - anon_sym_COLON, + [348958] = 2, + ACTIONS(8449), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165697] = 2, - ACTIONS(4939), 1, - anon_sym_RBRACK, + [348966] = 2, + ACTIONS(5896), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165705] = 2, - ACTIONS(4941), 1, - anon_sym_LBRACE, + [348974] = 2, + ACTIONS(6521), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165713] = 2, - ACTIONS(4943), 1, - anon_sym_LBRACE, + [348982] = 2, + ACTIONS(8451), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165721] = 2, - ACTIONS(4945), 1, + [348990] = 2, + ACTIONS(8453), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [348998] = 2, + ACTIONS(8455), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165729] = 2, - ACTIONS(4947), 1, + [349006] = 2, + ACTIONS(8457), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165737] = 2, - ACTIONS(4949), 1, + [349014] = 2, + ACTIONS(8459), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165745] = 2, - ACTIONS(4951), 1, - anon_sym_LBRACE, + [349022] = 2, + ACTIONS(8461), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165753] = 2, - ACTIONS(4953), 1, - anon_sym_in, + [349030] = 2, + ACTIONS(8463), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165761] = 2, - ACTIONS(4955), 1, + [349038] = 2, + ACTIONS(8465), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165769] = 2, - ACTIONS(4957), 1, - anon_sym_LBRACE, + [349046] = 2, + ACTIONS(8467), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165777] = 2, - ACTIONS(4959), 1, - anon_sym_LBRACE, + [349054] = 2, + ACTIONS(8469), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165785] = 2, - ACTIONS(4961), 1, - anon_sym_RBRACE, + [349062] = 2, + ACTIONS(8471), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165793] = 2, - ACTIONS(4963), 1, - sym__newline, + [349070] = 2, + ACTIONS(8473), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165801] = 2, - ACTIONS(4965), 1, - anon_sym_LBRACE, + [349078] = 2, + ACTIONS(8475), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165809] = 2, - ACTIONS(4967), 1, - anon_sym_LBRACE, + [349086] = 2, + ACTIONS(4197), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165817] = 2, - ACTIONS(3358), 1, + [349094] = 2, + ACTIONS(8477), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165825] = 2, - ACTIONS(4969), 1, + [349102] = 2, + ACTIONS(8479), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165833] = 2, - ACTIONS(4971), 1, - anon_sym_LBRACE, + [349110] = 2, + ACTIONS(8481), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165841] = 2, - ACTIONS(4973), 1, - anon_sym_LBRACE, + [349118] = 2, + ACTIONS(5978), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165849] = 2, - ACTIONS(4975), 1, - anon_sym_LBRACE, + [349126] = 2, + ACTIONS(8483), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165857] = 2, - ACTIONS(4977), 1, - sym_identifier, + [349134] = 2, + ACTIONS(5874), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165865] = 2, - ACTIONS(4979), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, + [349142] = 2, + ACTIONS(8485), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165873] = 2, - ACTIONS(4981), 1, - anon_sym_LBRACE, + [349150] = 2, + ACTIONS(8487), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165881] = 2, - ACTIONS(4983), 1, - sym_identifier, + [349158] = 2, + ACTIONS(8489), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165889] = 2, - ACTIONS(4985), 1, - anon_sym_RBRACK, + [349166] = 2, + ACTIONS(8491), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165897] = 2, - ACTIONS(4987), 1, - anon_sym_for, - ACTIONS(3), 2, + [349174] = 2, + ACTIONS(8493), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165905] = 2, - ACTIONS(4989), 1, + [349182] = 2, + ACTIONS(8495), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165913] = 2, - ACTIONS(4991), 1, - anon_sym_COLON, + [349190] = 2, + ACTIONS(8497), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165921] = 2, - ACTIONS(4993), 1, - anon_sym_RBRACK, + [349198] = 2, + ACTIONS(8499), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165929] = 2, - ACTIONS(4995), 1, + [349206] = 2, + ACTIONS(8501), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165937] = 2, - ACTIONS(4997), 1, - sym_identifier, + [349214] = 2, + ACTIONS(8503), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165945] = 2, - ACTIONS(4999), 1, - sym_integer, + [349222] = 2, + ACTIONS(8505), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165953] = 2, - ACTIONS(5001), 1, + [349230] = 2, + ACTIONS(8507), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165961] = 2, - ACTIONS(5003), 1, + [349238] = 2, + ACTIONS(8509), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165969] = 2, - ACTIONS(5005), 1, - anon_sym_RBRACK, + [349246] = 2, + ACTIONS(8511), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165977] = 2, - ACTIONS(5007), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [165985] = 2, - ACTIONS(5009), 1, - anon_sym_COLON, + [349254] = 2, + ACTIONS(8513), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165993] = 2, - ACTIONS(5011), 1, + [349262] = 2, + ACTIONS(8515), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166001] = 2, - ACTIONS(5013), 1, + [349270] = 2, + ACTIONS(8517), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166009] = 2, - ACTIONS(3598), 1, - sym__newline, + [349278] = 2, + ACTIONS(8519), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166017] = 2, - ACTIONS(5015), 1, - anon_sym_RBRACK, + [349286] = 2, + ACTIONS(8521), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166025] = 2, - ACTIONS(3827), 1, - anon_sym_RBRACE, + [349294] = 2, + ACTIONS(8523), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166033] = 2, - ACTIONS(3122), 1, - anon_sym_RBRACE, + [349302] = 2, + ACTIONS(8525), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166041] = 2, - ACTIONS(5017), 1, + [349310] = 2, + ACTIONS(8527), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166049] = 2, - ACTIONS(5019), 1, - sym_identifier, + [349318] = 2, + ACTIONS(8529), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166057] = 2, - ACTIONS(5021), 1, - anon_sym_in, + [349326] = 2, + ACTIONS(8531), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166065] = 2, - ACTIONS(5023), 1, - sym_identifier, + [349334] = 2, + ACTIONS(5580), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166073] = 2, - ACTIONS(5025), 1, - anon_sym_in, + [349342] = 2, + ACTIONS(8533), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166081] = 2, - ACTIONS(5027), 1, - sym_identifier, + [349350] = 2, + ACTIONS(6509), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166089] = 2, - ACTIONS(5029), 1, + [349358] = 2, + ACTIONS(8535), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166097] = 2, - ACTIONS(5031), 1, + [349366] = 2, + ACTIONS(8537), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166105] = 2, - ACTIONS(5033), 1, - anon_sym_RBRACE, + [349374] = 2, + ACTIONS(8539), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166113] = 2, - ACTIONS(5035), 1, + [349382] = 2, + ACTIONS(6499), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166121] = 2, - ACTIONS(5037), 1, + [349390] = 2, + ACTIONS(8541), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166129] = 2, - ACTIONS(5039), 1, - anon_sym_in, + [349398] = 2, + ACTIONS(6186), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166137] = 2, - ACTIONS(5041), 1, - sym_identifier, - ACTIONS(3), 2, + [349406] = 2, + ACTIONS(8543), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [166145] = 2, - ACTIONS(5043), 1, - anon_sym_LBRACE, + [349414] = 2, + ACTIONS(8545), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166153] = 2, - ACTIONS(5045), 1, - anon_sym_in, + [349422] = 2, + ACTIONS(8547), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166161] = 2, - ACTIONS(3292), 1, - anon_sym_RPAREN, + [349430] = 2, + ACTIONS(5614), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166169] = 2, - ACTIONS(5047), 1, + [349438] = 2, + ACTIONS(8549), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166177] = 2, - ACTIONS(5049), 1, - anon_sym_in, + [349446] = 2, + ACTIONS(7477), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166185] = 2, - ACTIONS(5051), 1, - sym__newline, + [349454] = 2, + ACTIONS(8551), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166193] = 2, - ACTIONS(5053), 1, + [349462] = 2, + ACTIONS(8553), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166201] = 2, - ACTIONS(5055), 1, - anon_sym_RBRACE, + [349470] = 2, + ACTIONS(8555), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166209] = 2, - ACTIONS(5057), 1, - anon_sym_RBRACE, + [349478] = 2, + ACTIONS(8557), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [349486] = 2, + ACTIONS(8559), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166217] = 2, - ACTIONS(5059), 1, + [349494] = 2, + ACTIONS(8561), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166225] = 2, - ACTIONS(5061), 1, - anon_sym_RBRACE, + [349502] = 2, + ACTIONS(8563), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166233] = 2, - ACTIONS(5063), 1, + [349510] = 2, + ACTIONS(8565), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166241] = 2, - ACTIONS(5065), 1, - anon_sym_RBRACE, + [349518] = 2, + ACTIONS(8567), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166249] = 2, - ACTIONS(5067), 1, + [349526] = 2, + ACTIONS(8569), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166257] = 2, - ACTIONS(4433), 1, + [349534] = 2, + ACTIONS(8571), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166265] = 2, - ACTIONS(5069), 1, - sym_identifier, + [349542] = 2, + ACTIONS(8573), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166273] = 2, - ACTIONS(5071), 1, + [349550] = 2, + ACTIONS(8575), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166281] = 2, - ACTIONS(5073), 1, - anon_sym_RBRACE, + [349558] = 2, + ACTIONS(8577), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166289] = 2, - ACTIONS(5075), 1, + [349566] = 2, + ACTIONS(8579), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166297] = 2, - ACTIONS(5077), 1, + [349574] = 2, + ACTIONS(8581), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166305] = 2, - ACTIONS(2019), 1, - anon_sym_COLON, + [349582] = 2, + ACTIONS(8583), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166313] = 2, - ACTIONS(5079), 1, + [349590] = 2, + ACTIONS(8585), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166321] = 2, - ACTIONS(5081), 1, - anon_sym_in, - ACTIONS(3), 2, + [349598] = 2, + ACTIONS(8587), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [166329] = 2, - ACTIONS(5083), 1, + [349606] = 2, + ACTIONS(8589), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166337] = 2, - ACTIONS(5085), 1, - sym_identifier, + [349614] = 2, + ACTIONS(8591), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166345] = 2, - ACTIONS(5087), 1, + [349622] = 2, + ACTIONS(8593), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166353] = 2, - ACTIONS(5089), 1, - anon_sym_in, - ACTIONS(3), 2, + [349630] = 2, + ACTIONS(3), 1, sym_comment, + ACTIONS(8595), 1, sym_line_continuation, - [166361] = 2, - ACTIONS(5091), 1, - anon_sym_in, - ACTIONS(3), 2, + [349637] = 2, + ACTIONS(3), 1, sym_comment, + ACTIONS(8597), 1, sym_line_continuation, - [166369] = 2, - ACTIONS(5093), 1, - anon_sym_in, - ACTIONS(3), 2, + [349644] = 2, + ACTIONS(3), 1, sym_comment, + ACTIONS(8599), 1, sym_line_continuation, - [166377] = 2, - ACTIONS(5095), 1, - anon_sym_in, - ACTIONS(3), 2, + [349651] = 2, + ACTIONS(3), 1, sym_comment, + ACTIONS(8601), 1, sym_line_continuation, - [166385] = 2, - ACTIONS(5097), 1, - anon_sym_in, - ACTIONS(3), 2, + [349658] = 2, + ACTIONS(3), 1, sym_comment, + ACTIONS(8603), 1, sym_line_continuation, - [166393] = 2, - ACTIONS(5099), 1, - anon_sym_in, - ACTIONS(3), 2, + [349665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8605), 1, + sym_line_continuation, + [349672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8607), 1, + sym_line_continuation, + [349679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8609), 1, + sym_line_continuation, + [349686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8611), 1, + sym_line_continuation, + [349693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8613), 1, + sym_line_continuation, + [349700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8615), 1, + sym_line_continuation, + [349707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8617), 1, + sym_line_continuation, + [349714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8619), 1, + sym_line_continuation, + [349721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8621), 1, + sym_line_continuation, + [349728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8623), 1, + sym_line_continuation, + [349735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8625), 1, + sym_line_continuation, + [349742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8627), 1, + sym_line_continuation, + [349749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8629), 1, + sym_line_continuation, + [349756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8631), 1, + sym_line_continuation, + [349763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8633), 1, + sym_line_continuation, + [349770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8635), 1, + sym_line_continuation, + [349777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8637), 1, + sym_line_continuation, + [349784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8639), 1, + sym_line_continuation, + [349791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8641), 1, + sym_line_continuation, + [349798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8643), 1, + sym_line_continuation, + [349805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8645), 1, + sym_line_continuation, + [349812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8647), 1, + sym_line_continuation, + [349819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8649), 1, + sym_line_continuation, + [349826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8651), 1, + sym_line_continuation, + [349833] = 2, + ACTIONS(3), 1, sym_comment, + ACTIONS(8653), 1, sym_line_continuation, - [166401] = 2, + [349840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 1, + ACTIONS(8655), 1, sym_line_continuation, - [166408] = 2, + [349847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(8657), 1, sym_line_continuation, - [166415] = 2, + [349854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 1, + ACTIONS(8659), 1, sym_line_continuation, - [166422] = 2, + [349861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(8661), 1, sym_line_continuation, - [166429] = 2, + [349868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, + ACTIONS(8663), 1, sym_line_continuation, - [166436] = 2, + [349875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 1, + ACTIONS(8665), 1, sym_line_continuation, - [166443] = 2, + [349882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, + ACTIONS(8667), 1, sym_line_continuation, - [166450] = 2, + [349889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5115), 1, + ACTIONS(8669), 1, sym_line_continuation, - [166457] = 2, + [349896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5117), 1, + ACTIONS(8671), 1, sym_line_continuation, - [166464] = 2, + [349903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5119), 1, + ACTIONS(8673), 1, sym_line_continuation, - [166471] = 2, + [349910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5121), 1, + ACTIONS(8675), 1, sym_line_continuation, - [166478] = 2, + [349917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5123), 1, + ACTIONS(8677), 1, sym_line_continuation, - [166485] = 2, + [349924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5125), 1, + ACTIONS(8679), 1, sym_line_continuation, - [166492] = 2, + [349931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5127), 1, + ACTIONS(8681), 1, sym_line_continuation, - [166499] = 2, + [349938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(8683), 1, sym_line_continuation, - [166506] = 2, + [349945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5131), 1, + ACTIONS(8685), 1, sym_line_continuation, - [166513] = 2, + [349952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5133), 1, + ACTIONS(8687), 1, sym_line_continuation, - [166520] = 2, + [349959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(8689), 1, sym_line_continuation, - [166527] = 2, + [349966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(2795), 1, sym_line_continuation, - [166534] = 2, + [349973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5139), 1, + ACTIONS(8691), 1, sym_line_continuation, - [166541] = 2, + [349980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(8693), 1, sym_line_continuation, - [166548] = 2, + [349987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, + ACTIONS(8695), 1, sym_line_continuation, - [166555] = 2, + [349994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 1, + ACTIONS(8697), 1, sym_line_continuation, - [166562] = 2, + [350001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 1, + ACTIONS(8699), 1, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(199)] = 0, - [SMALL_STATE(200)] = 117, - [SMALL_STATE(201)] = 234, - [SMALL_STATE(202)] = 355, - [SMALL_STATE(203)] = 472, - [SMALL_STATE(204)] = 589, - [SMALL_STATE(205)] = 710, - [SMALL_STATE(206)] = 827, - [SMALL_STATE(207)] = 948, - [SMALL_STATE(208)] = 1065, - [SMALL_STATE(209)] = 1186, - [SMALL_STATE(210)] = 1307, - [SMALL_STATE(211)] = 1424, - [SMALL_STATE(212)] = 1541, - [SMALL_STATE(213)] = 1658, - [SMALL_STATE(214)] = 1775, - [SMALL_STATE(215)] = 1892, - [SMALL_STATE(216)] = 2009, - [SMALL_STATE(217)] = 2126, - [SMALL_STATE(218)] = 2243, - [SMALL_STATE(219)] = 2360, - [SMALL_STATE(220)] = 2477, - [SMALL_STATE(221)] = 2598, - [SMALL_STATE(222)] = 2715, - [SMALL_STATE(223)] = 2836, - [SMALL_STATE(224)] = 2953, - [SMALL_STATE(225)] = 3074, - [SMALL_STATE(226)] = 3195, - [SMALL_STATE(227)] = 3316, - [SMALL_STATE(228)] = 3437, - [SMALL_STATE(229)] = 3554, - [SMALL_STATE(230)] = 3675, - [SMALL_STATE(231)] = 3792, - [SMALL_STATE(232)] = 3913, - [SMALL_STATE(233)] = 4034, - [SMALL_STATE(234)] = 4151, - [SMALL_STATE(235)] = 4268, - [SMALL_STATE(236)] = 4385, - [SMALL_STATE(237)] = 4506, - [SMALL_STATE(238)] = 4627, - [SMALL_STATE(239)] = 4744, - [SMALL_STATE(240)] = 4861, - [SMALL_STATE(241)] = 4978, - [SMALL_STATE(242)] = 5099, - [SMALL_STATE(243)] = 5216, - [SMALL_STATE(244)] = 5333, - [SMALL_STATE(245)] = 5450, - [SMALL_STATE(246)] = 5567, - [SMALL_STATE(247)] = 5684, - [SMALL_STATE(248)] = 5801, - [SMALL_STATE(249)] = 5918, - [SMALL_STATE(250)] = 6035, - [SMALL_STATE(251)] = 6154, - [SMALL_STATE(252)] = 6271, - [SMALL_STATE(253)] = 6388, - [SMALL_STATE(254)] = 6509, - [SMALL_STATE(255)] = 6626, - [SMALL_STATE(256)] = 6747, - [SMALL_STATE(257)] = 6864, - [SMALL_STATE(258)] = 6981, - [SMALL_STATE(259)] = 7098, - [SMALL_STATE(260)] = 7215, - [SMALL_STATE(261)] = 7332, - [SMALL_STATE(262)] = 7449, - [SMALL_STATE(263)] = 7566, - [SMALL_STATE(264)] = 7683, - [SMALL_STATE(265)] = 7800, - [SMALL_STATE(266)] = 7921, - [SMALL_STATE(267)] = 8038, - [SMALL_STATE(268)] = 8155, - [SMALL_STATE(269)] = 8276, - [SMALL_STATE(270)] = 8393, - [SMALL_STATE(271)] = 8514, - [SMALL_STATE(272)] = 8633, - [SMALL_STATE(273)] = 8750, - [SMALL_STATE(274)] = 8867, - [SMALL_STATE(275)] = 8984, - [SMALL_STATE(276)] = 9101, - [SMALL_STATE(277)] = 9218, - [SMALL_STATE(278)] = 9335, - [SMALL_STATE(279)] = 9452, - [SMALL_STATE(280)] = 9569, - [SMALL_STATE(281)] = 9690, - [SMALL_STATE(282)] = 9807, - [SMALL_STATE(283)] = 9924, - [SMALL_STATE(284)] = 10041, - [SMALL_STATE(285)] = 10158, - [SMALL_STATE(286)] = 10279, - [SMALL_STATE(287)] = 10396, - [SMALL_STATE(288)] = 10513, - [SMALL_STATE(289)] = 10630, - [SMALL_STATE(290)] = 10747, - [SMALL_STATE(291)] = 10864, - [SMALL_STATE(292)] = 10981, - [SMALL_STATE(293)] = 11098, - [SMALL_STATE(294)] = 11215, - [SMALL_STATE(295)] = 11334, - [SMALL_STATE(296)] = 11455, - [SMALL_STATE(297)] = 11572, - [SMALL_STATE(298)] = 11689, - [SMALL_STATE(299)] = 11806, - [SMALL_STATE(300)] = 11927, - [SMALL_STATE(301)] = 12044, - [SMALL_STATE(302)] = 12161, - [SMALL_STATE(303)] = 12282, - [SMALL_STATE(304)] = 12399, - [SMALL_STATE(305)] = 12520, - [SMALL_STATE(306)] = 12637, - [SMALL_STATE(307)] = 12754, - [SMALL_STATE(308)] = 12871, - [SMALL_STATE(309)] = 12988, - [SMALL_STATE(310)] = 13105, - [SMALL_STATE(311)] = 13222, - [SMALL_STATE(312)] = 13339, - [SMALL_STATE(313)] = 13456, - [SMALL_STATE(314)] = 13573, - [SMALL_STATE(315)] = 13690, - [SMALL_STATE(316)] = 13807, - [SMALL_STATE(317)] = 13924, - [SMALL_STATE(318)] = 14041, - [SMALL_STATE(319)] = 14158, - [SMALL_STATE(320)] = 14279, - [SMALL_STATE(321)] = 14397, - [SMALL_STATE(322)] = 14515, - [SMALL_STATE(323)] = 14633, - [SMALL_STATE(324)] = 14748, - [SMALL_STATE(325)] = 14863, - [SMALL_STATE(326)] = 14978, - [SMALL_STATE(327)] = 15053, - [SMALL_STATE(328)] = 15132, - [SMALL_STATE(329)] = 15211, - [SMALL_STATE(330)] = 15286, - [SMALL_STATE(331)] = 15365, - [SMALL_STATE(332)] = 15480, - [SMALL_STATE(333)] = 15595, - [SMALL_STATE(334)] = 15710, - [SMALL_STATE(335)] = 15825, - [SMALL_STATE(336)] = 15940, - [SMALL_STATE(337)] = 16055, - [SMALL_STATE(338)] = 16170, - [SMALL_STATE(339)] = 16285, - [SMALL_STATE(340)] = 16356, - [SMALL_STATE(341)] = 16427, - [SMALL_STATE(342)] = 16498, - [SMALL_STATE(343)] = 16577, - [SMALL_STATE(344)] = 16692, - [SMALL_STATE(345)] = 16807, - [SMALL_STATE(346)] = 16878, - [SMALL_STATE(347)] = 16993, - [SMALL_STATE(348)] = 17108, - [SMALL_STATE(349)] = 17223, - [SMALL_STATE(350)] = 17298, - [SMALL_STATE(351)] = 17369, - [SMALL_STATE(352)] = 17484, - [SMALL_STATE(353)] = 17599, - [SMALL_STATE(354)] = 17714, - [SMALL_STATE(355)] = 17829, - [SMALL_STATE(356)] = 17944, - [SMALL_STATE(357)] = 18059, - [SMALL_STATE(358)] = 18174, - [SMALL_STATE(359)] = 18281, - [SMALL_STATE(360)] = 18388, - [SMALL_STATE(361)] = 18461, - [SMALL_STATE(362)] = 18532, - [SMALL_STATE(363)] = 18647, - [SMALL_STATE(364)] = 18762, - [SMALL_STATE(365)] = 18877, - [SMALL_STATE(366)] = 18992, - [SMALL_STATE(367)] = 19081, - [SMALL_STATE(368)] = 19172, - [SMALL_STATE(369)] = 19265, - [SMALL_STATE(370)] = 19360, - [SMALL_STATE(371)] = 19447, - [SMALL_STATE(372)] = 19530, - [SMALL_STATE(373)] = 19613, - [SMALL_STATE(374)] = 19728, - [SMALL_STATE(375)] = 19843, - [SMALL_STATE(376)] = 19958, - [SMALL_STATE(377)] = 20073, - [SMALL_STATE(378)] = 20188, - [SMALL_STATE(379)] = 20303, - [SMALL_STATE(380)] = 20410, - [SMALL_STATE(381)] = 20525, - [SMALL_STATE(382)] = 20640, - [SMALL_STATE(383)] = 20711, - [SMALL_STATE(384)] = 20826, - [SMALL_STATE(385)] = 20941, - [SMALL_STATE(386)] = 21056, - [SMALL_STATE(387)] = 21171, - [SMALL_STATE(388)] = 21286, - [SMALL_STATE(389)] = 21401, - [SMALL_STATE(390)] = 21516, - [SMALL_STATE(391)] = 21631, - [SMALL_STATE(392)] = 21746, - [SMALL_STATE(393)] = 21861, - [SMALL_STATE(394)] = 21976, - [SMALL_STATE(395)] = 22091, - [SMALL_STATE(396)] = 22206, - [SMALL_STATE(397)] = 22321, - [SMALL_STATE(398)] = 22394, - [SMALL_STATE(399)] = 22509, - [SMALL_STATE(400)] = 22624, - [SMALL_STATE(401)] = 22739, - [SMALL_STATE(402)] = 22854, - [SMALL_STATE(403)] = 22969, - [SMALL_STATE(404)] = 23084, - [SMALL_STATE(405)] = 23199, - [SMALL_STATE(406)] = 23314, - [SMALL_STATE(407)] = 23429, - [SMALL_STATE(408)] = 23544, - [SMALL_STATE(409)] = 23659, - [SMALL_STATE(410)] = 23774, - [SMALL_STATE(411)] = 23889, - [SMALL_STATE(412)] = 23962, - [SMALL_STATE(413)] = 24077, - [SMALL_STATE(414)] = 24192, - [SMALL_STATE(415)] = 24307, - [SMALL_STATE(416)] = 24422, - [SMALL_STATE(417)] = 24537, - [SMALL_STATE(418)] = 24652, - [SMALL_STATE(419)] = 24767, - [SMALL_STATE(420)] = 24882, - [SMALL_STATE(421)] = 24997, - [SMALL_STATE(422)] = 25112, - [SMALL_STATE(423)] = 25227, - [SMALL_STATE(424)] = 25342, - [SMALL_STATE(425)] = 25415, - [SMALL_STATE(426)] = 25530, - [SMALL_STATE(427)] = 25645, - [SMALL_STATE(428)] = 25760, - [SMALL_STATE(429)] = 25875, - [SMALL_STATE(430)] = 25990, - [SMALL_STATE(431)] = 26063, - [SMALL_STATE(432)] = 26136, - [SMALL_STATE(433)] = 26251, - [SMALL_STATE(434)] = 26366, - [SMALL_STATE(435)] = 26481, - [SMALL_STATE(436)] = 26596, - [SMALL_STATE(437)] = 26667, - [SMALL_STATE(438)] = 26782, - [SMALL_STATE(439)] = 26897, - [SMALL_STATE(440)] = 27012, - [SMALL_STATE(441)] = 27127, - [SMALL_STATE(442)] = 27242, - [SMALL_STATE(443)] = 27313, - [SMALL_STATE(444)] = 27428, - [SMALL_STATE(445)] = 27543, - [SMALL_STATE(446)] = 27658, - [SMALL_STATE(447)] = 27773, - [SMALL_STATE(448)] = 27844, - [SMALL_STATE(449)] = 27959, - [SMALL_STATE(450)] = 28074, - [SMALL_STATE(451)] = 28189, - [SMALL_STATE(452)] = 28304, - [SMALL_STATE(453)] = 28419, - [SMALL_STATE(454)] = 28534, - [SMALL_STATE(455)] = 28649, - [SMALL_STATE(456)] = 28764, - [SMALL_STATE(457)] = 28879, - [SMALL_STATE(458)] = 28994, - [SMALL_STATE(459)] = 29109, - [SMALL_STATE(460)] = 29224, - [SMALL_STATE(461)] = 29339, - [SMALL_STATE(462)] = 29454, - [SMALL_STATE(463)] = 29569, - [SMALL_STATE(464)] = 29684, - [SMALL_STATE(465)] = 29799, - [SMALL_STATE(466)] = 29914, - [SMALL_STATE(467)] = 30029, - [SMALL_STATE(468)] = 30144, - [SMALL_STATE(469)] = 30215, - [SMALL_STATE(470)] = 30330, - [SMALL_STATE(471)] = 30445, - [SMALL_STATE(472)] = 30560, - [SMALL_STATE(473)] = 30631, - [SMALL_STATE(474)] = 30746, - [SMALL_STATE(475)] = 30861, - [SMALL_STATE(476)] = 30976, - [SMALL_STATE(477)] = 31091, - [SMALL_STATE(478)] = 31206, - [SMALL_STATE(479)] = 31321, - [SMALL_STATE(480)] = 31436, - [SMALL_STATE(481)] = 31551, - [SMALL_STATE(482)] = 31666, - [SMALL_STATE(483)] = 31781, - [SMALL_STATE(484)] = 31896, - [SMALL_STATE(485)] = 32011, - [SMALL_STATE(486)] = 32126, - [SMALL_STATE(487)] = 32241, - [SMALL_STATE(488)] = 32312, - [SMALL_STATE(489)] = 32427, - [SMALL_STATE(490)] = 32542, - [SMALL_STATE(491)] = 32657, - [SMALL_STATE(492)] = 32772, - [SMALL_STATE(493)] = 32887, - [SMALL_STATE(494)] = 33002, - [SMALL_STATE(495)] = 33117, - [SMALL_STATE(496)] = 33232, - [SMALL_STATE(497)] = 33347, - [SMALL_STATE(498)] = 33462, - [SMALL_STATE(499)] = 33567, - [SMALL_STATE(500)] = 33682, - [SMALL_STATE(501)] = 33797, - [SMALL_STATE(502)] = 33912, - [SMALL_STATE(503)] = 34027, - [SMALL_STATE(504)] = 34142, - [SMALL_STATE(505)] = 34257, - [SMALL_STATE(506)] = 34372, - [SMALL_STATE(507)] = 34487, - [SMALL_STATE(508)] = 34558, - [SMALL_STATE(509)] = 34673, - [SMALL_STATE(510)] = 34788, - [SMALL_STATE(511)] = 34903, - [SMALL_STATE(512)] = 35018, - [SMALL_STATE(513)] = 35133, - [SMALL_STATE(514)] = 35248, - [SMALL_STATE(515)] = 35363, - [SMALL_STATE(516)] = 35478, - [SMALL_STATE(517)] = 35593, - [SMALL_STATE(518)] = 35708, - [SMALL_STATE(519)] = 35823, - [SMALL_STATE(520)] = 35938, - [SMALL_STATE(521)] = 36053, - [SMALL_STATE(522)] = 36168, - [SMALL_STATE(523)] = 36239, - [SMALL_STATE(524)] = 36354, - [SMALL_STATE(525)] = 36469, - [SMALL_STATE(526)] = 36584, - [SMALL_STATE(527)] = 36699, - [SMALL_STATE(528)] = 36814, - [SMALL_STATE(529)] = 36929, - [SMALL_STATE(530)] = 37044, - [SMALL_STATE(531)] = 37159, - [SMALL_STATE(532)] = 37274, - [SMALL_STATE(533)] = 37389, - [SMALL_STATE(534)] = 37504, - [SMALL_STATE(535)] = 37619, - [SMALL_STATE(536)] = 37734, - [SMALL_STATE(537)] = 37849, - [SMALL_STATE(538)] = 37964, - [SMALL_STATE(539)] = 38079, - [SMALL_STATE(540)] = 38194, - [SMALL_STATE(541)] = 38309, - [SMALL_STATE(542)] = 38384, - [SMALL_STATE(543)] = 38499, - [SMALL_STATE(544)] = 38614, - [SMALL_STATE(545)] = 38729, - [SMALL_STATE(546)] = 38804, - [SMALL_STATE(547)] = 38919, - [SMALL_STATE(548)] = 39034, - [SMALL_STATE(549)] = 39149, - [SMALL_STATE(550)] = 39222, - [SMALL_STATE(551)] = 39337, - [SMALL_STATE(552)] = 39452, - [SMALL_STATE(553)] = 39567, - [SMALL_STATE(554)] = 39682, - [SMALL_STATE(555)] = 39797, - [SMALL_STATE(556)] = 39912, - [SMALL_STATE(557)] = 40027, - [SMALL_STATE(558)] = 40142, - [SMALL_STATE(559)] = 40257, - [SMALL_STATE(560)] = 40372, - [SMALL_STATE(561)] = 40443, - [SMALL_STATE(562)] = 40558, - [SMALL_STATE(563)] = 40673, - [SMALL_STATE(564)] = 40788, - [SMALL_STATE(565)] = 40903, - [SMALL_STATE(566)] = 41018, - [SMALL_STATE(567)] = 41133, - [SMALL_STATE(568)] = 41248, - [SMALL_STATE(569)] = 41353, - [SMALL_STATE(570)] = 41468, - [SMALL_STATE(571)] = 41583, - [SMALL_STATE(572)] = 41698, - [SMALL_STATE(573)] = 41813, - [SMALL_STATE(574)] = 41928, - [SMALL_STATE(575)] = 42043, - [SMALL_STATE(576)] = 42158, - [SMALL_STATE(577)] = 42273, - [SMALL_STATE(578)] = 42388, - [SMALL_STATE(579)] = 42503, - [SMALL_STATE(580)] = 42618, - [SMALL_STATE(581)] = 42733, - [SMALL_STATE(582)] = 42848, - [SMALL_STATE(583)] = 42963, - [SMALL_STATE(584)] = 43078, - [SMALL_STATE(585)] = 43193, - [SMALL_STATE(586)] = 43308, - [SMALL_STATE(587)] = 43423, - [SMALL_STATE(588)] = 43538, - [SMALL_STATE(589)] = 43653, - [SMALL_STATE(590)] = 43768, - [SMALL_STATE(591)] = 43883, - [SMALL_STATE(592)] = 43998, - [SMALL_STATE(593)] = 44113, - [SMALL_STATE(594)] = 44228, - [SMALL_STATE(595)] = 44343, - [SMALL_STATE(596)] = 44458, - [SMALL_STATE(597)] = 44573, - [SMALL_STATE(598)] = 44688, - [SMALL_STATE(599)] = 44803, - [SMALL_STATE(600)] = 44918, - [SMALL_STATE(601)] = 45033, - [SMALL_STATE(602)] = 45148, - [SMALL_STATE(603)] = 45263, - [SMALL_STATE(604)] = 45378, - [SMALL_STATE(605)] = 45493, - [SMALL_STATE(606)] = 45564, - [SMALL_STATE(607)] = 45679, - [SMALL_STATE(608)] = 45794, - [SMALL_STATE(609)] = 45909, - [SMALL_STATE(610)] = 46024, - [SMALL_STATE(611)] = 46139, - [SMALL_STATE(612)] = 46254, - [SMALL_STATE(613)] = 46369, - [SMALL_STATE(614)] = 46484, - [SMALL_STATE(615)] = 46599, - [SMALL_STATE(616)] = 46682, - [SMALL_STATE(617)] = 46797, - [SMALL_STATE(618)] = 46912, - [SMALL_STATE(619)] = 47027, - [SMALL_STATE(620)] = 47142, - [SMALL_STATE(621)] = 47257, - [SMALL_STATE(622)] = 47372, - [SMALL_STATE(623)] = 47487, - [SMALL_STATE(624)] = 47602, - [SMALL_STATE(625)] = 47717, - [SMALL_STATE(626)] = 47832, - [SMALL_STATE(627)] = 47947, - [SMALL_STATE(628)] = 48062, - [SMALL_STATE(629)] = 48177, - [SMALL_STATE(630)] = 48292, - [SMALL_STATE(631)] = 48397, - [SMALL_STATE(632)] = 48512, - [SMALL_STATE(633)] = 48627, - [SMALL_STATE(634)] = 48742, - [SMALL_STATE(635)] = 48857, - [SMALL_STATE(636)] = 48938, - [SMALL_STATE(637)] = 49053, - [SMALL_STATE(638)] = 49168, - [SMALL_STATE(639)] = 49283, - [SMALL_STATE(640)] = 49398, - [SMALL_STATE(641)] = 49513, - [SMALL_STATE(642)] = 49628, - [SMALL_STATE(643)] = 49743, - [SMALL_STATE(644)] = 49858, - [SMALL_STATE(645)] = 49973, - [SMALL_STATE(646)] = 50088, - [SMALL_STATE(647)] = 50203, - [SMALL_STATE(648)] = 50318, - [SMALL_STATE(649)] = 50433, - [SMALL_STATE(650)] = 50504, - [SMALL_STATE(651)] = 50619, - [SMALL_STATE(652)] = 50700, - [SMALL_STATE(653)] = 50815, - [SMALL_STATE(654)] = 50930, - [SMALL_STATE(655)] = 51045, - [SMALL_STATE(656)] = 51160, - [SMALL_STATE(657)] = 51275, - [SMALL_STATE(658)] = 51390, - [SMALL_STATE(659)] = 51505, - [SMALL_STATE(660)] = 51620, - [SMALL_STATE(661)] = 51693, - [SMALL_STATE(662)] = 51808, - [SMALL_STATE(663)] = 51879, - [SMALL_STATE(664)] = 51994, - [SMALL_STATE(665)] = 52109, - [SMALL_STATE(666)] = 52224, - [SMALL_STATE(667)] = 52339, - [SMALL_STATE(668)] = 52454, - [SMALL_STATE(669)] = 52569, - [SMALL_STATE(670)] = 52684, - [SMALL_STATE(671)] = 52799, - [SMALL_STATE(672)] = 52914, - [SMALL_STATE(673)] = 52987, - [SMALL_STATE(674)] = 53102, - [SMALL_STATE(675)] = 53217, - [SMALL_STATE(676)] = 53332, - [SMALL_STATE(677)] = 53447, - [SMALL_STATE(678)] = 53562, - [SMALL_STATE(679)] = 53677, - [SMALL_STATE(680)] = 53748, - [SMALL_STATE(681)] = 53863, - [SMALL_STATE(682)] = 53978, - [SMALL_STATE(683)] = 54093, - [SMALL_STATE(684)] = 54208, - [SMALL_STATE(685)] = 54323, - [SMALL_STATE(686)] = 54438, - [SMALL_STATE(687)] = 54553, - [SMALL_STATE(688)] = 54668, - [SMALL_STATE(689)] = 54783, - [SMALL_STATE(690)] = 54898, - [SMALL_STATE(691)] = 55013, - [SMALL_STATE(692)] = 55128, - [SMALL_STATE(693)] = 55243, - [SMALL_STATE(694)] = 55358, - [SMALL_STATE(695)] = 55473, - [SMALL_STATE(696)] = 55588, - [SMALL_STATE(697)] = 55673, - [SMALL_STATE(698)] = 55788, - [SMALL_STATE(699)] = 55903, - [SMALL_STATE(700)] = 56018, - [SMALL_STATE(701)] = 56133, - [SMALL_STATE(702)] = 56248, - [SMALL_STATE(703)] = 56363, - [SMALL_STATE(704)] = 56478, - [SMALL_STATE(705)] = 56583, - [SMALL_STATE(706)] = 56698, - [SMALL_STATE(707)] = 56813, - [SMALL_STATE(708)] = 56928, - [SMALL_STATE(709)] = 57043, - [SMALL_STATE(710)] = 57158, - [SMALL_STATE(711)] = 57273, - [SMALL_STATE(712)] = 57388, - [SMALL_STATE(713)] = 57503, - [SMALL_STATE(714)] = 57618, - [SMALL_STATE(715)] = 57689, - [SMALL_STATE(716)] = 57804, - [SMALL_STATE(717)] = 57919, - [SMALL_STATE(718)] = 58034, - [SMALL_STATE(719)] = 58149, - [SMALL_STATE(720)] = 58264, - [SMALL_STATE(721)] = 58379, - [SMALL_STATE(722)] = 58494, - [SMALL_STATE(723)] = 58565, - [SMALL_STATE(724)] = 58680, - [SMALL_STATE(725)] = 58795, - [SMALL_STATE(726)] = 58910, - [SMALL_STATE(727)] = 58981, - [SMALL_STATE(728)] = 59096, - [SMALL_STATE(729)] = 59211, - [SMALL_STATE(730)] = 59326, - [SMALL_STATE(731)] = 59441, - [SMALL_STATE(732)] = 59556, - [SMALL_STATE(733)] = 59627, - [SMALL_STATE(734)] = 59742, - [SMALL_STATE(735)] = 59813, - [SMALL_STATE(736)] = 59888, - [SMALL_STATE(737)] = 60003, - [SMALL_STATE(738)] = 60118, - [SMALL_STATE(739)] = 60233, - [SMALL_STATE(740)] = 60348, - [SMALL_STATE(741)] = 60463, - [SMALL_STATE(742)] = 60534, - [SMALL_STATE(743)] = 60619, - [SMALL_STATE(744)] = 60734, - [SMALL_STATE(745)] = 60851, - [SMALL_STATE(746)] = 60966, - [SMALL_STATE(747)] = 61081, - [SMALL_STATE(748)] = 61164, - [SMALL_STATE(749)] = 61279, - [SMALL_STATE(750)] = 61394, - [SMALL_STATE(751)] = 61509, - [SMALL_STATE(752)] = 61624, - [SMALL_STATE(753)] = 61739, - [SMALL_STATE(754)] = 61854, - [SMALL_STATE(755)] = 61969, - [SMALL_STATE(756)] = 62040, - [SMALL_STATE(757)] = 62155, - [SMALL_STATE(758)] = 62270, - [SMALL_STATE(759)] = 62385, - [SMALL_STATE(760)] = 62500, - [SMALL_STATE(761)] = 62615, - [SMALL_STATE(762)] = 62730, - [SMALL_STATE(763)] = 62845, - [SMALL_STATE(764)] = 62960, - [SMALL_STATE(765)] = 63075, - [SMALL_STATE(766)] = 63182, - [SMALL_STATE(767)] = 63297, - [SMALL_STATE(768)] = 63412, - [SMALL_STATE(769)] = 63527, - [SMALL_STATE(770)] = 63642, - [SMALL_STATE(771)] = 63749, - [SMALL_STATE(772)] = 63864, - [SMALL_STATE(773)] = 63979, - [SMALL_STATE(774)] = 64094, - [SMALL_STATE(775)] = 64209, - [SMALL_STATE(776)] = 64324, - [SMALL_STATE(777)] = 64439, - [SMALL_STATE(778)] = 64554, - [SMALL_STATE(779)] = 64669, - [SMALL_STATE(780)] = 64784, - [SMALL_STATE(781)] = 64899, - [SMALL_STATE(782)] = 65014, - [SMALL_STATE(783)] = 65085, - [SMALL_STATE(784)] = 65200, - [SMALL_STATE(785)] = 65315, - [SMALL_STATE(786)] = 65430, - [SMALL_STATE(787)] = 65545, - [SMALL_STATE(788)] = 65660, - [SMALL_STATE(789)] = 65775, - [SMALL_STATE(790)] = 65890, - [SMALL_STATE(791)] = 66005, - [SMALL_STATE(792)] = 66120, - [SMALL_STATE(793)] = 66191, - [SMALL_STATE(794)] = 66306, - [SMALL_STATE(795)] = 66421, - [SMALL_STATE(796)] = 66536, - [SMALL_STATE(797)] = 66651, - [SMALL_STATE(798)] = 66766, - [SMALL_STATE(799)] = 66881, - [SMALL_STATE(800)] = 66996, - [SMALL_STATE(801)] = 67111, - [SMALL_STATE(802)] = 67226, - [SMALL_STATE(803)] = 67341, - [SMALL_STATE(804)] = 67456, - [SMALL_STATE(805)] = 67571, - [SMALL_STATE(806)] = 67686, - [SMALL_STATE(807)] = 67801, - [SMALL_STATE(808)] = 67916, - [SMALL_STATE(809)] = 68031, - [SMALL_STATE(810)] = 68146, - [SMALL_STATE(811)] = 68261, - [SMALL_STATE(812)] = 68350, - [SMALL_STATE(813)] = 68441, - [SMALL_STATE(814)] = 68534, - [SMALL_STATE(815)] = 68649, - [SMALL_STATE(816)] = 68744, - [SMALL_STATE(817)] = 68831, - [SMALL_STATE(818)] = 68946, - [SMALL_STATE(819)] = 69029, - [SMALL_STATE(820)] = 69112, - [SMALL_STATE(821)] = 69227, - [SMALL_STATE(822)] = 69302, - [SMALL_STATE(823)] = 69417, - [SMALL_STATE(824)] = 69532, - [SMALL_STATE(825)] = 69647, - [SMALL_STATE(826)] = 69762, - [SMALL_STATE(827)] = 69877, - [SMALL_STATE(828)] = 69992, - [SMALL_STATE(829)] = 70107, - [SMALL_STATE(830)] = 70222, - [SMALL_STATE(831)] = 70337, - [SMALL_STATE(832)] = 70452, - [SMALL_STATE(833)] = 70527, - [SMALL_STATE(834)] = 70642, - [SMALL_STATE(835)] = 70757, - [SMALL_STATE(836)] = 70830, - [SMALL_STATE(837)] = 70945, - [SMALL_STATE(838)] = 71060, - [SMALL_STATE(839)] = 71175, - [SMALL_STATE(840)] = 71282, - [SMALL_STATE(841)] = 71397, - [SMALL_STATE(842)] = 71512, - [SMALL_STATE(843)] = 71627, - [SMALL_STATE(844)] = 71742, - [SMALL_STATE(845)] = 71857, - [SMALL_STATE(846)] = 71972, - [SMALL_STATE(847)] = 72087, - [SMALL_STATE(848)] = 72202, - [SMALL_STATE(849)] = 72273, - [SMALL_STATE(850)] = 72388, - [SMALL_STATE(851)] = 72503, - [SMALL_STATE(852)] = 72618, - [SMALL_STATE(853)] = 72733, - [SMALL_STATE(854)] = 72848, - [SMALL_STATE(855)] = 72963, - [SMALL_STATE(856)] = 73078, - [SMALL_STATE(857)] = 73193, - [SMALL_STATE(858)] = 73308, - [SMALL_STATE(859)] = 73423, - [SMALL_STATE(860)] = 73538, - [SMALL_STATE(861)] = 73653, - [SMALL_STATE(862)] = 73768, - [SMALL_STATE(863)] = 73883, - [SMALL_STATE(864)] = 73998, - [SMALL_STATE(865)] = 74066, - [SMALL_STATE(866)] = 74136, - [SMALL_STATE(867)] = 74204, - [SMALL_STATE(868)] = 74274, - [SMALL_STATE(869)] = 74344, - [SMALL_STATE(870)] = 74414, - [SMALL_STATE(871)] = 74484, - [SMALL_STATE(872)] = 74554, - [SMALL_STATE(873)] = 74622, - [SMALL_STATE(874)] = 74692, - [SMALL_STATE(875)] = 74760, - [SMALL_STATE(876)] = 74830, - [SMALL_STATE(877)] = 74900, - [SMALL_STATE(878)] = 74970, - [SMALL_STATE(879)] = 75048, - [SMALL_STATE(880)] = 75118, - [SMALL_STATE(881)] = 75196, - [SMALL_STATE(882)] = 75266, - [SMALL_STATE(883)] = 75334, - [SMALL_STATE(884)] = 75402, - [SMALL_STATE(885)] = 75472, - [SMALL_STATE(886)] = 75542, - [SMALL_STATE(887)] = 75610, - [SMALL_STATE(888)] = 75678, - [SMALL_STATE(889)] = 75748, - [SMALL_STATE(890)] = 75818, - [SMALL_STATE(891)] = 75886, - [SMALL_STATE(892)] = 75954, - [SMALL_STATE(893)] = 76024, - [SMALL_STATE(894)] = 76092, - [SMALL_STATE(895)] = 76160, - [SMALL_STATE(896)] = 76228, - [SMALL_STATE(897)] = 76296, - [SMALL_STATE(898)] = 76364, - [SMALL_STATE(899)] = 76432, - [SMALL_STATE(900)] = 76500, - [SMALL_STATE(901)] = 76568, - [SMALL_STATE(902)] = 76636, - [SMALL_STATE(903)] = 76704, - [SMALL_STATE(904)] = 76772, - [SMALL_STATE(905)] = 76840, - [SMALL_STATE(906)] = 76910, - [SMALL_STATE(907)] = 76978, - [SMALL_STATE(908)] = 77048, - [SMALL_STATE(909)] = 77118, - [SMALL_STATE(910)] = 77186, - [SMALL_STATE(911)] = 77253, - [SMALL_STATE(912)] = 77320, - [SMALL_STATE(913)] = 77387, - [SMALL_STATE(914)] = 77458, - [SMALL_STATE(915)] = 77525, - [SMALL_STATE(916)] = 77592, - [SMALL_STATE(917)] = 77659, - [SMALL_STATE(918)] = 77726, - [SMALL_STATE(919)] = 77793, - [SMALL_STATE(920)] = 77860, - [SMALL_STATE(921)] = 77927, - [SMALL_STATE(922)] = 77994, - [SMALL_STATE(923)] = 78061, - [SMALL_STATE(924)] = 78128, - [SMALL_STATE(925)] = 78195, - [SMALL_STATE(926)] = 78262, - [SMALL_STATE(927)] = 78329, - [SMALL_STATE(928)] = 78396, - [SMALL_STATE(929)] = 78463, - [SMALL_STATE(930)] = 78530, - [SMALL_STATE(931)] = 78597, - [SMALL_STATE(932)] = 78664, - [SMALL_STATE(933)] = 78731, - [SMALL_STATE(934)] = 78798, - [SMALL_STATE(935)] = 78865, - [SMALL_STATE(936)] = 78932, - [SMALL_STATE(937)] = 78999, - [SMALL_STATE(938)] = 79066, - [SMALL_STATE(939)] = 79137, - [SMALL_STATE(940)] = 79204, - [SMALL_STATE(941)] = 79271, - [SMALL_STATE(942)] = 79338, - [SMALL_STATE(943)] = 79409, - [SMALL_STATE(944)] = 79476, - [SMALL_STATE(945)] = 79543, - [SMALL_STATE(946)] = 79610, - [SMALL_STATE(947)] = 79677, - [SMALL_STATE(948)] = 79744, - [SMALL_STATE(949)] = 79811, - [SMALL_STATE(950)] = 79878, - [SMALL_STATE(951)] = 79945, - [SMALL_STATE(952)] = 80012, - [SMALL_STATE(953)] = 80079, - [SMALL_STATE(954)] = 80146, - [SMALL_STATE(955)] = 80213, - [SMALL_STATE(956)] = 80280, - [SMALL_STATE(957)] = 80347, - [SMALL_STATE(958)] = 80414, - [SMALL_STATE(959)] = 80481, - [SMALL_STATE(960)] = 80548, - [SMALL_STATE(961)] = 80615, - [SMALL_STATE(962)] = 80682, - [SMALL_STATE(963)] = 80749, - [SMALL_STATE(964)] = 80816, - [SMALL_STATE(965)] = 80883, - [SMALL_STATE(966)] = 80950, - [SMALL_STATE(967)] = 81017, - [SMALL_STATE(968)] = 81084, - [SMALL_STATE(969)] = 81151, - [SMALL_STATE(970)] = 81218, - [SMALL_STATE(971)] = 81285, - [SMALL_STATE(972)] = 81352, - [SMALL_STATE(973)] = 81419, - [SMALL_STATE(974)] = 81486, - [SMALL_STATE(975)] = 81553, - [SMALL_STATE(976)] = 81624, - [SMALL_STATE(977)] = 81695, - [SMALL_STATE(978)] = 81762, - [SMALL_STATE(979)] = 81829, - [SMALL_STATE(980)] = 81896, - [SMALL_STATE(981)] = 81963, - [SMALL_STATE(982)] = 82030, - [SMALL_STATE(983)] = 82097, - [SMALL_STATE(984)] = 82164, - [SMALL_STATE(985)] = 82231, - [SMALL_STATE(986)] = 82298, - [SMALL_STATE(987)] = 82365, - [SMALL_STATE(988)] = 82432, - [SMALL_STATE(989)] = 82499, - [SMALL_STATE(990)] = 82566, - [SMALL_STATE(991)] = 82633, - [SMALL_STATE(992)] = 82700, - [SMALL_STATE(993)] = 82767, - [SMALL_STATE(994)] = 82834, - [SMALL_STATE(995)] = 82901, - [SMALL_STATE(996)] = 82968, - [SMALL_STATE(997)] = 83035, - [SMALL_STATE(998)] = 83102, - [SMALL_STATE(999)] = 83169, - [SMALL_STATE(1000)] = 83236, - [SMALL_STATE(1001)] = 83303, - [SMALL_STATE(1002)] = 83370, - [SMALL_STATE(1003)] = 83437, - [SMALL_STATE(1004)] = 83504, - [SMALL_STATE(1005)] = 83571, - [SMALL_STATE(1006)] = 83638, - [SMALL_STATE(1007)] = 83705, - [SMALL_STATE(1008)] = 83772, - [SMALL_STATE(1009)] = 83839, - [SMALL_STATE(1010)] = 83906, - [SMALL_STATE(1011)] = 83977, - [SMALL_STATE(1012)] = 84044, - [SMALL_STATE(1013)] = 84111, - [SMALL_STATE(1014)] = 84178, - [SMALL_STATE(1015)] = 84245, - [SMALL_STATE(1016)] = 84312, - [SMALL_STATE(1017)] = 84379, - [SMALL_STATE(1018)] = 84446, - [SMALL_STATE(1019)] = 84518, - [SMALL_STATE(1020)] = 84590, - [SMALL_STATE(1021)] = 84668, - [SMALL_STATE(1022)] = 84740, - [SMALL_STATE(1023)] = 84801, - [SMALL_STATE(1024)] = 84896, - [SMALL_STATE(1025)] = 84973, - [SMALL_STATE(1026)] = 85054, - [SMALL_STATE(1027)] = 85115, - [SMALL_STATE(1028)] = 85194, - [SMALL_STATE(1029)] = 85269, - [SMALL_STATE(1030)] = 85338, - [SMALL_STATE(1031)] = 85407, - [SMALL_STATE(1032)] = 85472, - [SMALL_STATE(1033)] = 85535, - [SMALL_STATE(1034)] = 85600, - [SMALL_STATE(1035)] = 85663, - [SMALL_STATE(1036)] = 85724, - [SMALL_STATE(1037)] = 85787, - [SMALL_STATE(1038)] = 85850, - [SMALL_STATE(1039)] = 85935, - [SMALL_STATE(1040)] = 86032, - [SMALL_STATE(1041)] = 86093, - [SMALL_STATE(1042)] = 86166, - [SMALL_STATE(1043)] = 86227, - [SMALL_STATE(1044)] = 86300, - [SMALL_STATE(1045)] = 86365, - [SMALL_STATE(1046)] = 86426, - [SMALL_STATE(1047)] = 86491, - [SMALL_STATE(1048)] = 86554, - [SMALL_STATE(1049)] = 86615, - [SMALL_STATE(1050)] = 86712, - [SMALL_STATE(1051)] = 86785, - [SMALL_STATE(1052)] = 86846, - [SMALL_STATE(1053)] = 86917, - [SMALL_STATE(1054)] = 86978, - [SMALL_STATE(1055)] = 87039, - [SMALL_STATE(1056)] = 87122, - [SMALL_STATE(1057)] = 87183, - [SMALL_STATE(1058)] = 87278, - [SMALL_STATE(1059)] = 87339, - [SMALL_STATE(1060)] = 87402, - [SMALL_STATE(1061)] = 87463, - [SMALL_STATE(1062)] = 87560, - [SMALL_STATE(1063)] = 87621, - [SMALL_STATE(1064)] = 87682, - [SMALL_STATE(1065)] = 87740, - [SMALL_STATE(1066)] = 87808, - [SMALL_STATE(1067)] = 87868, - [SMALL_STATE(1068)] = 87926, - [SMALL_STATE(1069)] = 87984, - [SMALL_STATE(1070)] = 88042, - [SMALL_STATE(1071)] = 88102, - [SMALL_STATE(1072)] = 88160, - [SMALL_STATE(1073)] = 88220, - [SMALL_STATE(1074)] = 88280, - [SMALL_STATE(1075)] = 88338, - [SMALL_STATE(1076)] = 88396, - [SMALL_STATE(1077)] = 88454, - [SMALL_STATE(1078)] = 88512, - [SMALL_STATE(1079)] = 88572, - [SMALL_STATE(1080)] = 88630, - [SMALL_STATE(1081)] = 88688, - [SMALL_STATE(1082)] = 88746, - [SMALL_STATE(1083)] = 88806, - [SMALL_STATE(1084)] = 88866, - [SMALL_STATE(1085)] = 88926, - [SMALL_STATE(1086)] = 88986, - [SMALL_STATE(1087)] = 89046, - [SMALL_STATE(1088)] = 89104, - [SMALL_STATE(1089)] = 89161, - [SMALL_STATE(1090)] = 89226, - [SMALL_STATE(1091)] = 89283, - [SMALL_STATE(1092)] = 89340, - [SMALL_STATE(1093)] = 89397, - [SMALL_STATE(1094)] = 89454, - [SMALL_STATE(1095)] = 89511, - [SMALL_STATE(1096)] = 89568, - [SMALL_STATE(1097)] = 89625, - [SMALL_STATE(1098)] = 89682, - [SMALL_STATE(1099)] = 89739, - [SMALL_STATE(1100)] = 89796, - [SMALL_STATE(1101)] = 89853, - [SMALL_STATE(1102)] = 89910, - [SMALL_STATE(1103)] = 89967, - [SMALL_STATE(1104)] = 90032, - [SMALL_STATE(1105)] = 90089, - [SMALL_STATE(1106)] = 90154, - [SMALL_STATE(1107)] = 90211, - [SMALL_STATE(1108)] = 90272, - [SMALL_STATE(1109)] = 90337, - [SMALL_STATE(1110)] = 90402, - [SMALL_STATE(1111)] = 90459, - [SMALL_STATE(1112)] = 90516, - [SMALL_STATE(1113)] = 90573, - [SMALL_STATE(1114)] = 90630, - [SMALL_STATE(1115)] = 90687, - [SMALL_STATE(1116)] = 90752, - [SMALL_STATE(1117)] = 90809, - [SMALL_STATE(1118)] = 90866, - [SMALL_STATE(1119)] = 90927, - [SMALL_STATE(1120)] = 90984, - [SMALL_STATE(1121)] = 91041, - [SMALL_STATE(1122)] = 91098, - [SMALL_STATE(1123)] = 91155, - [SMALL_STATE(1124)] = 91212, - [SMALL_STATE(1125)] = 91277, - [SMALL_STATE(1126)] = 91334, - [SMALL_STATE(1127)] = 91391, - [SMALL_STATE(1128)] = 91448, - [SMALL_STATE(1129)] = 91509, - [SMALL_STATE(1130)] = 91566, - [SMALL_STATE(1131)] = 91623, - [SMALL_STATE(1132)] = 91680, - [SMALL_STATE(1133)] = 91745, - [SMALL_STATE(1134)] = 91802, - [SMALL_STATE(1135)] = 91859, - [SMALL_STATE(1136)] = 91916, - [SMALL_STATE(1137)] = 91973, - [SMALL_STATE(1138)] = 92030, - [SMALL_STATE(1139)] = 92087, - [SMALL_STATE(1140)] = 92144, - [SMALL_STATE(1141)] = 92201, - [SMALL_STATE(1142)] = 92258, - [SMALL_STATE(1143)] = 92315, - [SMALL_STATE(1144)] = 92372, - [SMALL_STATE(1145)] = 92429, - [SMALL_STATE(1146)] = 92486, - [SMALL_STATE(1147)] = 92543, - [SMALL_STATE(1148)] = 92600, - [SMALL_STATE(1149)] = 92657, - [SMALL_STATE(1150)] = 92714, - [SMALL_STATE(1151)] = 92778, - [SMALL_STATE(1152)] = 92842, - [SMALL_STATE(1153)] = 92906, - [SMALL_STATE(1154)] = 92968, - [SMALL_STATE(1155)] = 93022, - [SMALL_STATE(1156)] = 93084, - [SMALL_STATE(1157)] = 93146, - [SMALL_STATE(1158)] = 93200, - [SMALL_STATE(1159)] = 93266, - [SMALL_STATE(1160)] = 93328, - [SMALL_STATE(1161)] = 93382, - [SMALL_STATE(1162)] = 93448, - [SMALL_STATE(1163)] = 93502, - [SMALL_STATE(1164)] = 93556, - [SMALL_STATE(1165)] = 93610, - [SMALL_STATE(1166)] = 93672, - [SMALL_STATE(1167)] = 93733, - [SMALL_STATE(1168)] = 93796, - [SMALL_STATE(1169)] = 93847, - [SMALL_STATE(1170)] = 93912, - [SMALL_STATE(1171)] = 93973, - [SMALL_STATE(1172)] = 94024, - [SMALL_STATE(1173)] = 94089, - [SMALL_STATE(1174)] = 94154, - [SMALL_STATE(1175)] = 94215, - [SMALL_STATE(1176)] = 94266, - [SMALL_STATE(1177)] = 94317, - [SMALL_STATE(1178)] = 94378, - [SMALL_STATE(1179)] = 94429, - [SMALL_STATE(1180)] = 94492, - [SMALL_STATE(1181)] = 94545, - [SMALL_STATE(1182)] = 94610, - [SMALL_STATE(1183)] = 94696, - [SMALL_STATE(1184)] = 94748, - [SMALL_STATE(1185)] = 94808, - [SMALL_STATE(1186)] = 94868, - [SMALL_STATE(1187)] = 94918, - [SMALL_STATE(1188)] = 94968, - [SMALL_STATE(1189)] = 95026, - [SMALL_STATE(1190)] = 95076, - [SMALL_STATE(1191)] = 95138, - [SMALL_STATE(1192)] = 95196, - [SMALL_STATE(1193)] = 95250, - [SMALL_STATE(1194)] = 95304, - [SMALL_STATE(1195)] = 95354, - [SMALL_STATE(1196)] = 95406, - [SMALL_STATE(1197)] = 95456, - [SMALL_STATE(1198)] = 95508, - [SMALL_STATE(1199)] = 95558, - [SMALL_STATE(1200)] = 95616, - [SMALL_STATE(1201)] = 95672, - [SMALL_STATE(1202)] = 95728, - [SMALL_STATE(1203)] = 95784, - [SMALL_STATE(1204)] = 95840, - [SMALL_STATE(1205)] = 95890, - [SMALL_STATE(1206)] = 95950, - [SMALL_STATE(1207)] = 96038, - [SMALL_STATE(1208)] = 96126, - [SMALL_STATE(1209)] = 96186, - [SMALL_STATE(1210)] = 96248, - [SMALL_STATE(1211)] = 96308, - [SMALL_STATE(1212)] = 96378, - [SMALL_STATE(1213)] = 96450, - [SMALL_STATE(1214)] = 96524, - [SMALL_STATE(1215)] = 96600, - [SMALL_STATE(1216)] = 96666, - [SMALL_STATE(1217)] = 96722, - [SMALL_STATE(1218)] = 96784, - [SMALL_STATE(1219)] = 96846, - [SMALL_STATE(1220)] = 96898, - [SMALL_STATE(1221)] = 96956, - [SMALL_STATE(1222)] = 97014, - [SMALL_STATE(1223)] = 97102, - [SMALL_STATE(1224)] = 97160, - [SMALL_STATE(1225)] = 97210, - [SMALL_STATE(1226)] = 97272, - [SMALL_STATE(1227)] = 97330, - [SMALL_STATE(1228)] = 97382, - [SMALL_STATE(1229)] = 97440, - [SMALL_STATE(1230)] = 97526, - [SMALL_STATE(1231)] = 97584, - [SMALL_STATE(1232)] = 97642, - [SMALL_STATE(1233)] = 97702, - [SMALL_STATE(1234)] = 97751, - [SMALL_STATE(1235)] = 97810, - [SMALL_STATE(1236)] = 97861, - [SMALL_STATE(1237)] = 97910, - [SMALL_STATE(1238)] = 97957, - [SMALL_STATE(1239)] = 98004, - [SMALL_STATE(1240)] = 98051, - [SMALL_STATE(1241)] = 98098, - [SMALL_STATE(1242)] = 98145, - [SMALL_STATE(1243)] = 98198, - [SMALL_STATE(1244)] = 98259, - [SMALL_STATE(1245)] = 98306, - [SMALL_STATE(1246)] = 98353, - [SMALL_STATE(1247)] = 98400, - [SMALL_STATE(1248)] = 98453, - [SMALL_STATE(1249)] = 98500, - [SMALL_STATE(1250)] = 98547, - [SMALL_STATE(1251)] = 98604, - [SMALL_STATE(1252)] = 98651, - [SMALL_STATE(1253)] = 98698, - [SMALL_STATE(1254)] = 98745, - [SMALL_STATE(1255)] = 98792, - [SMALL_STATE(1256)] = 98839, - [SMALL_STATE(1257)] = 98886, - [SMALL_STATE(1258)] = 98933, - [SMALL_STATE(1259)] = 98980, - [SMALL_STATE(1260)] = 99027, - [SMALL_STATE(1261)] = 99074, - [SMALL_STATE(1262)] = 99125, - [SMALL_STATE(1263)] = 99172, - [SMALL_STATE(1264)] = 99221, - [SMALL_STATE(1265)] = 99268, - [SMALL_STATE(1266)] = 99315, - [SMALL_STATE(1267)] = 99362, - [SMALL_STATE(1268)] = 99409, - [SMALL_STATE(1269)] = 99456, - [SMALL_STATE(1270)] = 99503, - [SMALL_STATE(1271)] = 99550, - [SMALL_STATE(1272)] = 99597, - [SMALL_STATE(1273)] = 99644, - [SMALL_STATE(1274)] = 99691, - [SMALL_STATE(1275)] = 99738, - [SMALL_STATE(1276)] = 99787, - [SMALL_STATE(1277)] = 99834, - [SMALL_STATE(1278)] = 99893, - [SMALL_STATE(1279)] = 99944, - [SMALL_STATE(1280)] = 99993, - [SMALL_STATE(1281)] = 100042, - [SMALL_STATE(1282)] = 100091, - [SMALL_STATE(1283)] = 100138, - [SMALL_STATE(1284)] = 100185, - [SMALL_STATE(1285)] = 100236, - [SMALL_STATE(1286)] = 100285, - [SMALL_STATE(1287)] = 100332, - [SMALL_STATE(1288)] = 100381, - [SMALL_STATE(1289)] = 100428, - [SMALL_STATE(1290)] = 100475, - [SMALL_STATE(1291)] = 100524, - [SMALL_STATE(1292)] = 100581, - [SMALL_STATE(1293)] = 100628, - [SMALL_STATE(1294)] = 100675, - [SMALL_STATE(1295)] = 100722, - [SMALL_STATE(1296)] = 100769, - [SMALL_STATE(1297)] = 100816, - [SMALL_STATE(1298)] = 100863, - [SMALL_STATE(1299)] = 100910, - [SMALL_STATE(1300)] = 100957, - [SMALL_STATE(1301)] = 101004, - [SMALL_STATE(1302)] = 101051, - [SMALL_STATE(1303)] = 101098, - [SMALL_STATE(1304)] = 101145, - [SMALL_STATE(1305)] = 101192, - [SMALL_STATE(1306)] = 101239, - [SMALL_STATE(1307)] = 101288, - [SMALL_STATE(1308)] = 101335, - [SMALL_STATE(1309)] = 101382, - [SMALL_STATE(1310)] = 101439, - [SMALL_STATE(1311)] = 101486, - [SMALL_STATE(1312)] = 101535, - [SMALL_STATE(1313)] = 101582, - [SMALL_STATE(1314)] = 101639, - [SMALL_STATE(1315)] = 101688, - [SMALL_STATE(1316)] = 101737, - [SMALL_STATE(1317)] = 101784, - [SMALL_STATE(1318)] = 101833, - [SMALL_STATE(1319)] = 101882, - [SMALL_STATE(1320)] = 101941, - [SMALL_STATE(1321)] = 101988, - [SMALL_STATE(1322)] = 102037, - [SMALL_STATE(1323)] = 102084, - [SMALL_STATE(1324)] = 102131, - [SMALL_STATE(1325)] = 102178, - [SMALL_STATE(1326)] = 102225, - [SMALL_STATE(1327)] = 102272, - [SMALL_STATE(1328)] = 102319, - [SMALL_STATE(1329)] = 102366, - [SMALL_STATE(1330)] = 102413, - [SMALL_STATE(1331)] = 102460, - [SMALL_STATE(1332)] = 102509, - [SMALL_STATE(1333)] = 102555, - [SMALL_STATE(1334)] = 102641, - [SMALL_STATE(1335)] = 102709, - [SMALL_STATE(1336)] = 102793, - [SMALL_STATE(1337)] = 102843, - [SMALL_STATE(1338)] = 102915, - [SMALL_STATE(1339)] = 102961, - [SMALL_STATE(1340)] = 103007, - [SMALL_STATE(1341)] = 103081, - [SMALL_STATE(1342)] = 103135, - [SMALL_STATE(1343)] = 103181, - [SMALL_STATE(1344)] = 103227, - [SMALL_STATE(1345)] = 103291, - [SMALL_STATE(1346)] = 103349, - [SMALL_STATE(1347)] = 103409, - [SMALL_STATE(1348)] = 103469, - [SMALL_STATE(1349)] = 103515, - [SMALL_STATE(1350)] = 103561, - [SMALL_STATE(1351)] = 103611, - [SMALL_STATE(1352)] = 103657, - [SMALL_STATE(1353)] = 103703, - [SMALL_STATE(1354)] = 103749, - [SMALL_STATE(1355)] = 103833, - [SMALL_STATE(1356)] = 103879, - [SMALL_STATE(1357)] = 103925, - [SMALL_STATE(1358)] = 103971, - [SMALL_STATE(1359)] = 104017, - [SMALL_STATE(1360)] = 104063, - [SMALL_STATE(1361)] = 104113, - [SMALL_STATE(1362)] = 104159, - [SMALL_STATE(1363)] = 104205, - [SMALL_STATE(1364)] = 104255, - [SMALL_STATE(1365)] = 104311, - [SMALL_STATE(1366)] = 104357, - [SMALL_STATE(1367)] = 104403, - [SMALL_STATE(1368)] = 104449, - [SMALL_STATE(1369)] = 104495, - [SMALL_STATE(1370)] = 104545, - [SMALL_STATE(1371)] = 104591, - [SMALL_STATE(1372)] = 104637, - [SMALL_STATE(1373)] = 104683, - [SMALL_STATE(1374)] = 104729, - [SMALL_STATE(1375)] = 104775, - [SMALL_STATE(1376)] = 104827, - [SMALL_STATE(1377)] = 104873, - [SMALL_STATE(1378)] = 104919, - [SMALL_STATE(1379)] = 104965, - [SMALL_STATE(1380)] = 105011, - [SMALL_STATE(1381)] = 105057, - [SMALL_STATE(1382)] = 105103, - [SMALL_STATE(1383)] = 105149, - [SMALL_STATE(1384)] = 105195, - [SMALL_STATE(1385)] = 105241, - [SMALL_STATE(1386)] = 105287, - [SMALL_STATE(1387)] = 105333, - [SMALL_STATE(1388)] = 105393, - [SMALL_STATE(1389)] = 105449, - [SMALL_STATE(1390)] = 105535, - [SMALL_STATE(1391)] = 105587, - [SMALL_STATE(1392)] = 105633, - [SMALL_STATE(1393)] = 105719, - [SMALL_STATE(1394)] = 105765, - [SMALL_STATE(1395)] = 105811, - [SMALL_STATE(1396)] = 105857, - [SMALL_STATE(1397)] = 105903, - [SMALL_STATE(1398)] = 105949, - [SMALL_STATE(1399)] = 105995, - [SMALL_STATE(1400)] = 106041, - [SMALL_STATE(1401)] = 106091, - [SMALL_STATE(1402)] = 106137, - [SMALL_STATE(1403)] = 106183, - [SMALL_STATE(1404)] = 106229, - [SMALL_STATE(1405)] = 106275, - [SMALL_STATE(1406)] = 106321, - [SMALL_STATE(1407)] = 106367, - [SMALL_STATE(1408)] = 106413, - [SMALL_STATE(1409)] = 106459, - [SMALL_STATE(1410)] = 106505, - [SMALL_STATE(1411)] = 106565, - [SMALL_STATE(1412)] = 106611, - [SMALL_STATE(1413)] = 106681, - [SMALL_STATE(1414)] = 106729, - [SMALL_STATE(1415)] = 106779, - [SMALL_STATE(1416)] = 106825, - [SMALL_STATE(1417)] = 106871, - [SMALL_STATE(1418)] = 106917, - [SMALL_STATE(1419)] = 106988, - [SMALL_STATE(1420)] = 107041, - [SMALL_STATE(1421)] = 107088, - [SMALL_STATE(1422)] = 107135, - [SMALL_STATE(1423)] = 107182, - [SMALL_STATE(1424)] = 107229, - [SMALL_STATE(1425)] = 107276, - [SMALL_STATE(1426)] = 107323, - [SMALL_STATE(1427)] = 107386, - [SMALL_STATE(1428)] = 107433, - [SMALL_STATE(1429)] = 107514, - [SMALL_STATE(1430)] = 107563, - [SMALL_STATE(1431)] = 107610, - [SMALL_STATE(1432)] = 107657, - [SMALL_STATE(1433)] = 107736, - [SMALL_STATE(1434)] = 107781, - [SMALL_STATE(1435)] = 107828, - [SMALL_STATE(1436)] = 107877, - [SMALL_STATE(1437)] = 107922, - [SMALL_STATE(1438)] = 107973, - [SMALL_STATE(1439)] = 108018, - [SMALL_STATE(1440)] = 108063, - [SMALL_STATE(1441)] = 108108, - [SMALL_STATE(1442)] = 108167, - [SMALL_STATE(1443)] = 108236, - [SMALL_STATE(1444)] = 108303, - [SMALL_STATE(1445)] = 108348, - [SMALL_STATE(1446)] = 108413, - [SMALL_STATE(1447)] = 108468, - [SMALL_STATE(1448)] = 108549, - [SMALL_STATE(1449)] = 108594, - [SMALL_STATE(1450)] = 108641, - [SMALL_STATE(1451)] = 108688, - [SMALL_STATE(1452)] = 108737, - [SMALL_STATE(1453)] = 108786, - [SMALL_STATE(1454)] = 108833, - [SMALL_STATE(1455)] = 108880, - [SMALL_STATE(1456)] = 108925, - [SMALL_STATE(1457)] = 108972, - [SMALL_STATE(1458)] = 109021, - [SMALL_STATE(1459)] = 109068, - [SMALL_STATE(1460)] = 109113, - [SMALL_STATE(1461)] = 109160, - [SMALL_STATE(1462)] = 109207, - [SMALL_STATE(1463)] = 109266, - [SMALL_STATE(1464)] = 109313, - [SMALL_STATE(1465)] = 109362, - [SMALL_STATE(1466)] = 109409, - [SMALL_STATE(1467)] = 109456, - [SMALL_STATE(1468)] = 109503, - [SMALL_STATE(1469)] = 109558, - [SMALL_STATE(1470)] = 109607, - [SMALL_STATE(1471)] = 109664, - [SMALL_STATE(1472)] = 109711, - [SMALL_STATE(1473)] = 109758, - [SMALL_STATE(1474)] = 109805, - [SMALL_STATE(1475)] = 109852, - [SMALL_STATE(1476)] = 109899, - [SMALL_STATE(1477)] = 109946, - [SMALL_STATE(1478)] = 110027, - [SMALL_STATE(1479)] = 110080, - [SMALL_STATE(1480)] = 110129, - [SMALL_STATE(1481)] = 110176, - [SMALL_STATE(1482)] = 110235, - [SMALL_STATE(1483)] = 110282, - [SMALL_STATE(1484)] = 110327, - [SMALL_STATE(1485)] = 110376, - [SMALL_STATE(1486)] = 110435, - [SMALL_STATE(1487)] = 110480, - [SMALL_STATE(1488)] = 110529, - [SMALL_STATE(1489)] = 110608, - [SMALL_STATE(1490)] = 110653, - [SMALL_STATE(1491)] = 110710, - [SMALL_STATE(1492)] = 110761, - [SMALL_STATE(1493)] = 110807, - [SMALL_STATE(1494)] = 110851, - [SMALL_STATE(1495)] = 110929, - [SMALL_STATE(1496)] = 110977, - [SMALL_STATE(1497)] = 111035, - [SMALL_STATE(1498)] = 111093, - [SMALL_STATE(1499)] = 111139, - [SMALL_STATE(1500)] = 111187, - [SMALL_STATE(1501)] = 111235, - [SMALL_STATE(1502)] = 111279, - [SMALL_STATE(1503)] = 111325, - [SMALL_STATE(1504)] = 111371, - [SMALL_STATE(1505)] = 111415, - [SMALL_STATE(1506)] = 111473, - [SMALL_STATE(1507)] = 111519, - [SMALL_STATE(1508)] = 111601, - [SMALL_STATE(1509)] = 111647, - [SMALL_STATE(1510)] = 111695, - [SMALL_STATE(1511)] = 111743, - [SMALL_STATE(1512)] = 111791, - [SMALL_STATE(1513)] = 111845, - [SMALL_STATE(1514)] = 111891, - [SMALL_STATE(1515)] = 111937, - [SMALL_STATE(1516)] = 111981, - [SMALL_STATE(1517)] = 112027, - [SMALL_STATE(1518)] = 112073, - [SMALL_STATE(1519)] = 112119, - [SMALL_STATE(1520)] = 112199, - [SMALL_STATE(1521)] = 112245, - [SMALL_STATE(1522)] = 112303, - [SMALL_STATE(1523)] = 112361, - [SMALL_STATE(1524)] = 112409, - [SMALL_STATE(1525)] = 112471, - [SMALL_STATE(1526)] = 112543, - [SMALL_STATE(1527)] = 112613, - [SMALL_STATE(1528)] = 112681, - [SMALL_STATE(1529)] = 112747, - [SMALL_STATE(1530)] = 112793, - [SMALL_STATE(1531)] = 112839, - [SMALL_STATE(1532)] = 112891, - [SMALL_STATE(1533)] = 112939, - [SMALL_STATE(1534)] = 112985, - [SMALL_STATE(1535)] = 113043, - [SMALL_STATE(1536)] = 113101, - [SMALL_STATE(1537)] = 113163, - [SMALL_STATE(1538)] = 113233, - [SMALL_STATE(1539)] = 113301, - [SMALL_STATE(1540)] = 113367, - [SMALL_STATE(1541)] = 113411, - [SMALL_STATE(1542)] = 113455, - [SMALL_STATE(1543)] = 113499, - [SMALL_STATE(1544)] = 113563, - [SMALL_STATE(1545)] = 113643, - [SMALL_STATE(1546)] = 113687, - [SMALL_STATE(1547)] = 113769, - [SMALL_STATE(1548)] = 113851, - [SMALL_STATE(1549)] = 113895, - [SMALL_STATE(1550)] = 113973, - [SMALL_STATE(1551)] = 114021, - [SMALL_STATE(1552)] = 114097, - [SMALL_STATE(1553)] = 114145, - [SMALL_STATE(1554)] = 114189, - [SMALL_STATE(1555)] = 114237, - [SMALL_STATE(1556)] = 114283, - [SMALL_STATE(1557)] = 114331, - [SMALL_STATE(1558)] = 114379, - [SMALL_STATE(1559)] = 114429, - [SMALL_STATE(1560)] = 114479, - [SMALL_STATE(1561)] = 114531, - [SMALL_STATE(1562)] = 114579, - [SMALL_STATE(1563)] = 114631, - [SMALL_STATE(1564)] = 114679, - [SMALL_STATE(1565)] = 114729, - [SMALL_STATE(1566)] = 114781, - [SMALL_STATE(1567)] = 114839, - [SMALL_STATE(1568)] = 114885, - [SMALL_STATE(1569)] = 114931, - [SMALL_STATE(1570)] = 114977, - [SMALL_STATE(1571)] = 115035, - [SMALL_STATE(1572)] = 115085, - [SMALL_STATE(1573)] = 115129, - [SMALL_STATE(1574)] = 115205, - [SMALL_STATE(1575)] = 115251, - [SMALL_STATE(1576)] = 115297, - [SMALL_STATE(1577)] = 115341, - [SMALL_STATE(1578)] = 115387, - [SMALL_STATE(1579)] = 115431, - [SMALL_STATE(1580)] = 115477, - [SMALL_STATE(1581)] = 115523, - [SMALL_STATE(1582)] = 115569, - [SMALL_STATE(1583)] = 115649, - [SMALL_STATE(1584)] = 115695, - [SMALL_STATE(1585)] = 115775, - [SMALL_STATE(1586)] = 115829, - [SMALL_STATE(1587)] = 115875, - [SMALL_STATE(1588)] = 115955, - [SMALL_STATE(1589)] = 116001, - [SMALL_STATE(1590)] = 116045, - [SMALL_STATE(1591)] = 116091, - [SMALL_STATE(1592)] = 116169, - [SMALL_STATE(1593)] = 116217, - [SMALL_STATE(1594)] = 116265, - [SMALL_STATE(1595)] = 116317, - [SMALL_STATE(1596)] = 116361, - [SMALL_STATE(1597)] = 116413, - [SMALL_STATE(1598)] = 116461, - [SMALL_STATE(1599)] = 116511, - [SMALL_STATE(1600)] = 116559, - [SMALL_STATE(1601)] = 116605, - [SMALL_STATE(1602)] = 116651, - [SMALL_STATE(1603)] = 116697, - [SMALL_STATE(1604)] = 116755, - [SMALL_STATE(1605)] = 116813, - [SMALL_STATE(1606)] = 116873, - [SMALL_STATE(1607)] = 116941, - [SMALL_STATE(1608)] = 117007, - [SMALL_STATE(1609)] = 117071, - [SMALL_STATE(1610)] = 117133, - [SMALL_STATE(1611)] = 117181, - [SMALL_STATE(1612)] = 117229, - [SMALL_STATE(1613)] = 117275, - [SMALL_STATE(1614)] = 117333, - [SMALL_STATE(1615)] = 117379, - [SMALL_STATE(1616)] = 117433, - [SMALL_STATE(1617)] = 117511, - [SMALL_STATE(1618)] = 117555, - [SMALL_STATE(1619)] = 117633, - [SMALL_STATE(1620)] = 117677, - [SMALL_STATE(1621)] = 117723, - [SMALL_STATE(1622)] = 117769, - [SMALL_STATE(1623)] = 117817, - [SMALL_STATE(1624)] = 117863, - [SMALL_STATE(1625)] = 117909, - [SMALL_STATE(1626)] = 117955, - [SMALL_STATE(1627)] = 118001, - [SMALL_STATE(1628)] = 118047, - [SMALL_STATE(1629)] = 118093, - [SMALL_STATE(1630)] = 118139, - [SMALL_STATE(1631)] = 118185, - [SMALL_STATE(1632)] = 118233, - [SMALL_STATE(1633)] = 118283, - [SMALL_STATE(1634)] = 118337, - [SMALL_STATE(1635)] = 118383, - [SMALL_STATE(1636)] = 118428, - [SMALL_STATE(1637)] = 118471, - [SMALL_STATE(1638)] = 118514, - [SMALL_STATE(1639)] = 118557, - [SMALL_STATE(1640)] = 118600, - [SMALL_STATE(1641)] = 118643, - [SMALL_STATE(1642)] = 118686, - [SMALL_STATE(1643)] = 118731, - [SMALL_STATE(1644)] = 118774, - [SMALL_STATE(1645)] = 118817, - [SMALL_STATE(1646)] = 118862, - [SMALL_STATE(1647)] = 118905, - [SMALL_STATE(1648)] = 118950, - [SMALL_STATE(1649)] = 118993, - [SMALL_STATE(1650)] = 119036, - [SMALL_STATE(1651)] = 119079, - [SMALL_STATE(1652)] = 119122, - [SMALL_STATE(1653)] = 119165, - [SMALL_STATE(1654)] = 119210, - [SMALL_STATE(1655)] = 119255, - [SMALL_STATE(1656)] = 119298, - [SMALL_STATE(1657)] = 119341, - [SMALL_STATE(1658)] = 119384, - [SMALL_STATE(1659)] = 119427, - [SMALL_STATE(1660)] = 119470, - [SMALL_STATE(1661)] = 119515, - [SMALL_STATE(1662)] = 119560, - [SMALL_STATE(1663)] = 119603, - [SMALL_STATE(1664)] = 119646, - [SMALL_STATE(1665)] = 119689, - [SMALL_STATE(1666)] = 119732, - [SMALL_STATE(1667)] = 119775, - [SMALL_STATE(1668)] = 119852, - [SMALL_STATE(1669)] = 119895, - [SMALL_STATE(1670)] = 119938, - [SMALL_STATE(1671)] = 119981, - [SMALL_STATE(1672)] = 120024, - [SMALL_STATE(1673)] = 120067, - [SMALL_STATE(1674)] = 120110, - [SMALL_STATE(1675)] = 120153, - [SMALL_STATE(1676)] = 120196, - [SMALL_STATE(1677)] = 120239, - [SMALL_STATE(1678)] = 120282, - [SMALL_STATE(1679)] = 120325, - [SMALL_STATE(1680)] = 120368, - [SMALL_STATE(1681)] = 120411, - [SMALL_STATE(1682)] = 120458, - [SMALL_STATE(1683)] = 120501, - [SMALL_STATE(1684)] = 120544, - [SMALL_STATE(1685)] = 120587, - [SMALL_STATE(1686)] = 120630, - [SMALL_STATE(1687)] = 120673, - [SMALL_STATE(1688)] = 120716, - [SMALL_STATE(1689)] = 120759, - [SMALL_STATE(1690)] = 120802, - [SMALL_STATE(1691)] = 120845, - [SMALL_STATE(1692)] = 120888, - [SMALL_STATE(1693)] = 120933, - [SMALL_STATE(1694)] = 120976, - [SMALL_STATE(1695)] = 121019, - [SMALL_STATE(1696)] = 121062, - [SMALL_STATE(1697)] = 121105, - [SMALL_STATE(1698)] = 121148, - [SMALL_STATE(1699)] = 121191, - [SMALL_STATE(1700)] = 121234, - [SMALL_STATE(1701)] = 121277, - [SMALL_STATE(1702)] = 121320, - [SMALL_STATE(1703)] = 121373, - [SMALL_STATE(1704)] = 121416, - [SMALL_STATE(1705)] = 121459, - [SMALL_STATE(1706)] = 121502, - [SMALL_STATE(1707)] = 121545, - [SMALL_STATE(1708)] = 121588, - [SMALL_STATE(1709)] = 121631, - [SMALL_STATE(1710)] = 121674, - [SMALL_STATE(1711)] = 121727, - [SMALL_STATE(1712)] = 121770, - [SMALL_STATE(1713)] = 121813, - [SMALL_STATE(1714)] = 121856, - [SMALL_STATE(1715)] = 121899, - [SMALL_STATE(1716)] = 121942, - [SMALL_STATE(1717)] = 121993, - [SMALL_STATE(1718)] = 122044, - [SMALL_STATE(1719)] = 122101, - [SMALL_STATE(1720)] = 122144, - [SMALL_STATE(1721)] = 122187, - [SMALL_STATE(1722)] = 122230, - [SMALL_STATE(1723)] = 122273, - [SMALL_STATE(1724)] = 122316, - [SMALL_STATE(1725)] = 122359, - [SMALL_STATE(1726)] = 122402, - [SMALL_STATE(1727)] = 122445, - [SMALL_STATE(1728)] = 122488, - [SMALL_STATE(1729)] = 122531, - [SMALL_STATE(1730)] = 122574, - [SMALL_STATE(1731)] = 122617, - [SMALL_STATE(1732)] = 122662, - [SMALL_STATE(1733)] = 122705, - [SMALL_STATE(1734)] = 122748, - [SMALL_STATE(1735)] = 122791, - [SMALL_STATE(1736)] = 122838, - [SMALL_STATE(1737)] = 122883, - [SMALL_STATE(1738)] = 122926, - [SMALL_STATE(1739)] = 122969, - [SMALL_STATE(1740)] = 123014, - [SMALL_STATE(1741)] = 123059, - [SMALL_STATE(1742)] = 123104, - [SMALL_STATE(1743)] = 123149, - [SMALL_STATE(1744)] = 123192, - [SMALL_STATE(1745)] = 123237, - [SMALL_STATE(1746)] = 123280, - [SMALL_STATE(1747)] = 123323, - [SMALL_STATE(1748)] = 123366, - [SMALL_STATE(1749)] = 123419, - [SMALL_STATE(1750)] = 123462, - [SMALL_STATE(1751)] = 123505, - [SMALL_STATE(1752)] = 123548, - [SMALL_STATE(1753)] = 123591, - [SMALL_STATE(1754)] = 123636, - [SMALL_STATE(1755)] = 123679, - [SMALL_STATE(1756)] = 123724, - [SMALL_STATE(1757)] = 123767, - [SMALL_STATE(1758)] = 123812, - [SMALL_STATE(1759)] = 123855, - [SMALL_STATE(1760)] = 123902, - [SMALL_STATE(1761)] = 123947, - [SMALL_STATE(1762)] = 123992, - [SMALL_STATE(1763)] = 124035, - [SMALL_STATE(1764)] = 124080, - [SMALL_STATE(1765)] = 124131, - [SMALL_STATE(1766)] = 124176, - [SMALL_STATE(1767)] = 124221, - [SMALL_STATE(1768)] = 124266, - [SMALL_STATE(1769)] = 124309, - [SMALL_STATE(1770)] = 124354, - [SMALL_STATE(1771)] = 124399, - [SMALL_STATE(1772)] = 124442, - [SMALL_STATE(1773)] = 124485, - [SMALL_STATE(1774)] = 124530, - [SMALL_STATE(1775)] = 124577, - [SMALL_STATE(1776)] = 124620, - [SMALL_STATE(1777)] = 124665, - [SMALL_STATE(1778)] = 124708, - [SMALL_STATE(1779)] = 124751, - [SMALL_STATE(1780)] = 124798, - [SMALL_STATE(1781)] = 124841, - [SMALL_STATE(1782)] = 124884, - [SMALL_STATE(1783)] = 124929, - [SMALL_STATE(1784)] = 124974, - [SMALL_STATE(1785)] = 125023, - [SMALL_STATE(1786)] = 125070, - [SMALL_STATE(1787)] = 125115, - [SMALL_STATE(1788)] = 125158, - [SMALL_STATE(1789)] = 125201, - [SMALL_STATE(1790)] = 125278, - [SMALL_STATE(1791)] = 125321, - [SMALL_STATE(1792)] = 125368, - [SMALL_STATE(1793)] = 125413, - [SMALL_STATE(1794)] = 125492, - [SMALL_STATE(1795)] = 125571, - [SMALL_STATE(1796)] = 125614, - [SMALL_STATE(1797)] = 125657, - [SMALL_STATE(1798)] = 125700, - [SMALL_STATE(1799)] = 125743, - [SMALL_STATE(1800)] = 125786, - [SMALL_STATE(1801)] = 125829, - [SMALL_STATE(1802)] = 125874, - [SMALL_STATE(1803)] = 125919, - [SMALL_STATE(1804)] = 125976, - [SMALL_STATE(1805)] = 126019, - [SMALL_STATE(1806)] = 126066, - [SMALL_STATE(1807)] = 126111, - [SMALL_STATE(1808)] = 126154, - [SMALL_STATE(1809)] = 126197, - [SMALL_STATE(1810)] = 126260, - [SMALL_STATE(1811)] = 126325, - [SMALL_STATE(1812)] = 126368, - [SMALL_STATE(1813)] = 126411, - [SMALL_STATE(1814)] = 126454, - [SMALL_STATE(1815)] = 126497, - [SMALL_STATE(1816)] = 126540, - [SMALL_STATE(1817)] = 126607, - [SMALL_STATE(1818)] = 126676, - [SMALL_STATE(1819)] = 126719, - [SMALL_STATE(1820)] = 126764, - [SMALL_STATE(1821)] = 126809, - [SMALL_STATE(1822)] = 126854, - [SMALL_STATE(1823)] = 126899, - [SMALL_STATE(1824)] = 126948, - [SMALL_STATE(1825)] = 126991, - [SMALL_STATE(1826)] = 127034, - [SMALL_STATE(1827)] = 127077, - [SMALL_STATE(1828)] = 127120, - [SMALL_STATE(1829)] = 127181, - [SMALL_STATE(1830)] = 127224, - [SMALL_STATE(1831)] = 127269, - [SMALL_STATE(1832)] = 127312, - [SMALL_STATE(1833)] = 127369, - [SMALL_STATE(1834)] = 127412, - [SMALL_STATE(1835)] = 127469, - [SMALL_STATE(1836)] = 127512, - [SMALL_STATE(1837)] = 127555, - [SMALL_STATE(1838)] = 127598, - [SMALL_STATE(1839)] = 127641, - [SMALL_STATE(1840)] = 127688, - [SMALL_STATE(1841)] = 127731, - [SMALL_STATE(1842)] = 127774, - [SMALL_STATE(1843)] = 127819, - [SMALL_STATE(1844)] = 127898, - [SMALL_STATE(1845)] = 127941, - [SMALL_STATE(1846)] = 127988, - [SMALL_STATE(1847)] = 128031, - [SMALL_STATE(1848)] = 128076, - [SMALL_STATE(1849)] = 128123, - [SMALL_STATE(1850)] = 128165, - [SMALL_STATE(1851)] = 128207, - [SMALL_STATE(1852)] = 128259, - [SMALL_STATE(1853)] = 128303, - [SMALL_STATE(1854)] = 128345, - [SMALL_STATE(1855)] = 128391, - [SMALL_STATE(1856)] = 128435, - [SMALL_STATE(1857)] = 128485, - [SMALL_STATE(1858)] = 128527, - [SMALL_STATE(1859)] = 128569, - [SMALL_STATE(1860)] = 128611, - [SMALL_STATE(1861)] = 128653, - [SMALL_STATE(1862)] = 128695, - [SMALL_STATE(1863)] = 128737, - [SMALL_STATE(1864)] = 128779, - [SMALL_STATE(1865)] = 128821, - [SMALL_STATE(1866)] = 128863, - [SMALL_STATE(1867)] = 128905, - [SMALL_STATE(1868)] = 128947, - [SMALL_STATE(1869)] = 128989, - [SMALL_STATE(1870)] = 129031, - [SMALL_STATE(1871)] = 129073, - [SMALL_STATE(1872)] = 129115, - [SMALL_STATE(1873)] = 129157, - [SMALL_STATE(1874)] = 129199, - [SMALL_STATE(1875)] = 129241, - [SMALL_STATE(1876)] = 129283, - [SMALL_STATE(1877)] = 129325, - [SMALL_STATE(1878)] = 129367, - [SMALL_STATE(1879)] = 129409, - [SMALL_STATE(1880)] = 129451, - [SMALL_STATE(1881)] = 129493, - [SMALL_STATE(1882)] = 129535, - [SMALL_STATE(1883)] = 129577, - [SMALL_STATE(1884)] = 129619, - [SMALL_STATE(1885)] = 129661, - [SMALL_STATE(1886)] = 129705, - [SMALL_STATE(1887)] = 129747, - [SMALL_STATE(1888)] = 129789, - [SMALL_STATE(1889)] = 129831, - [SMALL_STATE(1890)] = 129875, - [SMALL_STATE(1891)] = 129917, - [SMALL_STATE(1892)] = 129963, - [SMALL_STATE(1893)] = 130005, - [SMALL_STATE(1894)] = 130047, - [SMALL_STATE(1895)] = 130089, - [SMALL_STATE(1896)] = 130131, - [SMALL_STATE(1897)] = 130173, - [SMALL_STATE(1898)] = 130219, - [SMALL_STATE(1899)] = 130263, - [SMALL_STATE(1900)] = 130305, - [SMALL_STATE(1901)] = 130349, - [SMALL_STATE(1902)] = 130393, - [SMALL_STATE(1903)] = 130437, - [SMALL_STATE(1904)] = 130479, - [SMALL_STATE(1905)] = 130521, - [SMALL_STATE(1906)] = 130563, - [SMALL_STATE(1907)] = 130605, - [SMALL_STATE(1908)] = 130647, - [SMALL_STATE(1909)] = 130689, - [SMALL_STATE(1910)] = 130731, - [SMALL_STATE(1911)] = 130773, - [SMALL_STATE(1912)] = 130815, - [SMALL_STATE(1913)] = 130857, - [SMALL_STATE(1914)] = 130903, - [SMALL_STATE(1915)] = 130945, - [SMALL_STATE(1916)] = 130987, - [SMALL_STATE(1917)] = 131033, - [SMALL_STATE(1918)] = 131075, - [SMALL_STATE(1919)] = 131117, - [SMALL_STATE(1920)] = 131159, - [SMALL_STATE(1921)] = 131201, - [SMALL_STATE(1922)] = 131243, - [SMALL_STATE(1923)] = 131285, - [SMALL_STATE(1924)] = 131327, - [SMALL_STATE(1925)] = 131373, - [SMALL_STATE(1926)] = 131415, - [SMALL_STATE(1927)] = 131457, - [SMALL_STATE(1928)] = 131499, - [SMALL_STATE(1929)] = 131541, - [SMALL_STATE(1930)] = 131583, - [SMALL_STATE(1931)] = 131625, - [SMALL_STATE(1932)] = 131667, - [SMALL_STATE(1933)] = 131709, - [SMALL_STATE(1934)] = 131751, - [SMALL_STATE(1935)] = 131793, - [SMALL_STATE(1936)] = 131835, - [SMALL_STATE(1937)] = 131877, - [SMALL_STATE(1938)] = 131921, - [SMALL_STATE(1939)] = 131963, - [SMALL_STATE(1940)] = 132005, - [SMALL_STATE(1941)] = 132047, - [SMALL_STATE(1942)] = 132089, - [SMALL_STATE(1943)] = 132131, - [SMALL_STATE(1944)] = 132173, - [SMALL_STATE(1945)] = 132215, - [SMALL_STATE(1946)] = 132257, - [SMALL_STATE(1947)] = 132299, - [SMALL_STATE(1948)] = 132341, - [SMALL_STATE(1949)] = 132383, - [SMALL_STATE(1950)] = 132425, - [SMALL_STATE(1951)] = 132467, - [SMALL_STATE(1952)] = 132509, - [SMALL_STATE(1953)] = 132551, - [SMALL_STATE(1954)] = 132593, - [SMALL_STATE(1955)] = 132635, - [SMALL_STATE(1956)] = 132677, - [SMALL_STATE(1957)] = 132723, - [SMALL_STATE(1958)] = 132765, - [SMALL_STATE(1959)] = 132807, - [SMALL_STATE(1960)] = 132849, - [SMALL_STATE(1961)] = 132891, - [SMALL_STATE(1962)] = 132933, - [SMALL_STATE(1963)] = 132975, - [SMALL_STATE(1964)] = 133017, - [SMALL_STATE(1965)] = 133059, - [SMALL_STATE(1966)] = 133101, - [SMALL_STATE(1967)] = 133143, - [SMALL_STATE(1968)] = 133189, - [SMALL_STATE(1969)] = 133231, - [SMALL_STATE(1970)] = 133273, - [SMALL_STATE(1971)] = 133315, - [SMALL_STATE(1972)] = 133357, - [SMALL_STATE(1973)] = 133399, - [SMALL_STATE(1974)] = 133441, - [SMALL_STATE(1975)] = 133483, - [SMALL_STATE(1976)] = 133525, - [SMALL_STATE(1977)] = 133567, - [SMALL_STATE(1978)] = 133609, - [SMALL_STATE(1979)] = 133650, - [SMALL_STATE(1980)] = 133691, - [SMALL_STATE(1981)] = 133766, - [SMALL_STATE(1982)] = 133821, - [SMALL_STATE(1983)] = 133876, - [SMALL_STATE(1984)] = 133935, - [SMALL_STATE(1985)] = 134002, - [SMALL_STATE(1986)] = 134067, - [SMALL_STATE(1987)] = 134130, - [SMALL_STATE(1988)] = 134191, - [SMALL_STATE(1989)] = 134266, - [SMALL_STATE(1990)] = 134341, - [SMALL_STATE(1991)] = 134386, - [SMALL_STATE(1992)] = 134443, - [SMALL_STATE(1993)] = 134518, - [SMALL_STATE(1994)] = 134569, - [SMALL_STATE(1995)] = 134624, - [SMALL_STATE(1996)] = 134681, - [SMALL_STATE(1997)] = 134726, - [SMALL_STATE(1998)] = 134769, - [SMALL_STATE(1999)] = 134810, - [SMALL_STATE(2000)] = 134855, - [SMALL_STATE(2001)] = 134900, - [SMALL_STATE(2002)] = 134945, - [SMALL_STATE(2003)] = 134986, - [SMALL_STATE(2004)] = 135027, - [SMALL_STATE(2005)] = 135072, - [SMALL_STATE(2006)] = 135113, - [SMALL_STATE(2007)] = 135154, - [SMALL_STATE(2008)] = 135195, - [SMALL_STATE(2009)] = 135236, - [SMALL_STATE(2010)] = 135277, - [SMALL_STATE(2011)] = 135318, - [SMALL_STATE(2012)] = 135359, - [SMALL_STATE(2013)] = 135400, - [SMALL_STATE(2014)] = 135441, - [SMALL_STATE(2015)] = 135482, - [SMALL_STATE(2016)] = 135523, - [SMALL_STATE(2017)] = 135564, - [SMALL_STATE(2018)] = 135605, - [SMALL_STATE(2019)] = 135646, - [SMALL_STATE(2020)] = 135687, - [SMALL_STATE(2021)] = 135728, - [SMALL_STATE(2022)] = 135769, - [SMALL_STATE(2023)] = 135810, - [SMALL_STATE(2024)] = 135851, - [SMALL_STATE(2025)] = 135892, - [SMALL_STATE(2026)] = 135933, - [SMALL_STATE(2027)] = 135974, - [SMALL_STATE(2028)] = 136015, - [SMALL_STATE(2029)] = 136056, - [SMALL_STATE(2030)] = 136097, - [SMALL_STATE(2031)] = 136138, - [SMALL_STATE(2032)] = 136179, - [SMALL_STATE(2033)] = 136220, - [SMALL_STATE(2034)] = 136261, - [SMALL_STATE(2035)] = 136336, - [SMALL_STATE(2036)] = 136391, - [SMALL_STATE(2037)] = 136432, - [SMALL_STATE(2038)] = 136473, - [SMALL_STATE(2039)] = 136514, - [SMALL_STATE(2040)] = 136563, - [SMALL_STATE(2041)] = 136604, - [SMALL_STATE(2042)] = 136651, - [SMALL_STATE(2043)] = 136692, - [SMALL_STATE(2044)] = 136733, - [SMALL_STATE(2045)] = 136774, - [SMALL_STATE(2046)] = 136815, - [SMALL_STATE(2047)] = 136856, - [SMALL_STATE(2048)] = 136897, - [SMALL_STATE(2049)] = 136944, - [SMALL_STATE(2050)] = 136985, - [SMALL_STATE(2051)] = 137026, - [SMALL_STATE(2052)] = 137071, - [SMALL_STATE(2053)] = 137116, - [SMALL_STATE(2054)] = 137161, - [SMALL_STATE(2055)] = 137214, - [SMALL_STATE(2056)] = 137271, - [SMALL_STATE(2057)] = 137316, - [SMALL_STATE(2058)] = 137358, - [SMALL_STATE(2059)] = 137398, - [SMALL_STATE(2060)] = 137440, - [SMALL_STATE(2061)] = 137482, - [SMALL_STATE(2062)] = 137524, - [SMALL_STATE(2063)] = 137566, - [SMALL_STATE(2064)] = 137608, - [SMALL_STATE(2065)] = 137652, - [SMALL_STATE(2066)] = 137702, - [SMALL_STATE(2067)] = 137745, - [SMALL_STATE(2068)] = 137782, - [SMALL_STATE(2069)] = 137838, - [SMALL_STATE(2070)] = 137894, - [SMALL_STATE(2071)] = 137950, - [SMALL_STATE(2072)] = 138006, - [SMALL_STATE(2073)] = 138062, - [SMALL_STATE(2074)] = 138118, - [SMALL_STATE(2075)] = 138174, - [SMALL_STATE(2076)] = 138230, - [SMALL_STATE(2077)] = 138286, - [SMALL_STATE(2078)] = 138342, - [SMALL_STATE(2079)] = 138398, - [SMALL_STATE(2080)] = 138454, - [SMALL_STATE(2081)] = 138510, - [SMALL_STATE(2082)] = 138566, - [SMALL_STATE(2083)] = 138622, - [SMALL_STATE(2084)] = 138678, - [SMALL_STATE(2085)] = 138734, - [SMALL_STATE(2086)] = 138790, - [SMALL_STATE(2087)] = 138846, - [SMALL_STATE(2088)] = 138902, - [SMALL_STATE(2089)] = 138958, - [SMALL_STATE(2090)] = 139014, - [SMALL_STATE(2091)] = 139070, - [SMALL_STATE(2092)] = 139126, - [SMALL_STATE(2093)] = 139182, - [SMALL_STATE(2094)] = 139238, - [SMALL_STATE(2095)] = 139294, - [SMALL_STATE(2096)] = 139350, - [SMALL_STATE(2097)] = 139406, - [SMALL_STATE(2098)] = 139462, - [SMALL_STATE(2099)] = 139518, - [SMALL_STATE(2100)] = 139552, - [SMALL_STATE(2101)] = 139608, - [SMALL_STATE(2102)] = 139664, - [SMALL_STATE(2103)] = 139720, - [SMALL_STATE(2104)] = 139776, - [SMALL_STATE(2105)] = 139832, - [SMALL_STATE(2106)] = 139888, - [SMALL_STATE(2107)] = 139944, - [SMALL_STATE(2108)] = 140000, - [SMALL_STATE(2109)] = 140056, - [SMALL_STATE(2110)] = 140112, - [SMALL_STATE(2111)] = 140168, - [SMALL_STATE(2112)] = 140224, - [SMALL_STATE(2113)] = 140280, - [SMALL_STATE(2114)] = 140336, - [SMALL_STATE(2115)] = 140392, - [SMALL_STATE(2116)] = 140448, - [SMALL_STATE(2117)] = 140504, - [SMALL_STATE(2118)] = 140560, - [SMALL_STATE(2119)] = 140616, - [SMALL_STATE(2120)] = 140672, - [SMALL_STATE(2121)] = 140728, - [SMALL_STATE(2122)] = 140781, - [SMALL_STATE(2123)] = 140834, - [SMALL_STATE(2124)] = 140887, - [SMALL_STATE(2125)] = 140940, - [SMALL_STATE(2126)] = 140993, - [SMALL_STATE(2127)] = 141046, - [SMALL_STATE(2128)] = 141099, - [SMALL_STATE(2129)] = 141152, - [SMALL_STATE(2130)] = 141205, - [SMALL_STATE(2131)] = 141258, - [SMALL_STATE(2132)] = 141311, - [SMALL_STATE(2133)] = 141364, - [SMALL_STATE(2134)] = 141417, - [SMALL_STATE(2135)] = 141470, - [SMALL_STATE(2136)] = 141525, - [SMALL_STATE(2137)] = 141578, - [SMALL_STATE(2138)] = 141631, - [SMALL_STATE(2139)] = 141684, - [SMALL_STATE(2140)] = 141737, - [SMALL_STATE(2141)] = 141790, - [SMALL_STATE(2142)] = 141843, - [SMALL_STATE(2143)] = 141898, - [SMALL_STATE(2144)] = 141951, - [SMALL_STATE(2145)] = 142006, - [SMALL_STATE(2146)] = 142059, - [SMALL_STATE(2147)] = 142112, - [SMALL_STATE(2148)] = 142165, - [SMALL_STATE(2149)] = 142208, - [SMALL_STATE(2150)] = 142251, - [SMALL_STATE(2151)] = 142304, - [SMALL_STATE(2152)] = 142347, - [SMALL_STATE(2153)] = 142400, - [SMALL_STATE(2154)] = 142453, - [SMALL_STATE(2155)] = 142506, - [SMALL_STATE(2156)] = 142559, - [SMALL_STATE(2157)] = 142612, - [SMALL_STATE(2158)] = 142665, - [SMALL_STATE(2159)] = 142718, - [SMALL_STATE(2160)] = 142771, - [SMALL_STATE(2161)] = 142824, - [SMALL_STATE(2162)] = 142877, - [SMALL_STATE(2163)] = 142930, - [SMALL_STATE(2164)] = 142983, - [SMALL_STATE(2165)] = 143036, - [SMALL_STATE(2166)] = 143089, - [SMALL_STATE(2167)] = 143142, - [SMALL_STATE(2168)] = 143195, - [SMALL_STATE(2169)] = 143248, - [SMALL_STATE(2170)] = 143301, - [SMALL_STATE(2171)] = 143354, - [SMALL_STATE(2172)] = 143407, - [SMALL_STATE(2173)] = 143460, - [SMALL_STATE(2174)] = 143513, - [SMALL_STATE(2175)] = 143566, - [SMALL_STATE(2176)] = 143619, - [SMALL_STATE(2177)] = 143674, - [SMALL_STATE(2178)] = 143727, - [SMALL_STATE(2179)] = 143780, - [SMALL_STATE(2180)] = 143835, - [SMALL_STATE(2181)] = 143888, - [SMALL_STATE(2182)] = 143941, - [SMALL_STATE(2183)] = 143986, - [SMALL_STATE(2184)] = 144039, - [SMALL_STATE(2185)] = 144092, - [SMALL_STATE(2186)] = 144145, - [SMALL_STATE(2187)] = 144200, - [SMALL_STATE(2188)] = 144255, - [SMALL_STATE(2189)] = 144308, - [SMALL_STATE(2190)] = 144361, - [SMALL_STATE(2191)] = 144414, - [SMALL_STATE(2192)] = 144467, - [SMALL_STATE(2193)] = 144522, - [SMALL_STATE(2194)] = 144575, - [SMALL_STATE(2195)] = 144630, - [SMALL_STATE(2196)] = 144683, - [SMALL_STATE(2197)] = 144736, - [SMALL_STATE(2198)] = 144789, - [SMALL_STATE(2199)] = 144842, - [SMALL_STATE(2200)] = 144895, - [SMALL_STATE(2201)] = 144948, - [SMALL_STATE(2202)] = 145001, - [SMALL_STATE(2203)] = 145054, - [SMALL_STATE(2204)] = 145107, - [SMALL_STATE(2205)] = 145160, - [SMALL_STATE(2206)] = 145213, - [SMALL_STATE(2207)] = 145266, - [SMALL_STATE(2208)] = 145319, - [SMALL_STATE(2209)] = 145372, - [SMALL_STATE(2210)] = 145425, - [SMALL_STATE(2211)] = 145468, - [SMALL_STATE(2212)] = 145521, - [SMALL_STATE(2213)] = 145574, - [SMALL_STATE(2214)] = 145627, - [SMALL_STATE(2215)] = 145680, - [SMALL_STATE(2216)] = 145733, - [SMALL_STATE(2217)] = 145788, - [SMALL_STATE(2218)] = 145841, - [SMALL_STATE(2219)] = 145894, - [SMALL_STATE(2220)] = 145947, - [SMALL_STATE(2221)] = 146000, - [SMALL_STATE(2222)] = 146055, - [SMALL_STATE(2223)] = 146108, - [SMALL_STATE(2224)] = 146161, - [SMALL_STATE(2225)] = 146214, - [SMALL_STATE(2226)] = 146267, - [SMALL_STATE(2227)] = 146320, - [SMALL_STATE(2228)] = 146362, - [SMALL_STATE(2229)] = 146404, - [SMALL_STATE(2230)] = 146446, - [SMALL_STATE(2231)] = 146488, - [SMALL_STATE(2232)] = 146526, - [SMALL_STATE(2233)] = 146564, - [SMALL_STATE(2234)] = 146602, - [SMALL_STATE(2235)] = 146640, - [SMALL_STATE(2236)] = 146677, - [SMALL_STATE(2237)] = 146714, - [SMALL_STATE(2238)] = 146751, - [SMALL_STATE(2239)] = 146788, - [SMALL_STATE(2240)] = 146825, - [SMALL_STATE(2241)] = 146862, - [SMALL_STATE(2242)] = 146899, - [SMALL_STATE(2243)] = 146936, - [SMALL_STATE(2244)] = 146973, - [SMALL_STATE(2245)] = 147010, - [SMALL_STATE(2246)] = 147047, - [SMALL_STATE(2247)] = 147084, - [SMALL_STATE(2248)] = 147136, - [SMALL_STATE(2249)] = 147172, - [SMALL_STATE(2250)] = 147208, - [SMALL_STATE(2251)] = 147260, - [SMALL_STATE(2252)] = 147296, - [SMALL_STATE(2253)] = 147348, - [SMALL_STATE(2254)] = 147384, - [SMALL_STATE(2255)] = 147435, - [SMALL_STATE(2256)] = 147486, - [SMALL_STATE(2257)] = 147535, - [SMALL_STATE(2258)] = 147586, - [SMALL_STATE(2259)] = 147637, - [SMALL_STATE(2260)] = 147688, - [SMALL_STATE(2261)] = 147737, - [SMALL_STATE(2262)] = 147788, - [SMALL_STATE(2263)] = 147839, - [SMALL_STATE(2264)] = 147890, - [SMALL_STATE(2265)] = 147941, - [SMALL_STATE(2266)] = 147987, - [SMALL_STATE(2267)] = 148021, - [SMALL_STATE(2268)] = 148055, - [SMALL_STATE(2269)] = 148089, - [SMALL_STATE(2270)] = 148137, - [SMALL_STATE(2271)] = 148185, - [SMALL_STATE(2272)] = 148233, - [SMALL_STATE(2273)] = 148267, - [SMALL_STATE(2274)] = 148315, - [SMALL_STATE(2275)] = 148342, - [SMALL_STATE(2276)] = 148369, - [SMALL_STATE(2277)] = 148406, - [SMALL_STATE(2278)] = 148439, - [SMALL_STATE(2279)] = 148484, - [SMALL_STATE(2280)] = 148529, - [SMALL_STATE(2281)] = 148556, - [SMALL_STATE(2282)] = 148585, - [SMALL_STATE(2283)] = 148631, - [SMALL_STATE(2284)] = 148657, - [SMALL_STATE(2285)] = 148703, - [SMALL_STATE(2286)] = 148749, - [SMALL_STATE(2287)] = 148795, - [SMALL_STATE(2288)] = 148833, - [SMALL_STATE(2289)] = 148859, - [SMALL_STATE(2290)] = 148905, - [SMALL_STATE(2291)] = 148943, - [SMALL_STATE(2292)] = 148989, - [SMALL_STATE(2293)] = 149035, - [SMALL_STATE(2294)] = 149061, - [SMALL_STATE(2295)] = 149107, - [SMALL_STATE(2296)] = 149153, - [SMALL_STATE(2297)] = 149188, - [SMALL_STATE(2298)] = 149219, - [SMALL_STATE(2299)] = 149255, - [SMALL_STATE(2300)] = 149285, - [SMALL_STATE(2301)] = 149325, - [SMALL_STATE(2302)] = 149361, - [SMALL_STATE(2303)] = 149397, - [SMALL_STATE(2304)] = 149437, - [SMALL_STATE(2305)] = 149477, - [SMALL_STATE(2306)] = 149513, - [SMALL_STATE(2307)] = 149549, - [SMALL_STATE(2308)] = 149581, - [SMALL_STATE(2309)] = 149615, - [SMALL_STATE(2310)] = 149639, - [SMALL_STATE(2311)] = 149663, - [SMALL_STATE(2312)] = 149699, - [SMALL_STATE(2313)] = 149739, - [SMALL_STATE(2314)] = 149779, - [SMALL_STATE(2315)] = 149815, - [SMALL_STATE(2316)] = 149841, - [SMALL_STATE(2317)] = 149877, - [SMALL_STATE(2318)] = 149913, - [SMALL_STATE(2319)] = 149953, - [SMALL_STATE(2320)] = 149977, - [SMALL_STATE(2321)] = 150009, - [SMALL_STATE(2322)] = 150049, - [SMALL_STATE(2323)] = 150089, - [SMALL_STATE(2324)] = 150129, - [SMALL_STATE(2325)] = 150160, - [SMALL_STATE(2326)] = 150191, - [SMALL_STATE(2327)] = 150224, - [SMALL_STATE(2328)] = 150261, - [SMALL_STATE(2329)] = 150294, - [SMALL_STATE(2330)] = 150331, - [SMALL_STATE(2331)] = 150368, - [SMALL_STATE(2332)] = 150399, - [SMALL_STATE(2333)] = 150428, - [SMALL_STATE(2334)] = 150459, - [SMALL_STATE(2335)] = 150496, - [SMALL_STATE(2336)] = 150527, - [SMALL_STATE(2337)] = 150560, - [SMALL_STATE(2338)] = 150591, - [SMALL_STATE(2339)] = 150626, - [SMALL_STATE(2340)] = 150659, - [SMALL_STATE(2341)] = 150694, - [SMALL_STATE(2342)] = 150727, - [SMALL_STATE(2343)] = 150758, - [SMALL_STATE(2344)] = 150789, - [SMALL_STATE(2345)] = 150812, - [SMALL_STATE(2346)] = 150849, - [SMALL_STATE(2347)] = 150880, - [SMALL_STATE(2348)] = 150917, - [SMALL_STATE(2349)] = 150954, - [SMALL_STATE(2350)] = 150987, - [SMALL_STATE(2351)] = 151010, - [SMALL_STATE(2352)] = 151041, - [SMALL_STATE(2353)] = 151076, - [SMALL_STATE(2354)] = 151111, - [SMALL_STATE(2355)] = 151140, - [SMALL_STATE(2356)] = 151175, - [SMALL_STATE(2357)] = 151212, - [SMALL_STATE(2358)] = 151243, - [SMALL_STATE(2359)] = 151266, - [SMALL_STATE(2360)] = 151303, - [SMALL_STATE(2361)] = 151334, - [SMALL_STATE(2362)] = 151367, - [SMALL_STATE(2363)] = 151390, - [SMALL_STATE(2364)] = 151427, - [SMALL_STATE(2365)] = 151458, - [SMALL_STATE(2366)] = 151489, - [SMALL_STATE(2367)] = 151520, - [SMALL_STATE(2368)] = 151551, - [SMALL_STATE(2369)] = 151574, - [SMALL_STATE(2370)] = 151607, - [SMALL_STATE(2371)] = 151642, - [SMALL_STATE(2372)] = 151673, - [SMALL_STATE(2373)] = 151704, - [SMALL_STATE(2374)] = 151729, - [SMALL_STATE(2375)] = 151760, - [SMALL_STATE(2376)] = 151783, - [SMALL_STATE(2377)] = 151816, - [SMALL_STATE(2378)] = 151841, - [SMALL_STATE(2379)] = 151866, - [SMALL_STATE(2380)] = 151898, - [SMALL_STATE(2381)] = 151932, - [SMALL_STATE(2382)] = 151966, - [SMALL_STATE(2383)] = 152000, - [SMALL_STATE(2384)] = 152032, - [SMALL_STATE(2385)] = 152066, - [SMALL_STATE(2386)] = 152098, - [SMALL_STATE(2387)] = 152126, - [SMALL_STATE(2388)] = 152158, - [SMALL_STATE(2389)] = 152186, - [SMALL_STATE(2390)] = 152220, - [SMALL_STATE(2391)] = 152252, - [SMALL_STATE(2392)] = 152286, - [SMALL_STATE(2393)] = 152314, - [SMALL_STATE(2394)] = 152336, - [SMALL_STATE(2395)] = 152364, - [SMALL_STATE(2396)] = 152398, - [SMALL_STATE(2397)] = 152426, - [SMALL_STATE(2398)] = 152458, - [SMALL_STATE(2399)] = 152480, - [SMALL_STATE(2400)] = 152508, - [SMALL_STATE(2401)] = 152540, - [SMALL_STATE(2402)] = 152572, - [SMALL_STATE(2403)] = 152600, - [SMALL_STATE(2404)] = 152632, - [SMALL_STATE(2405)] = 152662, - [SMALL_STATE(2406)] = 152696, - [SMALL_STATE(2407)] = 152730, - [SMALL_STATE(2408)] = 152764, - [SMALL_STATE(2409)] = 152792, - [SMALL_STATE(2410)] = 152826, - [SMALL_STATE(2411)] = 152858, - [SMALL_STATE(2412)] = 152886, - [SMALL_STATE(2413)] = 152914, - [SMALL_STATE(2414)] = 152946, - [SMALL_STATE(2415)] = 152974, - [SMALL_STATE(2416)] = 153008, - [SMALL_STATE(2417)] = 153042, - [SMALL_STATE(2418)] = 153074, - [SMALL_STATE(2419)] = 153102, - [SMALL_STATE(2420)] = 153134, - [SMALL_STATE(2421)] = 153166, - [SMALL_STATE(2422)] = 153200, - [SMALL_STATE(2423)] = 153234, - [SMALL_STATE(2424)] = 153262, - [SMALL_STATE(2425)] = 153290, - [SMALL_STATE(2426)] = 153318, - [SMALL_STATE(2427)] = 153350, - [SMALL_STATE(2428)] = 153378, - [SMALL_STATE(2429)] = 153410, - [SMALL_STATE(2430)] = 153444, - [SMALL_STATE(2431)] = 153472, - [SMALL_STATE(2432)] = 153504, - [SMALL_STATE(2433)] = 153538, - [SMALL_STATE(2434)] = 153568, - [SMALL_STATE(2435)] = 153600, - [SMALL_STATE(2436)] = 153634, - [SMALL_STATE(2437)] = 153662, - [SMALL_STATE(2438)] = 153696, - [SMALL_STATE(2439)] = 153730, - [SMALL_STATE(2440)] = 153762, - [SMALL_STATE(2441)] = 153796, - [SMALL_STATE(2442)] = 153824, - [SMALL_STATE(2443)] = 153852, - [SMALL_STATE(2444)] = 153884, - [SMALL_STATE(2445)] = 153912, - [SMALL_STATE(2446)] = 153944, - [SMALL_STATE(2447)] = 153966, - [SMALL_STATE(2448)] = 153997, - [SMALL_STATE(2449)] = 154028, - [SMALL_STATE(2450)] = 154059, - [SMALL_STATE(2451)] = 154090, - [SMALL_STATE(2452)] = 154121, - [SMALL_STATE(2453)] = 154146, - [SMALL_STATE(2454)] = 154177, - [SMALL_STATE(2455)] = 154202, - [SMALL_STATE(2456)] = 154227, - [SMALL_STATE(2457)] = 154258, - [SMALL_STATE(2458)] = 154283, - [SMALL_STATE(2459)] = 154314, - [SMALL_STATE(2460)] = 154345, - [SMALL_STATE(2461)] = 154376, - [SMALL_STATE(2462)] = 154407, - [SMALL_STATE(2463)] = 154438, - [SMALL_STATE(2464)] = 154463, - [SMALL_STATE(2465)] = 154488, - [SMALL_STATE(2466)] = 154519, - [SMALL_STATE(2467)] = 154550, - [SMALL_STATE(2468)] = 154581, - [SMALL_STATE(2469)] = 154606, - [SMALL_STATE(2470)] = 154637, - [SMALL_STATE(2471)] = 154662, - [SMALL_STATE(2472)] = 154693, - [SMALL_STATE(2473)] = 154724, - [SMALL_STATE(2474)] = 154755, - [SMALL_STATE(2475)] = 154786, - [SMALL_STATE(2476)] = 154817, - [SMALL_STATE(2477)] = 154848, - [SMALL_STATE(2478)] = 154879, - [SMALL_STATE(2479)] = 154910, - [SMALL_STATE(2480)] = 154935, - [SMALL_STATE(2481)] = 154966, - [SMALL_STATE(2482)] = 154997, - [SMALL_STATE(2483)] = 155028, - [SMALL_STATE(2484)] = 155059, - [SMALL_STATE(2485)] = 155090, - [SMALL_STATE(2486)] = 155121, - [SMALL_STATE(2487)] = 155152, - [SMALL_STATE(2488)] = 155183, - [SMALL_STATE(2489)] = 155214, - [SMALL_STATE(2490)] = 155239, - [SMALL_STATE(2491)] = 155270, - [SMALL_STATE(2492)] = 155301, - [SMALL_STATE(2493)] = 155332, - [SMALL_STATE(2494)] = 155357, - [SMALL_STATE(2495)] = 155382, - [SMALL_STATE(2496)] = 155413, - [SMALL_STATE(2497)] = 155444, - [SMALL_STATE(2498)] = 155475, - [SMALL_STATE(2499)] = 155506, - [SMALL_STATE(2500)] = 155531, - [SMALL_STATE(2501)] = 155562, - [SMALL_STATE(2502)] = 155593, - [SMALL_STATE(2503)] = 155624, - [SMALL_STATE(2504)] = 155655, - [SMALL_STATE(2505)] = 155680, - [SMALL_STATE(2506)] = 155711, - [SMALL_STATE(2507)] = 155742, - [SMALL_STATE(2508)] = 155767, - [SMALL_STATE(2509)] = 155798, - [SMALL_STATE(2510)] = 155829, - [SMALL_STATE(2511)] = 155860, - [SMALL_STATE(2512)] = 155891, - [SMALL_STATE(2513)] = 155922, - [SMALL_STATE(2514)] = 155953, - [SMALL_STATE(2515)] = 155984, - [SMALL_STATE(2516)] = 156015, - [SMALL_STATE(2517)] = 156046, - [SMALL_STATE(2518)] = 156071, - [SMALL_STATE(2519)] = 156102, - [SMALL_STATE(2520)] = 156133, - [SMALL_STATE(2521)] = 156164, - [SMALL_STATE(2522)] = 156195, - [SMALL_STATE(2523)] = 156226, - [SMALL_STATE(2524)] = 156257, - [SMALL_STATE(2525)] = 156288, - [SMALL_STATE(2526)] = 156319, - [SMALL_STATE(2527)] = 156350, - [SMALL_STATE(2528)] = 156375, - [SMALL_STATE(2529)] = 156406, - [SMALL_STATE(2530)] = 156431, - [SMALL_STATE(2531)] = 156462, - [SMALL_STATE(2532)] = 156487, - [SMALL_STATE(2533)] = 156512, - [SMALL_STATE(2534)] = 156543, - [SMALL_STATE(2535)] = 156574, - [SMALL_STATE(2536)] = 156605, - [SMALL_STATE(2537)] = 156636, - [SMALL_STATE(2538)] = 156661, - [SMALL_STATE(2539)] = 156692, - [SMALL_STATE(2540)] = 156723, - [SMALL_STATE(2541)] = 156754, - [SMALL_STATE(2542)] = 156785, - [SMALL_STATE(2543)] = 156816, - [SMALL_STATE(2544)] = 156847, - [SMALL_STATE(2545)] = 156868, - [SMALL_STATE(2546)] = 156899, - [SMALL_STATE(2547)] = 156930, - [SMALL_STATE(2548)] = 156961, - [SMALL_STATE(2549)] = 156992, - [SMALL_STATE(2550)] = 157023, - [SMALL_STATE(2551)] = 157054, - [SMALL_STATE(2552)] = 157085, - [SMALL_STATE(2553)] = 157110, - [SMALL_STATE(2554)] = 157141, - [SMALL_STATE(2555)] = 157172, - [SMALL_STATE(2556)] = 157203, - [SMALL_STATE(2557)] = 157234, - [SMALL_STATE(2558)] = 157265, - [SMALL_STATE(2559)] = 157296, - [SMALL_STATE(2560)] = 157327, - [SMALL_STATE(2561)] = 157358, - [SMALL_STATE(2562)] = 157378, - [SMALL_STATE(2563)] = 157404, - [SMALL_STATE(2564)] = 157424, - [SMALL_STATE(2565)] = 157444, - [SMALL_STATE(2566)] = 157472, - [SMALL_STATE(2567)] = 157500, - [SMALL_STATE(2568)] = 157528, - [SMALL_STATE(2569)] = 157556, - [SMALL_STATE(2570)] = 157576, - [SMALL_STATE(2571)] = 157604, - [SMALL_STATE(2572)] = 157624, - [SMALL_STATE(2573)] = 157652, - [SMALL_STATE(2574)] = 157680, - [SMALL_STATE(2575)] = 157700, - [SMALL_STATE(2576)] = 157728, - [SMALL_STATE(2577)] = 157756, - [SMALL_STATE(2578)] = 157776, - [SMALL_STATE(2579)] = 157802, - [SMALL_STATE(2580)] = 157830, - [SMALL_STATE(2581)] = 157850, - [SMALL_STATE(2582)] = 157870, - [SMALL_STATE(2583)] = 157890, - [SMALL_STATE(2584)] = 157918, - [SMALL_STATE(2585)] = 157938, - [SMALL_STATE(2586)] = 157966, - [SMALL_STATE(2587)] = 157994, - [SMALL_STATE(2588)] = 158014, - [SMALL_STATE(2589)] = 158042, - [SMALL_STATE(2590)] = 158065, - [SMALL_STATE(2591)] = 158088, - [SMALL_STATE(2592)] = 158111, - [SMALL_STATE(2593)] = 158134, - [SMALL_STATE(2594)] = 158157, - [SMALL_STATE(2595)] = 158180, - [SMALL_STATE(2596)] = 158203, - [SMALL_STATE(2597)] = 158226, - [SMALL_STATE(2598)] = 158249, - [SMALL_STATE(2599)] = 158272, - [SMALL_STATE(2600)] = 158295, - [SMALL_STATE(2601)] = 158318, - [SMALL_STATE(2602)] = 158341, - [SMALL_STATE(2603)] = 158362, - [SMALL_STATE(2604)] = 158383, - [SMALL_STATE(2605)] = 158406, - [SMALL_STATE(2606)] = 158429, - [SMALL_STATE(2607)] = 158452, - [SMALL_STATE(2608)] = 158475, - [SMALL_STATE(2609)] = 158498, - [SMALL_STATE(2610)] = 158521, - [SMALL_STATE(2611)] = 158541, - [SMALL_STATE(2612)] = 158559, - [SMALL_STATE(2613)] = 158579, - [SMALL_STATE(2614)] = 158597, - [SMALL_STATE(2615)] = 158623, - [SMALL_STATE(2616)] = 158637, - [SMALL_STATE(2617)] = 158655, - [SMALL_STATE(2618)] = 158672, - [SMALL_STATE(2619)] = 158689, - [SMALL_STATE(2620)] = 158704, - [SMALL_STATE(2621)] = 158719, - [SMALL_STATE(2622)] = 158738, - [SMALL_STATE(2623)] = 158761, - [SMALL_STATE(2624)] = 158778, - [SMALL_STATE(2625)] = 158797, - [SMALL_STATE(2626)] = 158816, - [SMALL_STATE(2627)] = 158833, - [SMALL_STATE(2628)] = 158850, - [SMALL_STATE(2629)] = 158865, - [SMALL_STATE(2630)] = 158884, - [SMALL_STATE(2631)] = 158899, - [SMALL_STATE(2632)] = 158914, - [SMALL_STATE(2633)] = 158933, - [SMALL_STATE(2634)] = 158948, - [SMALL_STATE(2635)] = 158971, - [SMALL_STATE(2636)] = 158988, - [SMALL_STATE(2637)] = 159007, - [SMALL_STATE(2638)] = 159022, - [SMALL_STATE(2639)] = 159037, - [SMALL_STATE(2640)] = 159052, - [SMALL_STATE(2641)] = 159075, - [SMALL_STATE(2642)] = 159094, - [SMALL_STATE(2643)] = 159109, - [SMALL_STATE(2644)] = 159124, - [SMALL_STATE(2645)] = 159139, - [SMALL_STATE(2646)] = 159154, - [SMALL_STATE(2647)] = 159173, - [SMALL_STATE(2648)] = 159190, - [SMALL_STATE(2649)] = 159209, - [SMALL_STATE(2650)] = 159224, - [SMALL_STATE(2651)] = 159239, - [SMALL_STATE(2652)] = 159258, - [SMALL_STATE(2653)] = 159275, - [SMALL_STATE(2654)] = 159292, - [SMALL_STATE(2655)] = 159309, - [SMALL_STATE(2656)] = 159328, - [SMALL_STATE(2657)] = 159351, - [SMALL_STATE(2658)] = 159370, - [SMALL_STATE(2659)] = 159389, - [SMALL_STATE(2660)] = 159408, - [SMALL_STATE(2661)] = 159427, - [SMALL_STATE(2662)] = 159450, - [SMALL_STATE(2663)] = 159467, - [SMALL_STATE(2664)] = 159486, - [SMALL_STATE(2665)] = 159503, - [SMALL_STATE(2666)] = 159520, - [SMALL_STATE(2667)] = 159535, - [SMALL_STATE(2668)] = 159554, - [SMALL_STATE(2669)] = 159573, - [SMALL_STATE(2670)] = 159588, - [SMALL_STATE(2671)] = 159607, - [SMALL_STATE(2672)] = 159630, - [SMALL_STATE(2673)] = 159653, - [SMALL_STATE(2674)] = 159676, - [SMALL_STATE(2675)] = 159693, - [SMALL_STATE(2676)] = 159712, - [SMALL_STATE(2677)] = 159731, - [SMALL_STATE(2678)] = 159754, - [SMALL_STATE(2679)] = 159770, - [SMALL_STATE(2680)] = 159782, - [SMALL_STATE(2681)] = 159800, - [SMALL_STATE(2682)] = 159820, - [SMALL_STATE(2683)] = 159836, - [SMALL_STATE(2684)] = 159848, - [SMALL_STATE(2685)] = 159864, - [SMALL_STATE(2686)] = 159880, - [SMALL_STATE(2687)] = 159900, - [SMALL_STATE(2688)] = 159920, - [SMALL_STATE(2689)] = 159940, - [SMALL_STATE(2690)] = 159960, - [SMALL_STATE(2691)] = 159980, - [SMALL_STATE(2692)] = 159996, - [SMALL_STATE(2693)] = 160016, - [SMALL_STATE(2694)] = 160036, - [SMALL_STATE(2695)] = 160052, - [SMALL_STATE(2696)] = 160072, - [SMALL_STATE(2697)] = 160088, - [SMALL_STATE(2698)] = 160108, - [SMALL_STATE(2699)] = 160128, - [SMALL_STATE(2700)] = 160148, - [SMALL_STATE(2701)] = 160168, - [SMALL_STATE(2702)] = 160188, - [SMALL_STATE(2703)] = 160208, - [SMALL_STATE(2704)] = 160223, - [SMALL_STATE(2705)] = 160238, - [SMALL_STATE(2706)] = 160255, - [SMALL_STATE(2707)] = 160270, - [SMALL_STATE(2708)] = 160283, - [SMALL_STATE(2709)] = 160300, - [SMALL_STATE(2710)] = 160317, - [SMALL_STATE(2711)] = 160334, - [SMALL_STATE(2712)] = 160351, - [SMALL_STATE(2713)] = 160366, - [SMALL_STATE(2714)] = 160379, - [SMALL_STATE(2715)] = 160392, - [SMALL_STATE(2716)] = 160405, - [SMALL_STATE(2717)] = 160418, - [SMALL_STATE(2718)] = 160431, - [SMALL_STATE(2719)] = 160446, - [SMALL_STATE(2720)] = 160463, - [SMALL_STATE(2721)] = 160480, - [SMALL_STATE(2722)] = 160493, - [SMALL_STATE(2723)] = 160506, - [SMALL_STATE(2724)] = 160519, - [SMALL_STATE(2725)] = 160536, - [SMALL_STATE(2726)] = 160549, - [SMALL_STATE(2727)] = 160564, - [SMALL_STATE(2728)] = 160577, - [SMALL_STATE(2729)] = 160592, - [SMALL_STATE(2730)] = 160605, - [SMALL_STATE(2731)] = 160622, - [SMALL_STATE(2732)] = 160635, - [SMALL_STATE(2733)] = 160650, - [SMALL_STATE(2734)] = 160667, - [SMALL_STATE(2735)] = 160684, - [SMALL_STATE(2736)] = 160701, - [SMALL_STATE(2737)] = 160718, - [SMALL_STATE(2738)] = 160735, - [SMALL_STATE(2739)] = 160752, - [SMALL_STATE(2740)] = 160769, - [SMALL_STATE(2741)] = 160782, - [SMALL_STATE(2742)] = 160795, - [SMALL_STATE(2743)] = 160812, - [SMALL_STATE(2744)] = 160825, - [SMALL_STATE(2745)] = 160842, - [SMALL_STATE(2746)] = 160859, - [SMALL_STATE(2747)] = 160876, - [SMALL_STATE(2748)] = 160893, - [SMALL_STATE(2749)] = 160907, - [SMALL_STATE(2750)] = 160917, - [SMALL_STATE(2751)] = 160931, - [SMALL_STATE(2752)] = 160945, - [SMALL_STATE(2753)] = 160959, - [SMALL_STATE(2754)] = 160969, - [SMALL_STATE(2755)] = 160983, - [SMALL_STATE(2756)] = 160997, - [SMALL_STATE(2757)] = 161011, - [SMALL_STATE(2758)] = 161025, - [SMALL_STATE(2759)] = 161039, - [SMALL_STATE(2760)] = 161053, - [SMALL_STATE(2761)] = 161067, - [SMALL_STATE(2762)] = 161081, - [SMALL_STATE(2763)] = 161095, - [SMALL_STATE(2764)] = 161109, - [SMALL_STATE(2765)] = 161123, - [SMALL_STATE(2766)] = 161137, - [SMALL_STATE(2767)] = 161151, - [SMALL_STATE(2768)] = 161165, - [SMALL_STATE(2769)] = 161179, - [SMALL_STATE(2770)] = 161193, - [SMALL_STATE(2771)] = 161207, - [SMALL_STATE(2772)] = 161221, - [SMALL_STATE(2773)] = 161235, - [SMALL_STATE(2774)] = 161249, - [SMALL_STATE(2775)] = 161259, - [SMALL_STATE(2776)] = 161273, - [SMALL_STATE(2777)] = 161287, - [SMALL_STATE(2778)] = 161301, - [SMALL_STATE(2779)] = 161315, - [SMALL_STATE(2780)] = 161329, - [SMALL_STATE(2781)] = 161343, - [SMALL_STATE(2782)] = 161357, - [SMALL_STATE(2783)] = 161371, - [SMALL_STATE(2784)] = 161385, - [SMALL_STATE(2785)] = 161399, - [SMALL_STATE(2786)] = 161413, - [SMALL_STATE(2787)] = 161427, - [SMALL_STATE(2788)] = 161441, - [SMALL_STATE(2789)] = 161455, - [SMALL_STATE(2790)] = 161469, - [SMALL_STATE(2791)] = 161483, - [SMALL_STATE(2792)] = 161497, - [SMALL_STATE(2793)] = 161511, - [SMALL_STATE(2794)] = 161525, - [SMALL_STATE(2795)] = 161539, - [SMALL_STATE(2796)] = 161553, - [SMALL_STATE(2797)] = 161567, - [SMALL_STATE(2798)] = 161581, - [SMALL_STATE(2799)] = 161593, - [SMALL_STATE(2800)] = 161607, - [SMALL_STATE(2801)] = 161621, - [SMALL_STATE(2802)] = 161635, - [SMALL_STATE(2803)] = 161649, - [SMALL_STATE(2804)] = 161663, - [SMALL_STATE(2805)] = 161677, - [SMALL_STATE(2806)] = 161691, - [SMALL_STATE(2807)] = 161705, - [SMALL_STATE(2808)] = 161719, - [SMALL_STATE(2809)] = 161733, - [SMALL_STATE(2810)] = 161745, - [SMALL_STATE(2811)] = 161759, - [SMALL_STATE(2812)] = 161773, - [SMALL_STATE(2813)] = 161787, - [SMALL_STATE(2814)] = 161801, - [SMALL_STATE(2815)] = 161815, - [SMALL_STATE(2816)] = 161829, - [SMALL_STATE(2817)] = 161843, - [SMALL_STATE(2818)] = 161857, - [SMALL_STATE(2819)] = 161871, - [SMALL_STATE(2820)] = 161883, - [SMALL_STATE(2821)] = 161897, - [SMALL_STATE(2822)] = 161911, - [SMALL_STATE(2823)] = 161925, - [SMALL_STATE(2824)] = 161939, - [SMALL_STATE(2825)] = 161953, - [SMALL_STATE(2826)] = 161967, - [SMALL_STATE(2827)] = 161981, - [SMALL_STATE(2828)] = 161995, - [SMALL_STATE(2829)] = 162009, - [SMALL_STATE(2830)] = 162023, - [SMALL_STATE(2831)] = 162037, - [SMALL_STATE(2832)] = 162051, - [SMALL_STATE(2833)] = 162063, - [SMALL_STATE(2834)] = 162077, - [SMALL_STATE(2835)] = 162091, - [SMALL_STATE(2836)] = 162105, - [SMALL_STATE(2837)] = 162119, - [SMALL_STATE(2838)] = 162129, - [SMALL_STATE(2839)] = 162143, - [SMALL_STATE(2840)] = 162155, - [SMALL_STATE(2841)] = 162169, - [SMALL_STATE(2842)] = 162183, - [SMALL_STATE(2843)] = 162197, - [SMALL_STATE(2844)] = 162211, - [SMALL_STATE(2845)] = 162225, - [SMALL_STATE(2846)] = 162239, - [SMALL_STATE(2847)] = 162253, - [SMALL_STATE(2848)] = 162267, - [SMALL_STATE(2849)] = 162281, - [SMALL_STATE(2850)] = 162295, - [SMALL_STATE(2851)] = 162305, - [SMALL_STATE(2852)] = 162319, - [SMALL_STATE(2853)] = 162333, - [SMALL_STATE(2854)] = 162347, - [SMALL_STATE(2855)] = 162361, - [SMALL_STATE(2856)] = 162375, - [SMALL_STATE(2857)] = 162389, - [SMALL_STATE(2858)] = 162401, - [SMALL_STATE(2859)] = 162415, - [SMALL_STATE(2860)] = 162429, - [SMALL_STATE(2861)] = 162441, - [SMALL_STATE(2862)] = 162455, - [SMALL_STATE(2863)] = 162469, - [SMALL_STATE(2864)] = 162483, - [SMALL_STATE(2865)] = 162497, - [SMALL_STATE(2866)] = 162511, - [SMALL_STATE(2867)] = 162525, - [SMALL_STATE(2868)] = 162539, - [SMALL_STATE(2869)] = 162553, - [SMALL_STATE(2870)] = 162565, - [SMALL_STATE(2871)] = 162579, - [SMALL_STATE(2872)] = 162593, - [SMALL_STATE(2873)] = 162605, - [SMALL_STATE(2874)] = 162619, - [SMALL_STATE(2875)] = 162631, - [SMALL_STATE(2876)] = 162643, - [SMALL_STATE(2877)] = 162657, - [SMALL_STATE(2878)] = 162667, - [SMALL_STATE(2879)] = 162681, - [SMALL_STATE(2880)] = 162695, - [SMALL_STATE(2881)] = 162707, - [SMALL_STATE(2882)] = 162721, - [SMALL_STATE(2883)] = 162735, - [SMALL_STATE(2884)] = 162749, - [SMALL_STATE(2885)] = 162763, - [SMALL_STATE(2886)] = 162777, - [SMALL_STATE(2887)] = 162791, - [SMALL_STATE(2888)] = 162805, - [SMALL_STATE(2889)] = 162819, - [SMALL_STATE(2890)] = 162833, - [SMALL_STATE(2891)] = 162847, - [SMALL_STATE(2892)] = 162861, - [SMALL_STATE(2893)] = 162875, - [SMALL_STATE(2894)] = 162889, - [SMALL_STATE(2895)] = 162903, - [SMALL_STATE(2896)] = 162917, - [SMALL_STATE(2897)] = 162931, - [SMALL_STATE(2898)] = 162945, - [SMALL_STATE(2899)] = 162959, - [SMALL_STATE(2900)] = 162973, - [SMALL_STATE(2901)] = 162985, - [SMALL_STATE(2902)] = 162999, - [SMALL_STATE(2903)] = 163011, - [SMALL_STATE(2904)] = 163025, - [SMALL_STATE(2905)] = 163037, - [SMALL_STATE(2906)] = 163049, - [SMALL_STATE(2907)] = 163061, - [SMALL_STATE(2908)] = 163075, - [SMALL_STATE(2909)] = 163089, - [SMALL_STATE(2910)] = 163101, - [SMALL_STATE(2911)] = 163113, - [SMALL_STATE(2912)] = 163125, - [SMALL_STATE(2913)] = 163139, - [SMALL_STATE(2914)] = 163151, - [SMALL_STATE(2915)] = 163165, - [SMALL_STATE(2916)] = 163177, - [SMALL_STATE(2917)] = 163191, - [SMALL_STATE(2918)] = 163202, - [SMALL_STATE(2919)] = 163213, - [SMALL_STATE(2920)] = 163224, - [SMALL_STATE(2921)] = 163235, - [SMALL_STATE(2922)] = 163246, - [SMALL_STATE(2923)] = 163257, - [SMALL_STATE(2924)] = 163266, - [SMALL_STATE(2925)] = 163277, - [SMALL_STATE(2926)] = 163288, - [SMALL_STATE(2927)] = 163299, - [SMALL_STATE(2928)] = 163310, - [SMALL_STATE(2929)] = 163321, - [SMALL_STATE(2930)] = 163332, - [SMALL_STATE(2931)] = 163343, - [SMALL_STATE(2932)] = 163354, - [SMALL_STATE(2933)] = 163365, - [SMALL_STATE(2934)] = 163376, - [SMALL_STATE(2935)] = 163387, - [SMALL_STATE(2936)] = 163398, - [SMALL_STATE(2937)] = 163409, - [SMALL_STATE(2938)] = 163420, - [SMALL_STATE(2939)] = 163431, - [SMALL_STATE(2940)] = 163442, - [SMALL_STATE(2941)] = 163453, - [SMALL_STATE(2942)] = 163462, - [SMALL_STATE(2943)] = 163473, - [SMALL_STATE(2944)] = 163484, - [SMALL_STATE(2945)] = 163495, - [SMALL_STATE(2946)] = 163506, - [SMALL_STATE(2947)] = 163515, - [SMALL_STATE(2948)] = 163526, - [SMALL_STATE(2949)] = 163537, - [SMALL_STATE(2950)] = 163548, - [SMALL_STATE(2951)] = 163559, - [SMALL_STATE(2952)] = 163570, - [SMALL_STATE(2953)] = 163581, - [SMALL_STATE(2954)] = 163592, - [SMALL_STATE(2955)] = 163601, - [SMALL_STATE(2956)] = 163612, - [SMALL_STATE(2957)] = 163623, - [SMALL_STATE(2958)] = 163634, - [SMALL_STATE(2959)] = 163645, - [SMALL_STATE(2960)] = 163656, - [SMALL_STATE(2961)] = 163667, - [SMALL_STATE(2962)] = 163678, - [SMALL_STATE(2963)] = 163689, - [SMALL_STATE(2964)] = 163700, - [SMALL_STATE(2965)] = 163711, - [SMALL_STATE(2966)] = 163722, - [SMALL_STATE(2967)] = 163731, - [SMALL_STATE(2968)] = 163742, - [SMALL_STATE(2969)] = 163753, - [SMALL_STATE(2970)] = 163764, - [SMALL_STATE(2971)] = 163775, - [SMALL_STATE(2972)] = 163786, - [SMALL_STATE(2973)] = 163797, - [SMALL_STATE(2974)] = 163808, - [SMALL_STATE(2975)] = 163819, - [SMALL_STATE(2976)] = 163830, - [SMALL_STATE(2977)] = 163841, - [SMALL_STATE(2978)] = 163852, - [SMALL_STATE(2979)] = 163863, - [SMALL_STATE(2980)] = 163874, - [SMALL_STATE(2981)] = 163885, - [SMALL_STATE(2982)] = 163896, - [SMALL_STATE(2983)] = 163907, - [SMALL_STATE(2984)] = 163918, - [SMALL_STATE(2985)] = 163929, - [SMALL_STATE(2986)] = 163937, - [SMALL_STATE(2987)] = 163945, - [SMALL_STATE(2988)] = 163953, - [SMALL_STATE(2989)] = 163961, - [SMALL_STATE(2990)] = 163969, - [SMALL_STATE(2991)] = 163977, - [SMALL_STATE(2992)] = 163985, - [SMALL_STATE(2993)] = 163993, - [SMALL_STATE(2994)] = 164001, - [SMALL_STATE(2995)] = 164009, - [SMALL_STATE(2996)] = 164017, - [SMALL_STATE(2997)] = 164025, - [SMALL_STATE(2998)] = 164033, - [SMALL_STATE(2999)] = 164041, - [SMALL_STATE(3000)] = 164049, - [SMALL_STATE(3001)] = 164057, - [SMALL_STATE(3002)] = 164065, - [SMALL_STATE(3003)] = 164073, - [SMALL_STATE(3004)] = 164081, - [SMALL_STATE(3005)] = 164089, - [SMALL_STATE(3006)] = 164097, - [SMALL_STATE(3007)] = 164105, - [SMALL_STATE(3008)] = 164113, - [SMALL_STATE(3009)] = 164121, - [SMALL_STATE(3010)] = 164129, - [SMALL_STATE(3011)] = 164137, - [SMALL_STATE(3012)] = 164145, - [SMALL_STATE(3013)] = 164153, - [SMALL_STATE(3014)] = 164161, - [SMALL_STATE(3015)] = 164169, - [SMALL_STATE(3016)] = 164177, - [SMALL_STATE(3017)] = 164185, - [SMALL_STATE(3018)] = 164193, - [SMALL_STATE(3019)] = 164201, - [SMALL_STATE(3020)] = 164209, - [SMALL_STATE(3021)] = 164217, - [SMALL_STATE(3022)] = 164225, - [SMALL_STATE(3023)] = 164233, - [SMALL_STATE(3024)] = 164241, - [SMALL_STATE(3025)] = 164249, - [SMALL_STATE(3026)] = 164257, - [SMALL_STATE(3027)] = 164265, - [SMALL_STATE(3028)] = 164273, - [SMALL_STATE(3029)] = 164281, - [SMALL_STATE(3030)] = 164289, - [SMALL_STATE(3031)] = 164297, - [SMALL_STATE(3032)] = 164305, - [SMALL_STATE(3033)] = 164313, - [SMALL_STATE(3034)] = 164321, - [SMALL_STATE(3035)] = 164329, - [SMALL_STATE(3036)] = 164337, - [SMALL_STATE(3037)] = 164345, - [SMALL_STATE(3038)] = 164353, - [SMALL_STATE(3039)] = 164361, - [SMALL_STATE(3040)] = 164369, - [SMALL_STATE(3041)] = 164377, - [SMALL_STATE(3042)] = 164385, - [SMALL_STATE(3043)] = 164393, - [SMALL_STATE(3044)] = 164401, - [SMALL_STATE(3045)] = 164409, - [SMALL_STATE(3046)] = 164417, - [SMALL_STATE(3047)] = 164425, - [SMALL_STATE(3048)] = 164433, - [SMALL_STATE(3049)] = 164441, - [SMALL_STATE(3050)] = 164449, - [SMALL_STATE(3051)] = 164457, - [SMALL_STATE(3052)] = 164465, - [SMALL_STATE(3053)] = 164473, - [SMALL_STATE(3054)] = 164481, - [SMALL_STATE(3055)] = 164489, - [SMALL_STATE(3056)] = 164497, - [SMALL_STATE(3057)] = 164505, - [SMALL_STATE(3058)] = 164513, - [SMALL_STATE(3059)] = 164521, - [SMALL_STATE(3060)] = 164529, - [SMALL_STATE(3061)] = 164537, - [SMALL_STATE(3062)] = 164545, - [SMALL_STATE(3063)] = 164553, - [SMALL_STATE(3064)] = 164561, - [SMALL_STATE(3065)] = 164569, - [SMALL_STATE(3066)] = 164577, - [SMALL_STATE(3067)] = 164585, - [SMALL_STATE(3068)] = 164593, - [SMALL_STATE(3069)] = 164601, - [SMALL_STATE(3070)] = 164609, - [SMALL_STATE(3071)] = 164617, - [SMALL_STATE(3072)] = 164625, - [SMALL_STATE(3073)] = 164633, - [SMALL_STATE(3074)] = 164641, - [SMALL_STATE(3075)] = 164649, - [SMALL_STATE(3076)] = 164657, - [SMALL_STATE(3077)] = 164665, - [SMALL_STATE(3078)] = 164673, - [SMALL_STATE(3079)] = 164681, - [SMALL_STATE(3080)] = 164689, - [SMALL_STATE(3081)] = 164697, - [SMALL_STATE(3082)] = 164705, - [SMALL_STATE(3083)] = 164713, - [SMALL_STATE(3084)] = 164721, - [SMALL_STATE(3085)] = 164729, - [SMALL_STATE(3086)] = 164737, - [SMALL_STATE(3087)] = 164745, - [SMALL_STATE(3088)] = 164753, - [SMALL_STATE(3089)] = 164761, - [SMALL_STATE(3090)] = 164769, - [SMALL_STATE(3091)] = 164777, - [SMALL_STATE(3092)] = 164785, - [SMALL_STATE(3093)] = 164793, - [SMALL_STATE(3094)] = 164801, - [SMALL_STATE(3095)] = 164809, - [SMALL_STATE(3096)] = 164817, - [SMALL_STATE(3097)] = 164825, - [SMALL_STATE(3098)] = 164833, - [SMALL_STATE(3099)] = 164841, - [SMALL_STATE(3100)] = 164849, - [SMALL_STATE(3101)] = 164857, - [SMALL_STATE(3102)] = 164865, - [SMALL_STATE(3103)] = 164873, - [SMALL_STATE(3104)] = 164881, - [SMALL_STATE(3105)] = 164889, - [SMALL_STATE(3106)] = 164897, - [SMALL_STATE(3107)] = 164905, - [SMALL_STATE(3108)] = 164913, - [SMALL_STATE(3109)] = 164921, - [SMALL_STATE(3110)] = 164929, - [SMALL_STATE(3111)] = 164937, - [SMALL_STATE(3112)] = 164945, - [SMALL_STATE(3113)] = 164953, - [SMALL_STATE(3114)] = 164961, - [SMALL_STATE(3115)] = 164969, - [SMALL_STATE(3116)] = 164977, - [SMALL_STATE(3117)] = 164985, - [SMALL_STATE(3118)] = 164993, - [SMALL_STATE(3119)] = 165001, - [SMALL_STATE(3120)] = 165009, - [SMALL_STATE(3121)] = 165017, - [SMALL_STATE(3122)] = 165025, - [SMALL_STATE(3123)] = 165033, - [SMALL_STATE(3124)] = 165041, - [SMALL_STATE(3125)] = 165049, - [SMALL_STATE(3126)] = 165057, - [SMALL_STATE(3127)] = 165065, - [SMALL_STATE(3128)] = 165073, - [SMALL_STATE(3129)] = 165081, - [SMALL_STATE(3130)] = 165089, - [SMALL_STATE(3131)] = 165097, - [SMALL_STATE(3132)] = 165105, - [SMALL_STATE(3133)] = 165113, - [SMALL_STATE(3134)] = 165121, - [SMALL_STATE(3135)] = 165129, - [SMALL_STATE(3136)] = 165137, - [SMALL_STATE(3137)] = 165145, - [SMALL_STATE(3138)] = 165153, - [SMALL_STATE(3139)] = 165161, - [SMALL_STATE(3140)] = 165169, - [SMALL_STATE(3141)] = 165177, - [SMALL_STATE(3142)] = 165185, - [SMALL_STATE(3143)] = 165193, - [SMALL_STATE(3144)] = 165201, - [SMALL_STATE(3145)] = 165209, - [SMALL_STATE(3146)] = 165217, - [SMALL_STATE(3147)] = 165225, - [SMALL_STATE(3148)] = 165233, - [SMALL_STATE(3149)] = 165241, - [SMALL_STATE(3150)] = 165249, - [SMALL_STATE(3151)] = 165257, - [SMALL_STATE(3152)] = 165265, - [SMALL_STATE(3153)] = 165273, - [SMALL_STATE(3154)] = 165281, - [SMALL_STATE(3155)] = 165289, - [SMALL_STATE(3156)] = 165297, - [SMALL_STATE(3157)] = 165305, - [SMALL_STATE(3158)] = 165313, - [SMALL_STATE(3159)] = 165321, - [SMALL_STATE(3160)] = 165329, - [SMALL_STATE(3161)] = 165337, - [SMALL_STATE(3162)] = 165345, - [SMALL_STATE(3163)] = 165353, - [SMALL_STATE(3164)] = 165361, - [SMALL_STATE(3165)] = 165369, - [SMALL_STATE(3166)] = 165377, - [SMALL_STATE(3167)] = 165385, - [SMALL_STATE(3168)] = 165393, - [SMALL_STATE(3169)] = 165401, - [SMALL_STATE(3170)] = 165409, - [SMALL_STATE(3171)] = 165417, - [SMALL_STATE(3172)] = 165425, - [SMALL_STATE(3173)] = 165433, - [SMALL_STATE(3174)] = 165441, - [SMALL_STATE(3175)] = 165449, - [SMALL_STATE(3176)] = 165457, - [SMALL_STATE(3177)] = 165465, - [SMALL_STATE(3178)] = 165473, - [SMALL_STATE(3179)] = 165481, - [SMALL_STATE(3180)] = 165489, - [SMALL_STATE(3181)] = 165497, - [SMALL_STATE(3182)] = 165505, - [SMALL_STATE(3183)] = 165513, - [SMALL_STATE(3184)] = 165521, - [SMALL_STATE(3185)] = 165529, - [SMALL_STATE(3186)] = 165537, - [SMALL_STATE(3187)] = 165545, - [SMALL_STATE(3188)] = 165553, - [SMALL_STATE(3189)] = 165561, - [SMALL_STATE(3190)] = 165569, - [SMALL_STATE(3191)] = 165577, - [SMALL_STATE(3192)] = 165585, - [SMALL_STATE(3193)] = 165593, - [SMALL_STATE(3194)] = 165601, - [SMALL_STATE(3195)] = 165609, - [SMALL_STATE(3196)] = 165617, - [SMALL_STATE(3197)] = 165625, - [SMALL_STATE(3198)] = 165633, - [SMALL_STATE(3199)] = 165641, - [SMALL_STATE(3200)] = 165649, - [SMALL_STATE(3201)] = 165657, - [SMALL_STATE(3202)] = 165665, - [SMALL_STATE(3203)] = 165673, - [SMALL_STATE(3204)] = 165681, - [SMALL_STATE(3205)] = 165689, - [SMALL_STATE(3206)] = 165697, - [SMALL_STATE(3207)] = 165705, - [SMALL_STATE(3208)] = 165713, - [SMALL_STATE(3209)] = 165721, - [SMALL_STATE(3210)] = 165729, - [SMALL_STATE(3211)] = 165737, - [SMALL_STATE(3212)] = 165745, - [SMALL_STATE(3213)] = 165753, - [SMALL_STATE(3214)] = 165761, - [SMALL_STATE(3215)] = 165769, - [SMALL_STATE(3216)] = 165777, - [SMALL_STATE(3217)] = 165785, - [SMALL_STATE(3218)] = 165793, - [SMALL_STATE(3219)] = 165801, - [SMALL_STATE(3220)] = 165809, - [SMALL_STATE(3221)] = 165817, - [SMALL_STATE(3222)] = 165825, - [SMALL_STATE(3223)] = 165833, - [SMALL_STATE(3224)] = 165841, - [SMALL_STATE(3225)] = 165849, - [SMALL_STATE(3226)] = 165857, - [SMALL_STATE(3227)] = 165865, - [SMALL_STATE(3228)] = 165873, - [SMALL_STATE(3229)] = 165881, - [SMALL_STATE(3230)] = 165889, - [SMALL_STATE(3231)] = 165897, - [SMALL_STATE(3232)] = 165905, - [SMALL_STATE(3233)] = 165913, - [SMALL_STATE(3234)] = 165921, - [SMALL_STATE(3235)] = 165929, - [SMALL_STATE(3236)] = 165937, - [SMALL_STATE(3237)] = 165945, - [SMALL_STATE(3238)] = 165953, - [SMALL_STATE(3239)] = 165961, - [SMALL_STATE(3240)] = 165969, - [SMALL_STATE(3241)] = 165977, - [SMALL_STATE(3242)] = 165985, - [SMALL_STATE(3243)] = 165993, - [SMALL_STATE(3244)] = 166001, - [SMALL_STATE(3245)] = 166009, - [SMALL_STATE(3246)] = 166017, - [SMALL_STATE(3247)] = 166025, - [SMALL_STATE(3248)] = 166033, - [SMALL_STATE(3249)] = 166041, - [SMALL_STATE(3250)] = 166049, - [SMALL_STATE(3251)] = 166057, - [SMALL_STATE(3252)] = 166065, - [SMALL_STATE(3253)] = 166073, - [SMALL_STATE(3254)] = 166081, - [SMALL_STATE(3255)] = 166089, - [SMALL_STATE(3256)] = 166097, - [SMALL_STATE(3257)] = 166105, - [SMALL_STATE(3258)] = 166113, - [SMALL_STATE(3259)] = 166121, - [SMALL_STATE(3260)] = 166129, - [SMALL_STATE(3261)] = 166137, - [SMALL_STATE(3262)] = 166145, - [SMALL_STATE(3263)] = 166153, - [SMALL_STATE(3264)] = 166161, - [SMALL_STATE(3265)] = 166169, - [SMALL_STATE(3266)] = 166177, - [SMALL_STATE(3267)] = 166185, - [SMALL_STATE(3268)] = 166193, - [SMALL_STATE(3269)] = 166201, - [SMALL_STATE(3270)] = 166209, - [SMALL_STATE(3271)] = 166217, - [SMALL_STATE(3272)] = 166225, - [SMALL_STATE(3273)] = 166233, - [SMALL_STATE(3274)] = 166241, - [SMALL_STATE(3275)] = 166249, - [SMALL_STATE(3276)] = 166257, - [SMALL_STATE(3277)] = 166265, - [SMALL_STATE(3278)] = 166273, - [SMALL_STATE(3279)] = 166281, - [SMALL_STATE(3280)] = 166289, - [SMALL_STATE(3281)] = 166297, - [SMALL_STATE(3282)] = 166305, - [SMALL_STATE(3283)] = 166313, - [SMALL_STATE(3284)] = 166321, - [SMALL_STATE(3285)] = 166329, - [SMALL_STATE(3286)] = 166337, - [SMALL_STATE(3287)] = 166345, - [SMALL_STATE(3288)] = 166353, - [SMALL_STATE(3289)] = 166361, - [SMALL_STATE(3290)] = 166369, - [SMALL_STATE(3291)] = 166377, - [SMALL_STATE(3292)] = 166385, - [SMALL_STATE(3293)] = 166393, - [SMALL_STATE(3294)] = 166401, - [SMALL_STATE(3295)] = 166408, - [SMALL_STATE(3296)] = 166415, - [SMALL_STATE(3297)] = 166422, - [SMALL_STATE(3298)] = 166429, - [SMALL_STATE(3299)] = 166436, - [SMALL_STATE(3300)] = 166443, - [SMALL_STATE(3301)] = 166450, - [SMALL_STATE(3302)] = 166457, - [SMALL_STATE(3303)] = 166464, - [SMALL_STATE(3304)] = 166471, - [SMALL_STATE(3305)] = 166478, - [SMALL_STATE(3306)] = 166485, - [SMALL_STATE(3307)] = 166492, - [SMALL_STATE(3308)] = 166499, - [SMALL_STATE(3309)] = 166506, - [SMALL_STATE(3310)] = 166513, - [SMALL_STATE(3311)] = 166520, - [SMALL_STATE(3312)] = 166527, - [SMALL_STATE(3313)] = 166534, - [SMALL_STATE(3314)] = 166541, - [SMALL_STATE(3315)] = 166548, - [SMALL_STATE(3316)] = 166555, - [SMALL_STATE(3317)] = 166562, + [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, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -166518,2481 +350820,4208 @@ 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(1020), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1020), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2614), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3286), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(325), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(338), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(375), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(90), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2641), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(84), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3276), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2130), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2685), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3201), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3195), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3193), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3192), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(494), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3286), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(520), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(524), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3191), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1974), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1974), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2593), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(803), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(91), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2691), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3277), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3151), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2986), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3242), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(154), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3032), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(681), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(142), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2621), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(86), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3276), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3032), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(626), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(612), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3077), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(934), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(934), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2598), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(196), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3154), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(794), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(149), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2624), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(88), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3154), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(459), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(481), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3119), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(937), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(937), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2608), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 12), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 12), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1159), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3244), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(457), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(146), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2676), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(83), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3276), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(490), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3244), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(413), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(416), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3241), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1264), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1264), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2590), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1490), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3244), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(457), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(146), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2676), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(83), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3276), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(461), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(434), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(462), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3241), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1264), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2590), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 19), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 19), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 44), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 44), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 33), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 33), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2159), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 19), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 19), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 13), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 13), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3154), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3154), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3168), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3168), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 14), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 14), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 20), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 20), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2225), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3032), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3032), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3057), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3057), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 15), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 15), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(751), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3060), - [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(751), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(753), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(410), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3283), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(410), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(408), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_operation, 1), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_operation, 1), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 35), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 35), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 47), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 47), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 56), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 56), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 47), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 47), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 63), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 63), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 68), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 68), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 72), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 72), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 74), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 74), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 77), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 77), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 78), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 78), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 80), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 80), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 81), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 81), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 11, .production_id = 83), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 11, .production_id = 83), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 84), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 84), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 41), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 41), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 36), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 36), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 35), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 35), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 26), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 26), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 23), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 23), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 26), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 26), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3107), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3118), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3118), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3128), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3128), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2180), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(613), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3174), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(613), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(611), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 21), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 21), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 11), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 11), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3244), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 25), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 25), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3050), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 39), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 39), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 40), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 40), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 52), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 52), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(705), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(363), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2132), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3044), - [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(331), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3041), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(331), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(332), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 40), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 40), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 37), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 37), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 25), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 25), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3100), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2208), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2223), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(556), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3251), - [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(556), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(557), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3112), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3286), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2167), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2123), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2161), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2995), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3001), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3250), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(737), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3097), - [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(737), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(736), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 51), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 51), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 54), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 54), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 57), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 57), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 59), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 59), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 60), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 60), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 49), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 49), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 43), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 43), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 42), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 42), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 82), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 82), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2197), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 79), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 79), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 61), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 61), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 76), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 76), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 8, .production_id = 73), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 8, .production_id = 73), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 7, .production_id = 64), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 7, .production_id = 64), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 71), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 71), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 70), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 70), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 69), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 69), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 65), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 65), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(695), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3129), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(695), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(692), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 42), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 42), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 42), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 42), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 75), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 75), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(781), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3103), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(781), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(702), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(526), - [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(2994), - [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(527), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 38), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 38), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 4, .production_id = 30), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 4, .production_id = 30), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 30), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 30), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 30), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 30), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3229), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3183), - [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(758), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3181), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(758), - [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(759), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 29), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 29), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(396), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3065), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(396), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(394), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 53), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 55), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 28), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 46), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 28), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 17), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 19), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 45), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(494), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2655), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2655), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(678), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3158), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2212), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2648), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2648), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(454), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3062), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2207), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 27), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 62), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), - [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2121), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(2682), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2265), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2279), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 18), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2147), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 53), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 67), SHIFT_REPEAT(3237), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 67), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2137), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 2), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(241), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 48), SHIFT_REPEAT(268), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 48), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(320), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(2166), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2189), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2881), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(184), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 10), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 58), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1, .production_id = 34), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 17), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 24), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [4907] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 66), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [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), + [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), }; #ifdef __cplusplus diff --git a/test/corpus/schema.txt b/test/corpus/schema.txt index 82a70a1..0731ada 100644 --- a/test/corpus/schema.txt +++ b/test/corpus/schema.txt @@ -52,7 +52,7 @@ rule SomeRule: (rule_statement (identifier) (block - (if_statement + (if_rule_statement (comparison_operator (attribute (identifier)) @@ -345,4 +345,53 @@ schema employee(person): (assignment (dotted_name (identifier)) - (basic_type))))) \ No newline at end of file + (basic_type))))) + +================================================================================ +Rule Statement with checks +================================================================================ + +rule SomeChecker for SomeProtocol: + id > 0, "id must >0" + + any service in services { + service.clusterIP == "NONE" if service.type + } + +-------------------------------------------------------------------------------- + +(module + (rule_statement + (identifier) + (identifier) + (block + (if_rule_statement + (comparison_operator + (attribute + (identifier)) + (integer)) + (string + (string_start) + (string_content) + (string_end))) + (quant_expr + (quant_op) + (identifier) + (quant_target + (identifier)) + (comparison_operator + (selector_expression + (attribute + (identifier)) + (select_suffix + (identifier))) + (selector_expression + (conditional_expression + (string + (string_start) + (string_content) + (string_end)) + (attribute + (identifier))) + (select_suffix + (identifier)))))))) \ No newline at end of file From 2aa807453f1e7d93dba5aeac56ef09402eb7ae81 Mon Sep 17 00:00:00 2001 From: Vishal Date: Sun, 11 Aug 2024 16:20:04 +0530 Subject: [PATCH 3/3] 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